        @import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@50;100;200;300;400;500;600;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@50;100;200;300;400;500;600;700&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cormorant', serif;
            color: #121212;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: #B5759C;
            border-bottom: none;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .top-bar {
            background: #cdcfc2;
            padding: 8px 0;
            text-align: center;
            font-size: 16px;
            color: #121212;
        }
        .top-bar a {
            background: #cdcfc2;
            font-family: 'Cormorant', serif;
            color: #121212;
            text-decoration: none;
            font-weight: 200;
                letter-spacing: 2px;
        }

        nav {
            padding: 0;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .nav-top {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: 20px 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .logo {
            grid-column: 2;
            justify-self: center;
        }
        
        .search-icon {
            justify-self: start;
        }
        
        .nav-icons {
            justify-self: end;
        }
        
        .nav-bottom {
            padding: 15px 50px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 200;
            display: flex;
            justify-content: center;
        }
        
        .search-icon {
            background: none;
            border: none;
            color: #ECEDE4;
            font-size: 20px;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-icon:hover {
            opacity: 0.7;
        }

        .logo {
            font-family: 'Cormorant', serif;
            font-size: 38px;
            font-weight: 100;
            letter-spacing: 0px;
            color: #EFDBE8;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            font-family: 'Quicksand', sans-serif;
            font-weight: 200;
            letter-spacing: 0px;
            margin: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #ECEDE4;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: opacity 0.3s;
            font-family: 'Quicksand', sans-serif;
            font-weight: 100;
        }

        .nav-links a:hover {
            color: #FFFFFF;
        }

        .nav-icons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-icons button {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
        }

        /* Hero Section */
        .hero {
            background-image: url('../images/zinnia/zinnia - mockupd3.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 50px;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            letter-spacing: 2px;
            font-weight: 200;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
            font-family: 'Quicksand', sans-serif;
        }

        .btn {
            padding: 15px 40px;
            border: 2px solid #121212;
            background: #EFECE5;
            color: #121212;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn:hover {
            background: #333;
            color: white;
        }

        .btn-dark {
            background: #333;
            color: white;
        }

        .btn-dark:hover {
            background: #555;
        }

        /* Collections */
        .collection-section {
            padding: 40px 0;
            width: 100%;  /* Añade esto para forzar ancho completo */
        }
        
        /* Wrapper interior para mantener el contenido centrado */
        .collection-section h2,
        .collection-section .products-grid {
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 50px;
            padding-right: 50px;
        }
        
        .collection-section.collection-rosa {
            background-color: #efece5;
        }
        
        .collection-section.collection-verde {
            background-color: #cdcfc2;
        }
        
        .collection-section.collection-mixta {
            background-color: #efece5;
        }
        
        .collection-section.collection-azul {
            background-color: #cdcfc2;
        }
        
        .collection-section h2 {
            font-size: 34px;
            font-weight: 200;
            margin-bottom: 50px;
            text-align: left;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding-top: 60px;
        }
        
        .products-grid {
            padding-bottom: 60px;
        }
         
         .products-grid {
             padding-bottom: 60px;  /* Espacio abajo */
         }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .product-card {
            position: relative;
            overflow: hidden;
            background: white;
            border: 1px solid #e5e5e5;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            text-decoration: none;  /* ← Quita el subrayado */
            color: #121212;         /* ← Color negro */
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .product-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .product-info {
            padding: 20px;
        }

        .product-title {
            font-size: 18px;
            color: #121212; 
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-price {
            font-size: 20px;
            color: #666;
        }

        .sold-out {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #000;
            color: white;
            padding: 8px 15px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer */
        footer {
            background: #EFECE5;
            padding: 60px 60px 10px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
           font-weight: 100; 
        }

        .footer-section h3 {
            font-size: 25px;
            font-weight: 100;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-section ul {
            list-style: none;
            padding-left: 0;
            margin-left: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;

        }

        .footer-section a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 200;
            font-size: 17px;
            font-family: 'Quicksand', sans-serif;
            letter-spacing: 1px;
        }

        .footer-section a:hover {
            color: #333;
        }

        .newsletter input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            font-size: 14px;
            font-weight: 200;
            margin-top: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #ddd;
            color: #666;
            font-size: 14px;
            font-family: 'Quicksand', sans-serif;
         
        }

        .payment-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .payment-icons span {
            font-size: 12px;
            padding: 5px 10px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 3px;
        }
        .payment-icons i {
             font-size: 32px;
             margin: 0 10px;
             color: #666;
         }

        /* Mobile Menu Button - Las 3 barras */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            padding: 10px;
            z-index: 1001;
        }
        
        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background-color: white;
            display: block;
            transition: all 0.3s;
            color: #999;
        }
/*____________________________________*/
/* Página de Colecciones */
.colecciones-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px;
}

.colecciones-page h1 {
    font-family: 'Cormorant', serif;
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.colecciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.coleccion-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.coleccion-card:hover {
    transform: translateY(-5px);
}

.coleccion-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.coleccion-card h2 {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    padding: 20px;
    background: white;
    margin: 0;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .colecciones-page {
        padding: 40px 20px;
    }

    .colecciones-page h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .colecciones-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coleccion-card img {
        height: 300px;
    }
}
/*_______________________________________*/




        @media (max-width: 768px) {
            /* Mostrar botón hamburguesa */
            .mobile-menu-btn {
                display: flex;
                position: absolute;
                left: 20px;
                top: 50%;
                transform: translateY(-50%);
            }
        
            /* Ajustar grid para móvil */
            .nav-top {
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 15px 20px;
                position: relative;
            }
        
            /* Logo centrado */
            .logo {
                font-size: 28px;
                letter-spacing: 4px;
            }
        
            /* Ocultar iconos en móvil (opcional) */
            .nav-icons {
                display: none;
            }
        
            /* Ocultar búsqueda en móvil (opcional) */
            .search-icon {
                display: none;
            }
        
            /* Menú desplegable */
            .nav-bottom {
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

                /* Ocultar productos extra en móvil */

                    .product-card:nth-child(n+5) {
                        display: none;
                    }
                    
                    .products-grid.expanded .product-card {
                        display: block;
                    }
            }
                
                /* Botón Ver más */
                .ver-mas-btn {
                    display: none;
                    width: 100%;
                    padding: 15px 30px;
                    margin: 20px auto;
                    background: #333;
                    color: white;
                    border: none;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    cursor: pointer;
                    font-family: 'Quicksand', sans-serif;
                }
                
                @media (max-width: 768px) {
                    .ver-mas-btn {
                        display: block;
                    }
                    
                    .ver-mas-btn.hidden {
                        display: none;
                    }
                
        
                    .nav-links {
                        display: flex;
                        flex-direction: column;
                        width: 100%;
                        background: #B5759C;
                        padding: 0;
                        gap: 0;
                        margin: 0;
                    }
                
                    .nav-links li {
                        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                    }
                
                    .nav-links a {
                        display: block;
                        padding: 15px 20px;
                        font-size: 14px;
                    }
                
                    /* Cuando está activo */
                    .nav-bottom.active {
                        max-height: 350px;
                    }
                
                    /* Animación del botón hamburguesa */
                    .mobile-menu-btn.active span:nth-child(1) {
                        transform: rotate(45deg) translate(7px, 7px);
                    }
                
                    .mobile-menu-btn.active span:nth-child(2) {
                        opacity: 0;
                    }
                
                    .mobile-menu-btn.active span:nth-child(3) {
                        transform: rotate(-45deg) translate(7px, -7px);
                    }
                
                    /* Resto de ajustes móvil */
                    .hero {
                        padding: 60px 20px;
                    }
                
                    .hero h1 {
                        font-size: 28px;
                    }
                
                    .collection-section h2,
                    .collection-section .products-grid {
                        padding-left: 20px;
                        padding-right: 20px;
                    }
                
                    .products-grid {
                        grid-template-columns: 1fr;
                        margin-bottom: 40px;
                        gap: 20px;
                    }
                
                    .hero-buttons {
                        flex-direction: column;
                    }
                }
        /* ========================================
           ESTILOS PARA PÁGINA DE PRODUCTO
           ======================================== */
        
        /* Contenedor principal del producto */
        .producto-page {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 50px;
        }
        
        .producto-container {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 80px;
            align-items: start;
            justify-items: center;
        }
        
/*____________________ GALERÍA DE IMÁGENES __________________________*/

        .producto-galeria {
            position: sticky;
            top: 120px;
            max-width: 550px;
            margin: 0 auto;
        }
        
        .imagen-principal {
            width: 100%;
            margin: 0 0 15px 0;
            overflow: hidden;
            position: relative;
            cursor: zoom-in;
            border: 1px solid #e5e5e5;
        }
        .imagen-principal img {
            width: 100% !important;
            height: 550px !important;
            display: block !important;
            object-fit: cover !important;
        }
        
        /* Lupa elegante en esquina */
        .zoom-icon {
            position: absolute;
            top: 15px;
            left: 15px;
            background: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        
        .imagen-principal:hover .zoom-icon {
            opacity: 1;
        }
        
        .zoom-icon::before {
            content: '';
            width: 18px;
            height: 18px;
            border: 2px solid #666;
            border-radius: 50%;
            position: absolute;
        }
        
        .zoom-icon::after {
            content: '';
            width: 2px;
            height: 8px;
            background: #666;
            position: absolute;
            transform: rotate(45deg);
            bottom: 12px;
            right: 12px;
        }
        
        /* Miniaturas */
        .imagenes-miniaturas {
            display: grid;
            grid-template-columns: repeat(3, 110px);
            gap: 12px;
            justify-content: center;
        }
        
        .imagenes-miniaturas img {
            width: 110px !important;
            height: 110px !important;
            object-fit: cover !important;
            cursor: pointer !important;
            border: 2px solid #e5e5e5 !important;
            transition: all 0.3s !important;
        }
        
        .imagenes-miniaturas img:hover {
            border-color: #B5759C;
            opacity: 0.8;
        }
        
        .imagenes-miniaturas img.active {
            border-color: #B5759C;
            border-width: 3px;
        }
        
        /* Modal para ampliar imagen */
        .modal-imagen {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            align-items: center;
            justify-content: center;
            cursor: zoom-out;
            padding: 40px;
        }
        
        .modal-imagen img {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
            animation: zoomIn 0.3s;
        }
        
        @keyframes zoomIn {
            from {
                transform: scale(0.7);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .cerrar-modal {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 50px;
            font-weight: 300;
            cursor: pointer;
            transition: opacity 0.3s;
            line-height: 1;
        }
        
        .cerrar-modal:hover {
            opacity: 0.7;
        }
        
        /* _______________________________________INFORMACIÓN DEL PRODUCTO ____________________________________________*/
        .producto-info {
            padding: 20px 0;
        }
        
        .producto-coleccion {
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .producto-titulo {
            font-family: 'Cormorant', serif;
            font-size: 42px;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .producto-precio {
            font-family: 'Quicksand', sans-serif;
            font-size: 24px;
            font-weight: 400;
            color: #121212;
            margin-bottom: 5px;
        }
        
        .producto-impuestos {
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            color: #666;
            margin-bottom: 30px;
        }
        
        /* SELECTOR DE CANTIDAD */
        .cantidad-selector {
            margin-bottom: 25px;
        }
        
        .cantidad-selector label {
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .cantidad-controls {
            display: flex;
            align-items: center;
            gap: 0;
            width: fit-content;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .cantidad-controls button {
            background: white;
            border: none;
            padding: 12px 20px;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.3s;
            font-family: 'Quicksand', sans-serif;
        }
        
        .cantidad-controls button:hover {
            background: #f5f5f5;
        }
        
        .cantidad-controls input {
            width: 60px;
            text-align: center;
            border: none;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
            padding: 12px 10px;
            font-size: 16px;
            font-family: 'Quicksand', sans-serif;
        }
        
        /* ___________________BOTONES DE COMPRA ______________________*/
        .producto-botones {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
        }
        
        .btn-agregar-carrito {
            background: #121212;
            color: white;
            border: none;
            padding: 18px 30px;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            border-radius: 0;
            position: relative;
            overflow: hidden;
        }
        
        .btn-agregar-carrito::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn-agregar-carrito:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .btn-agregar-carrito:hover::before {
            left: 100%;
        }
        
        .btn-agregar-carrito:active {
            transform: translateY(0);
        }
        
        .btn-paypal {
            background: #FFC439;
            color: #003087;
            border: 1px solid #FFC439;
            padding: 16px 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Quicksand', sans-serif;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-paypal:hover {
            background: #f5b82e;
            border-color: #f5b82e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 196, 57, 0.3);
        }
        
        .btn-paypal:active {
            transform: translateY(0);
        }
        
        .link-mas-opciones {
            text-align: center;
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            color: #666;
            text-decoration: none;
            cursor: pointer;
            padding: 8px;
            transition: color 0.3s;
            background: none;
            border: none;
        }
        
        .link-mas-opciones:hover {
            color: #B5759C;
            text-decoration: underline;
        }
        
        /* DESPLEGABLES */
        .producto-desplegables {
            border-top: 1px solid #e5e5e5;
            margin-top: 30px;
        }
        
        .desplegable {
            border-bottom: 1px solid #e5e5e5;
            color: #999;
        }
        
        .desplegable-header {
            width: 100%;
            background: none;
            border: none;
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-family: 'Cormorant', serif;
            font-size: 16px;
            font-weight: 400;
            color: #999;  
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-align: left;
            transition: color 0.3s;
        }
        
        .desplegable-header:hover {
            color: #B5759C;
        }
        
        .desplegable-header span {
            transition: color 0.3s;
            color: #999;
        }
        
        .desplegable-header i {
            transition: transform 0.3s;
            color: #666;
            font-size: 12px;
        }
        
        .desplegable-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }
        
        .desplegable.active .desplegable-content {
            padding-bottom: 20px;
        }
        
        .desplegable-content p {
            font-family: 'Quicksand', sans-serif;
            font-size: 15px;
            font-weight: 300;
            line-height: 1.8;
            color: #666;
            margin-bottom: 12px;
        }
        
        .desplegable-content p:last-child {
            margin-bottom: 0;
        }
        
        .desplegable-content p strong {
            font-weight: 500;
            color: #121212;
        }
        
        /* Botones de compartir */
        .compartir-botones {
            display: flex;
            gap: 15px;
        }
        
        .social-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-btn:hover {
            background: #B5759C;
            color: white;
            border-color: #B5759C;
        }
        
        /* RESPONSIVE MÓVIL */
        @media (max-width: 768px) {
            .producto-page {
                padding: 30px 20px;
            }
        
            .producto-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        
            .producto-galeria {
                position: static;
            }
        
            .producto-titulo {
                font-size: 32px;
            }
        
            .producto-precio {
                font-size: 20px;
            }
        
            .imagenes-miniaturas {
                gap: 10px;
            }
        
            .imagenes-miniaturas img {
                height: 100px;
            }
        
            .producto-botones {
                gap: 12px;
            }
        
            .btn-agregar-carrito,
            .btn-paypal {
                padding: 14px 25px;
                font-size: 14px;
            }
        }
/* ========================================
   PÁGINA DE CONTACTO
   ======================================== */

.contacto-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px;
}

.contacto-container h1 {
    font-family: 'Cormorant', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

/* INFORMACIÓN DE CONTACTO */
.contacto-info {
    padding: 40px;
    background: #EFECE5;
    border-radius: 8px;
}

.contacto-info h2 {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contacto-info > p {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.info-item i {
    font-size: 24px;
    color: #B5759C;
    margin-top: 5px;
}

.info-item h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p,
.info-item a {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #B5759C;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 2px solid #B5759C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B5759C;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #B5759C;
    color: white;
}

/* FORMULARIO */
.contacto-form-wrapper h2 {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B5759C;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-enviar {
    background: #121212;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    border-radius: 0;
    align-self: flex-start;
}

.btn-enviar:hover {
    background: #B5759C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(181, 117, 156, 0.3);
}

.btn-enviar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* MENSAJES DEL FORMULARIO */
.form-message {
    display: none;
    padding: 15px 20px;
    border-radius: 4px;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    margin-top: 20px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contacto-page {
        padding: 40px 20px;
    }

    .contacto-container h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .contacto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacto-info {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-enviar {
        width: 100%;
    }
}

/* ======================================== PÁGINA DE PRODUCTOS   ======================================== */

  
.productos-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px;
}

.productos-container h1 {
    font-family: 'Cormorant', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .productos-page {
        padding: 40px 20px;
    }

    .productos-container h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }
}
/* ========================================
   PÁGINAS DE COLECCIONES INDIVIDUALES
   ======================================== */

.coleccion-individual-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px;
}

.coleccion-individual-container h1 {
    font-family: 'Cormorant', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.coleccion-descripcion {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* El .products-grid ya existe en tu CSS, así que no lo duplicamos */

/* RESPONSIVE */
@media (max-width: 768px) {
    .coleccion-individual-page {
        padding: 40px 20px;
    }

    .coleccion-individual-container h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .coleccion-descripcion {
        font-size: 14px;
        margin-bottom: 40px;
    }
}
/* ========================================
   PÁGINA DE FAQ
   ======================================== */

.faq-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 50px;
}

.faq-container h1 {
    font-family: 'Cormorant', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* SECCIONES */
.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    font-family: 'Cormorant', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #B5759C;
    text-transform: uppercase;
}

/* ITEMS FAQ */
.faq-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    color: #121212;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #B5759C;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 14px;
    color: #B5759C;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* RESPUESTAS */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p,
.faq-answer ul {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    padding: 0 0 0 0;
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
    margin-bottom: 25px;
}

.faq-answer strong {
    color: #121212;
    font-weight: 600;
}

.faq-answer ul {
    padding-left: 20px;
    margin-top: 10px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-page {
        padding: 40px 20px;
    }

    .faq-container h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px 0;
    }

    .faq-answer p,
    .faq-answer ul {
        font-size: 14px;
    }
}
/* ========================================
   PÁGINAS LEGALES (Privacidad, Términos)
   ======================================== */

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 50px;
}

.legal-container h1 {
    font-family: 'Cormorant', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* CONTENIDO */
.legal-content {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.legal-content .intro {
    font-size: 16px;
    margin-bottom: 40px;
    color: #121212;
}

/* SECCIONES */
.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #121212;
}

.legal-section h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #121212;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    padding-left: 30px;
    margin: 15px 0;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-section strong {
    color: #121212;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .legal-page {
        padding: 40px 20px;
    }

    .legal-container h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .legal-content .intro {
        font-size: 15px;
    }

    .legal-section h2 {
        font-size: 24px;
        margin-top: 30px;
    }

    .legal-section h3 {
        font-size: 16px;
    }

    .legal-content {
        font-size: 14px;
    }
}

/* ========================================
   CARRUSEL DE COLECCIONES (index.html)
   ======================================== */

.az-carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.az-carousel-viewport {
    flex: 1;
    overflow: hidden;
    min-width: 0;
    container-type: inline-size;
}

.az-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

/* Tarjetas: 3 por fila en desktop */
.az-carousel-track .product-card {
    flex: none;
    width: calc((100cqi - 60px) / 3);
    min-width: 0;
    margin-bottom: 0;
    display: block;
}

/* 2 tarjetas en tablet */
@container (max-width: 1024px) {
    .az-carousel-track .product-card {
        width: calc((100cqi - 30px) / 2);
    }
}

/* 1 tarjeta en móvil */
@container (max-width: 768px) {
    .az-carousel-track .product-card {
        width: 100cqi;
    }
}

/* Flechas */
.az-carousel-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #121212;
    padding: 0;
}

.az-carousel-arrow:hover {
    background: #121212;
    color: white;
    border-color: #121212;
}

.az-carousel-arrow svg {
    display: block;
}

.az-carousel-arrow:disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}

.az-carousel-arrow.az-hidden {
    visibility: hidden;
}

/* RESPONSIVE flechas */
@media (max-width: 768px) {
    .az-carousel {
        padding: 0 20px 40px;
        gap: 12px;
    }

    .az-carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .az-carousel-arrow svg {
        width: 16px;
        height: 16px;
    }
}
