
/* Estilos Generales */
:root {
    --black: #121212;
    --dark-black: #0a0a0a;
    --pink: rgb(235, 143, 171);
    --gold: #d6385a;
    --light-gold: #f1e0ac;
    --white: #ffffff;
    --gray: #f5f5f5;
    --dark-gray: #333333;
    
}

[data-theme="light"] {
    --bg-color: #f9f9f9;
    --text-color: #d6385a;
    --nav-bg: rgba(255, 255, 255, 0.9);
    --card-bg: #eddddd;
    --footer-bg: rgba(255, 255, 255, 0.9);
    --footer-text: #181616;
}

[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #f5f5f5;
    --nav-bg: rgba(18, 18, 18, 0.9);
    --card-bg: #1e1e1e;
    --footer-bg: #0a0a0a;
    --footer-text: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--dark-black);
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-block;
}

.btn-gold:hover {
    background-color: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--pink));
}

/* Barra de navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--gold);
}

.nav-links li a.active {
    color: var(--gold);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.theme-toggle, .cart-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 20px;
    transition: color 0.3s ease;
    position: relative;
}

.theme-toggle:hover, .cart-toggle:hover {
    color: var(--gold);
}

.cart-toggle {
    position: relative;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--pink);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../imagenes/fondo.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

/* Carrito de compras */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--card-bg);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-info {
    flex: 1;
    padding: 0 15px;
}

.cart-item-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: bold;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 1rem;
}

.cart-total {
    padding-top: 15px;
    border-top: 1px solid var(--gold);
    text-align: right;
    font-size: 1.1rem;
    font-weight: bold;
}

.cart-total span {
    color: var(--gold);
}

.checkout-btn {
    width: 100%;
    margin-top: 15px;
}

/* Productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card .price {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Sobre Nosotros */
.about {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gold-border {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

/* Valores */
.values {
    padding: 80px 20px;

    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.value-card {
    background-color: var(--card-bg);
    padding: 40px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #aaa;
    line-height: 1.6;
}

/* Contacto */
.contact {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h2, .contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 25px;
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--card-bg);
    color: var(--text-color);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Mapa */
.map {
    padding: 0 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.map iframe {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Evaluaciones */
.reviews {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-container {
    display: flex;
    gap: 50px;
}

.write-review, .reviews-list {
    flex: 1;
}

.rating {
    margin-bottom: 20px;
}

.rating .star {
    font-size: 1.8rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating .star:hover, .rating .star.active {
    color: var(--gold);
}

.review-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-rating {
    color: var(--gold);
}

.review-author {
    font-style: italic;
    color: #aaa;
    margin-bottom: 10px;
}

.review-text {
    line-height: 1.6;
}

/* Afiches */
.posters {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #aaa;
    font-size: 1.1rem;
}

.posters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.poster-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.poster-card:hover {
    transform: translateY(-10px);
}

.poster-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.poster-info {
    padding: 20px;
    text-align: center;
}

.poster-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.poster-info p {
    margin-bottom: 10px;
    color: #aaa;
}

.poster-info .price {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 15px 0;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Overlay para el carrito */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container, .contact-container, .reviews-container {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
    }
    
    .nav-links {
        margin: 20px 0;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}
/* Notificaciones */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1100;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}
/* Estilos para el formulario de evaluación */
.evaluation {
    padding: 80px 20px;
    background-color: var(--card-bg);
    color: var(--text-color);
}

.evaluation-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    color: var(--gold);
    margin-bottom: 40px;
    font-style: italic;
    text-align: center;
}

.evaluation .form-group {
    margin-bottom: 30px;
}

.evaluation label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--gold);
}

.evaluation input[type="text"],
.evaluation input[type="email"],
.evaluation input[type="tel"],
.evaluation select,
.evaluation textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: border 0.3s ease;
}

.evaluation select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.evaluation textarea {
    min-height: 120px;
    resize: vertical;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    color: var(--text-color);
    cursor: pointer;
}

.radio-group input[type="radio"] {
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}

.contact-option {
    padding: 20px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    margin-top: 40px;
}

.contact-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.contact-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

@media (max-width: 768px) {
    .evaluation {
        padding: 50px 15px;
    }
    
    .radio-group {
        gap: 8px;
    }
}