
        /* Variables CSS */
        :root {
            --primary-color: #3a2e2c;
            --secondary-color: #f8f7f4;
            --accent-color: #c8a97e;
            --dark-color: #1a1a1a;
            --light-color: #ffffff;
            --gold-color: #3a5014c1;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
            --gradient: linear-gradient(135deg, #f8f7f4 0%, #e8e6e1 100%);
            --success-color: #28a745;
            --whatsapp-color: #25D366;
            --error-color: #dc3545;
        }

        /* Reset y estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--dark-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            
    
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: clamp(12px, 3vw, 16px) clamp(18px, 4vw, 24px);
            background-color: #202007;
            color: var(--light-color);
            border: none;
            border-radius: 0.6rem;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            position: relative;
            overflow: hidden;
            z-index: 1;
            gap: 10px;
            text-align: center;
            min-height: clamp(44px, 10vw, 54px);
            width: auto;
            white-space: nowrap;
        }

        .btn::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: var(--transition);
            z-index: -1;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--gold-color);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover::after {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-whatsapp {
            background-color: var(--whatsapp-color);
        }

        .btn-whatsapp::after {
            background-color: #128C7E;
        }

        .btn-cart {
            background-color: var(--primary-color);
        }

        .btn-cart::after {
            background-color: var(--gold-color);
        }

        .btn-success {
            background-color: var(--success-color);
        }

        .btn-success::after {
            background-color: #218838;
        }

        .section-title {
            text-align: center;
            margin-bottom: clamp(40px, 8vw, 80px);
            position: relative;
        }

        .section-title h2 {
            font-size: clamp(2rem, 6vw, 3.2rem);
            color: #2a3f02;
            margin-bottom: clamp(15px, 3vw, 20px);
            font-weight: 400;
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .section-title p {
            max-width: min(600px, 90vw);
            margin: 0 auto;
            color: #666;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            line-height: 1.8;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: clamp(-20px, -4vw, -30px);
            left: 50%;
            transform: translateX(-50%);
            width: clamp(60px, 15vw, 80px);
            height: 3px;
            background-color: var(--gold-color);
        }

        /* Header */
        header {
            background-color: var(--light-color);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: clamp(15px, 3vw, 20px) 0;
            transition: var(--transition);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 clamp(10px, 2vw, 20px);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0rem;
            text-decoration: none;
        }

        .logo__text {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 300;
            border-radius: 50%;
            color: #203005c1;
        }

        .logo__text--bold {
            font-weight: 700;
          border-radius: 50%;
             color: #203005c1;
        }

        .logo__icon {
            width: 26px;
            height: 26px;
            object-fit: contain;
            border-radius: 50%;
           
        }

        .nav-links {
            display: flex;
            gap: clamp(20px, 4vw, 45px);
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            font-weight: 500;
            transition: var(--transition);
            font-size: clamp(0.9rem, 2vw, 1.05rem);
            letter-spacing: 0.5px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold-color);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Header - MEJORAS DE ESPACIADO EN MÓVILES */
        .cart-icon {
            position: relative;
            cursor: pointer;
            margin-left: clamp(15px, 3vw, 30px);
            padding: 8px;
            border-radius: 2rem;
            transition: var(--transition);
        }

        .cart-icon:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            padding: 8px;
            border-radius: 2rem;
            transition: var(--transition);
        }

        .hamburger:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        /* Hero Section - Carrusel - VERSIÓN MEJORADA */
        .hero {
            height: clamp(60vh, 85vh, 95vh);
            position: relative;
            overflow: hidden;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-inner {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .carousel-slide {
            width: 25%;
            height: 100%;
            position: relative;
        }

        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(0, 0, 0, 0.3) 0%,
                    rgba(0, 0, 0, 0.1) 50%,
                    rgba(0, 0, 0, 0.3) 100%);
            z-index: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .carousel-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            padding: clamp(20px, 5vw, 60px);
        }

        .hero-content {
            max-width: min(600px, 90vw);
            text-align: center;
            color: var(--light-color);
            padding: clamp(20px, 4vw, 40px);
            background: rgba(32, 32, 7, 0.15);
            backdrop-filter: blur(3px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.075);
        }

        .hero h1 {
            font-size: clamp(1.8rem, 6vw, 3.5rem);
            margin-bottom: clamp(10px, 3vw, 20px);
            font-weight: 300;
            line-height: 1.2;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: clamp(0.9rem, 3vw, 1.2rem);
            margin-bottom: clamp(20px, 4vw, 30px);
            font-weight: 300;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            max-width: min(500px, 90vw);
            margin-left: auto;
            margin-right: auto;
        }

        .hero .btn {
            margin: 0 auto;
            min-width: clamp(160px, 40vw, 200px);
        }

        .carousel-indicators {
            position: absolute;
            bottom: clamp(20px, 5vw, 40px);
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: clamp(8px, 2vw, 15px);
            z-index: 3;
        }

        .carousel-indicator {
            width: clamp(8px, 2vw, 12px);
            height: clamp(8px, 2vw, 12px);
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-indicator.active {
            background-color: var(--light-color);
            transform: scale(1.2);
        }

        .carousel-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 clamp(15px, 3vw, 30px);
            z-index: 3;
            transform: translateY(-50%);
        }

        .carousel-control {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--light-color);
            width: clamp(40px, 8vw, 50px);
            height: clamp(40px, 8vw, 50px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            font-size: clamp(0.8rem, 2vw, 1rem);
        }

        .carousel-control:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        /* CTA Section - VERSIÓN MEJORADA */
        .cta {
            padding: clamp(40px, 8vw, 120px) 0;
            background-image:
                linear-gradient(135deg, rgba(58, 46, 44, 0.85), rgba(58, 46, 44, 0.75)),
                url('assets/3.jpg');
            color: var(--light-color);
            text-align: center;
            position: relative;

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: scroll;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: min(800px, 90vw);
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 40px);
        }

        .cta h2 {
            font-size: clamp(2rem, 6vw, 3.2rem);
            margin-bottom: clamp(15px, 3vw, 25px);
            font-weight: 300;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cta p {
            max-width: min(700px, 90vw);
            margin: 0 auto clamp(25px, 5vw, 40px);
            font-size: clamp(1rem, 3vw, 1.2rem);
            line-height: 1.7;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .cta .btn {
            margin: 0 auto;
            min-width: clamp(180px, 45vw, 220px);
        }

        /* MEJORA: Para pantallas grandes */
        @media (min-width: 1024px) {
            .cta {
                background-attachment: fixed;
                
                
            }
            

            .hero-content {
                
                margin-left: 20%;
                margin-right: auto;
                text-align: left;
                max-width: 500px;
            }
        }

        /* MEJORA: Para tablets */
        @media (max-width: 1024px) and (min-width: 769px) {
            
            
            .hero h1 {
                font-size: clamp(2.5rem, 5vw, 3rem);
            }

            .cta h2 {
                font-size: clamp(2.5rem, 5vw, 3rem);
                margin-left: 10%;
            }
        }

        /* MEJORA: Para móviles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: block;
                margin-left: clamp(10px, 2vw, 15px);
            }

            .cart-icon {
                margin-left: clamp(10px, 2vw, 20px);
                margin-right: clamp(5px, 1vw, 10px);
            }

            .nav-icons {
                display: flex;
                align-items: center;
                gap: clamp(10px, 2vw, 15px);
            }

            .hero {
                height: clamp(70vh, 80vh, 85vh);
            }

            .carousel-controls {
                display: none;
            }

            .hero-content {
                background: rgba(32, 32, 7, 0);
                backdrop-filter: blur(3px);
            }

            .cta {
                padding: clamp(50px, 10vw, 80px) 0;
            }
        }

        /* MEJORA: Para móviles pequeños */
        @media (max-width: 480px) {
            .hero {
                height: 40vh;
            }

            .hero-content {
                padding: 20px;
                background: rgba(32, 32, 7, 0.3);
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .cta {
                padding: 40px 0;
            }

            .cta h2 {
                font-size: 1.8rem;
            }

            .cta p {
                font-size: 0.95rem;
            }
        }

        /* Resto de tu CSS existente (manteniendo todo lo demás igual) */
        .search-container {
            max-width: 600px;
            margin: 0 auto 60px;
            position: relative;
        }

        .search-bar {
            display: flex;
            width: 100%;
        }

        .search-input {
            flex: 1;
            padding: 16px 20px;
            border: 1px solid #ddd;
            border-right: none;
            font-size: 1rem;
            transition: var(--transition);
            border-radius: 0.6rem;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--gold-color);
        }

        .search-btn {
            padding: 0 20px;
            background-color:#2f4605fd;
            color: white;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            border-radius: 0.6rem;
        }

        .search-btn:hover {
            background-color: var(--gold-color);
        }

        /* About Section */
        .about {
            padding: 140px 0;
            background-color: var(--secondary-color);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 40%;
            height: 100%;
            background: var(--gradient);
            z-index: 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-text h3 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--primary-color);
            font-weight: 400;
            line-height: 1.3;
        }

        .about-text p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }

        .about-image {
            position: relative;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--gold-color);
            z-index: 1;
        }

        .about-image img {
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.02);
        }

        /* Products Section */
        .products {
            padding: 140px 0;
            background-color: var(--light-color);
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
            flex-wrap: wrap;
            border-radius: 0.6rem;
        }

        .filter-btn {
            padding: 14px 30px;
            margin: 0 10px 15px;
            background-color: transparent;
            border: 0 solid var(--primary-color);
            color: #615b04;
            color: var(--primary-color);
            border-radius: 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            border-radius: 0.6rem;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: #2f4605fd;
            transition: var(--transition);
            z-index: -1;
        }

        .filter-btn.active,
        .filter-btn:hover {
            color: var(--light-color);
        }

        .filter-btn.active::before,
        .filter-btn:hover::before {
            width: 100%;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 50px;
            zoom: 0.46;
        }

        .product-card {
            background-color: var(--light-color);
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .product-image {
            height: 380px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-info {
            padding: 30px;
            text-align: center;
        }

        .product-category {
            color: var(--gold-color);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .product-name {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            font-weight: 500;
        }

        .product-price {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .product-description {
            margin-bottom: 25px;
            font-size: 0.95rem;
            color: #666666;
            line-height: 1.6;
        }

        /* Features Section */
        .features {
            padding: 120px 0;
            background-color: var(--secondary-color);
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 30%;
            height: 100%;
            background: var(--gradient);
            z-index: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            text-align: center;
            padding: 50px 30px;
            transition: var(--transition);
            background-color: var(--light-color);
            box-shadow: var(--shadow);
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--gold-color);
            margin-bottom: 25px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .feature-card p {
            color: #666;
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonials {
            padding: 140px 0;
            background-color: var(--light-color);
        }

        .testimonials-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            text-align: center;
            padding: 60px;
            background-color: var(--secondary-color);
            position: relative;
            box-shadow: var(--shadow);
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: 30px;
            left: 40px;
            font-size: 6rem;
            color: var(--gold-color);
            opacity: 0.3;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 30px;
            font-size: 1.3rem;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        /* CTA Section */
        .cta {
            padding: clamp(60px, 10vw, 120px) 0;
            background-image:
                linear-gradient(135deg, rgba(58, 46, 44, 0.498), rgba(58, 46, 44, 0.474)),
                url('/assets/banner_footer.jpg');
            color: var(--light-color);
            text-align: center;
            position: relative;

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        @media (max-width: 768px) {
            .cta {
                background-attachment: scroll;
                padding: 80px 0;
            }
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            background: linear-gradient(135deg, rgba(58, 46, 44, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            font-weight: 300;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
            line-height: 1.8;
        }

        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 100px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 70px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            font-weight: 500;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--gold-color);
        }

        .footer-links li {
            margin-bottom: 18px;
        }

        .footer-links a {
            transition: var(--transition);
            color: #ccc;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--gold-color);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--gold-color);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

                    .footer-bottom a {
    color: #01667a;
    letter-spacing: 1px;
        font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    
}


        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }

        .modal-content {
            background-color: var(--light-color);
            margin: 40px auto;
            max-width: 900px;
            position: relative;
            animation: modalOpen 0.5s;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        @keyframes modalOpen {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-color);
            z-index: 10;
            background-color: rgba(255, 255, 255, 0.9);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .close-modal:hover {
            background-color: var(--primary-color);
            color: white;
            transform: rotate(90deg);
        }

        .modal-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .modal-image {
            height: 100%;
            min-height: 500px;
            position: relative;
            overflow: hidden;
        }

        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .modal-info {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .modal-category {
            color: var(--gold-color);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .modal-name {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            font-weight: 500;
            line-height: 1.2;
        }

        .modal-price {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .modal-description {
            margin-bottom: 35px;
            line-height: 1.8;
            color: #555;
            font-size: 1.05rem;
        }

        .modal-details {
            margin-bottom: 40px;
        }

        .modal-details h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 500;
        }

        .modal-details ul {
            list-style-type: none;
        }

        .modal-details li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }

        .modal-details li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--gold-color);
            font-size: 1.2rem;
        }

        .modal-actions {
            display: flex;
            gap: 20px;
        }

        /* Product Gallery */
        .product-gallery {
            position: relative;
            height: 100%;
        }

        .gallery-main {
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-thumbnails {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 5;
        }

        .gallery-thumb {
            width: 60px;
            height: 60px;
            cursor: pointer;
            opacity: 0.7;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .gallery-thumb.active,
        .gallery-thumb:hover {
            opacity: 1;
            border-color: var(--gold-color);
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 5;
        }

        .gallery-nav-btn {
            background-color: rgba(255, 255, 255, 0.8);
            color: var(--dark-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .gallery-nav-btn:hover {
            background-color: var(--gold-color);
            color: white;
        }

        /* Toast Notifications */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            padding: 15px 25px;
            background-color: var(--success-color);
            color: white;
            border-radius: 5px;
            box-shadow: var(--shadow);
            z-index: 3000;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .toast.error {
            background-color: var(--error-color);
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        /* Cart Sidebar */
        /* Cart Sidebar - MEJORAS */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 100%;
            max-width: 400px;
            height: 100%;
            background-color: var(--light-color);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 2001;
            transition: var(--transition);
            overflow-y: auto;
            padding: 30px;
        }

        .cart-sidebar.open {
            right: 0;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            position: relative;
        }

        .cart-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        /* MEJORA: Botón de cerrar más visible y accesible */
        .close-cart {
            background: none;
            border: none;
            font-size: 2rem;
            /* Más grande */
            cursor: pointer;
            color: var(--dark-color);
            width: 45px;
            /* Tamaño fijo para mejor click */
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            /* Forma circular */
            transition: var(--transition);
            position: absolute;
            right: -5px;
            /* Posicionado a la derecha */
            top: 50%;
            transform: translateY(-50%);
        }

        .close-cart:hover {
            background-color: rgba(0, 0, 0, 0.05);
            /* Fondo al hover */
            color: var(--error-color);
            /* Color rojo al hover */
            transform: translateY(-50%) scale(1.1);
            /* Efecto de escala */
        }

        /* Para dispositivos móviles - ocultar hasta que se active */
        @media (max-width: 768px) {
            .cart-sidebar {
                display: none;
            }

            .cart-sidebar.open {
                display: block;
                right: 0;
            }

            /* MEJORA: En móviles el botón de cerrar más accesible */
            .close-cart {
                width: 50px;
                height: 50px;
                font-size: 2.2rem;
                right: -10px;
            }
        }


        .remove-item {
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            transition: var(--transition);
        }

        .remove-item:hover {
            color: #ff0000;
        }

        .discount-section {
            margin-bottom: 30px;
            padding: 20px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .discount-title {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .discount-input {
            display: flex;
            gap: 10px;
        }

        .discount-code {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .discount-code:focus {
            outline: none;
            border-color: var(--gold-color);
        }

        .apply-discount {
            padding: 12px 20px;
            background-color: #615b04;
            color: white;
            border-radius: 1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }

        .apply-discount:hover {
            background-color: var(--gold-color);
        }

        .discount-message {
            margin-top: 10px;
            font-size: 0.9rem;
            min-height: 20px;
        }

        .discount-success {
            color: var(--success-color);
        }

        .discount-error {
            color: var(--error-color);
        }

        .cart-totals {
            margin-bottom: 20px;
        }

        .cart-subtotal,
        .cart-discount,
        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .cart-total {
            font-size: 1.3rem;
            font-weight: 600;
            border-bottom: none;
            margin-bottom: 20px;
        }

        .cart-empty {
            text-align: center;
            padding: 40px 0;
            color: #999;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            display: none;
        }

        .overlay.show {
            display: block;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 70px;
            }

            .modal-body {
                grid-template-columns: 1fr;
            }

            .modal-image {
                min-height: 400px;
            }

            .about::before {
                width: 100%;
                height: 50%;
            }

            .features::before {
                width: 100%;
                height: 30%;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .hero h1 {
                font-size: 3.2rem;
            }

            .section-title h2 {
                font-size: 2.5rem;

            }

            .modal-actions {
                flex-direction: column;
            }

            .hero-badge {
                position: static;
                margin-top: 30px;
                display: inline-block;
            }

            .carousel-controls {
                display: none;
            }

            .carousel-content {
                padding-left: 20px;
                padding-right: 20px;
            }

            .cart-sidebar {
                max-width: 100%;
            }

            .modal-info {
                padding: 30px;
            }

            .btn {
                width: 100%;
                padding: 14px 20px;
                font-size: 0.85rem;
            }

            .discount-input {
                flex-direction: column;
            }

            .gallery-thumbnails {
                bottom: 10px;
            }

            .gallery-thumb {
                width: 40px;
                height: 40px;
            }

            .gallery-nav-btn {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 480px) {
            .modal-actions {
                gap: 10px;
            }

            .btn {
                padding: 12px 16px;
                font-size: 0.8rem;
                min-height: 48px;
            }

            .modal-info {
                padding: 20px;
            }

            .modal-name {
                font-size: 2rem;
            }

            .modal-price {
                font-size: 1.6rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .gallery-thumbnails {
                display: none;
            }
        }

        .footer {
            background-color: #fff;
            padding-bottom: 5rem;
            margin-top: 4rem;
        }

        .footer__texto {
            line-height: 2;
            text-align: center;

            color: #fff;
            font-size: 1.6rem;
        }

        /* En tu archivo CSS - Agregar estos estilos */
        .image-count-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            gap: 4px;
            z-index: 2;
        }

        .image-count-badge i {
            font-size: 0.7rem;
        }

        .product-image {
            position: relative;
        }

        .product-card:hover .image-count-badge {
            background: rgba(75, 97, 4, 0.9);
        }
  /* ===== MENÚ HAMBURGUESA RESPONSIVE ===== */

/* Menú móvil */
.nav-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--light-color);
    z-index: 2000;
    transition: var(--transition);
    padding: 80px 25px 30px;
    overflow-y: auto;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
}

.nav-mobile.active {
    left: 0;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-mobile-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.4s ease forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.nav-mobile-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-mobile-links li:nth-child(2) { animation-delay: 0.15s; }
.nav-mobile-links li:nth-child(3) { animation-delay: 0.2s; }
.nav-mobile-links li:nth-child(4) { animation-delay: 0.25s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-mobile-links a {
    display: block;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
}

.nav-mobile-links a:hover {
    color: var(--gold-color);
    transform: translateX(10px);
}

/* Botón hamburguesa animado */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
   
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

/* Animación hamburguesa a X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay para móvil */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header cuando el menú móvil está abierto */
body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open header {
    z-index: 2001;
}

/* Botón cerrar menú móvil */
.mobile-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 2002;
}

.mobile-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

/* Logo en menú móvil */
.mobile-logo {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

/* Información de contacto móvil */
.mobile-contact {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.mobile-contact-item i {
    color: var(--gold-color);
    width: 16px;
    text-align: center;
}

.mobile-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--dark-color);
}

.mobile-social a:hover {
    background: var(--gold-color);
    color: white;
    transform: translateY(-3px);
}

/* ===== MEDIA QUERIES PARA MÓVIL ===== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: 15px;
    }

    .cart-icon {
        margin-left: 15px;
    }

    .nav-icons {
        display: flex;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .nav-mobile {
        width: 90%;
        padding: 70px 20px 25px;
    }

    .mobile-logo {
        font-size: 1.1rem;
        left: 20px;
        top: 18px;
    }

    .mobile-close {
        top: 18px;
        right: 18px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .nav-mobile-links a {
        font-size: 1rem;
        padding: 16px 0;
    }

    .mobile-contact {
        margin-top: 25px;
        padding-top: 20px;
    }

    .mobile-contact-info {
        gap: 10px;
    }

    .mobile-contact-item {
        font-size: 0.85rem;
    }

    .mobile-social a {
        width: 35px;
        height: 35px;
    }
}

/* Para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 0.95rem;
    }
}

/* ✅ Estilos para detalles de fragancia */
.fragrance-details {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #8b5cf6;
}

.fragrance-details h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-item {
    padding: 5px 0;
    color: #555;
    font-size: 13px;
    line-height: 1.4;
    border-bottom: 1px solid #e9ecef;
}

.detail-item:last-child {
    border-bottom: none;
}

/* Estilos para el ordenamiento de imágenes en admin */
.image-preview-item {
    position: relative;
    border: 2px dashed #dee2e6;
}

.image-preview-item.dragging {
    opacity: 0.5;
}

.order-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #8b5cf6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}


/* ===== ESTILOS PREMIUM PARA SELECTOR DE ORDENAMIENTO ===== */
.sort-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    justify-content: flex-end;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.sort-container label {
    font-weight: 500;
    color: #2c2c2c;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.sort-select {
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    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='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.sort-select:hover {
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

.sort-select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* ===== ESTILOS PREMIUM PARA PRODUCTOS DESTACADOS ===== */
.featured-products {
    margin: 60px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #e9e9e9 0%, #f3f2d7 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    zoom: 0.9;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.featured-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
}

.featured-title h3 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.featured-title h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e4a0);
}

.featured-title p {
    font-size: 1.1rem;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.featured-badge {
    background: linear-gradient(135deg, #d4af37, #f4e4a0);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 15px;
    animation: subtlePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

@keyframes subtlePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
    padding: 0 20px;
    zoom: 0.9;
}

.featured-product-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4e4a0, #d4af37);
    z-index: 2;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.featured-product-card .product-image {
    position: relative;
    overflow: hidden;
}

.featured-product-card .product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
    pointer-events: none;
}

/* Badge para el título de la sección (plural) */
.section-badge {
    background: linear-gradient(135deg, #d4af37, #f4e4a0);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 15px;
}

/* Badge para cada producto individual (singular) */
.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(244, 228, 160, 0.9));
    color: #2c2c2c;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
}

@keyframes gentleGlow {
    from { 
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        transform: scale(1);
    }
    to { 
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
        transform: scale(1.05);
    }
}

.featured-product-card .product-info {
    padding: 25px;
    background: white;
}

.featured-product-card .product-category {
    font-size: 0.8rem;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.featured-product-card .product-name {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.featured-product-card .price-info {
    margin: 15px 0;
}

.featured-product-card .price-label {
    font-size: 0.75rem;
    color: #666;
    display: block;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.featured-product-card .product-price {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.featured-product-card .product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.featured-product-card .view-details {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.featured-product-card .view-details:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* ===== EFECTO DE CARGA SUAVE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-product-card {
    animation: fadeInUp 0.6s ease-out;
}

.featured-product-card:nth-child(1) { animation-delay: 0.1s; }
.featured-product-card:nth-child(2) { animation-delay: 0.2s; }
.featured-product-card:nth-child(3) { animation-delay: 0.3s; }
.featured-product-card:nth-child(4) { animation-delay: 0.4s; }
.featured-product-card:nth-child(5) { animation-delay: 0.5s; }
.featured-product-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .sort-container {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .featured-title h3 {
        font-size: 1.8rem;
    }
    
    .featured-badge {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        
    }
    
    .featured-product-card {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .featured-products {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .featured-title h3 {
        font-size: 1.5rem;
    }
    
    .featured-title p {
        font-size: 1rem;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* ===== MEJORAS PARA EL CONTENEDOR PRINCIPAL ===== */
.products-grid {
    animation: fadeInUp 0.8s ease-out;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e4a0);
}

/* ===== EFECTO DE HOVER REFINADO PARA TODAS LAS TARJETAS ===== */
.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
/* ===== ESTADO NORMAL - TODOS LOS PRODUCTOS IGUALES ===== */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ===== SOLO CUANDO SE SELECCIONA "MÁS POPULARES" ===== */


/* Estilos para el sistema de precios por ML */
.ml-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.ml-option {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    border-radius: 100px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    min-width: 70px;
}

.ml-option:hover {
    border-color: #71882b88;
    transform: translateY(-1px);
}

.ml-option.active {
    border-color: #656b549b;
    background: #616e20f9;
    color: white;
}

.price-display {
    font-size: 1.5rem;
    font-weight: 600;
    color: #303d1f;
    margin: 10px 0;
    min-height: 2rem;
}

.single-price {
    text-align: center;
    margin: 10px 0;
}

.ml-size {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.no-prices {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 10px;
}

/* Estilos específicos para el modal */
.modal-price-section {
    margin: 15px 0;
}

.modal-price-section .ml-selector {
    justify-content: center;
}

.modal-price-section .price-display {
    font-size: 1.8rem;
    text-align: center;
}

/* Estilos para productos destacados */
.featured-product-card .ml-selector {
    justify-content: center;
}

.featured-product-card .price-display {
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ml-option {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .price-display {
        font-size: 1.3rem;
    }
    
    .modal-price-section .price-display {
        font-size: 1.5rem;
    }
}

/* ===== SISTEMA DE DESCRIPCIÓN PARCIAL CON GRADIENTE ===== */

.product-description-container {
    position: relative;
    margin: 15px 0;
    overflow: hidden;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    
    /* Limitar a 3 líneas */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 4.8em; /* 3 líneas * 1.6 line-height */
}

/* Overlay gradiente para indicar que hay más contenido */
.product-description-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255,255,255,0.95));
    pointer-events: none;
}

/* Estilos específicos para tarjetas de productos destacados */
.featured-product-card .product-description-container {
    margin: 12px 0;
}

.featured-product-card .product-description {
    font-size: 0.9rem;
}

/* En el modal la descripción siempre se muestra completa */
.modal-description {
    display: block !important;
    -webkit-line-clamp: unset !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Quitar el gradiente en el modal */
.modal-info .product-description-container::after {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .product-description {
        -webkit-line-clamp: 2;
        max-height: 3.2em;
        font-size: 0.9rem;
    }
    
    .product-description-container::after {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .product-description {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        max-height: 3.2em;
    }
}



.featured-divider {
    width: 100%;
    height: 2px;
     
    background: linear-gradient(90deg, transparent,  #d4af37, #f4e4a0, #d4af37, transparent);
    margin: 40px 0;
    position: relative;
}


/* SOLUCIÓN AGREGADA PARA CAMPOS DEL CARRITO */
.cart-sidebar form input,
.cart-sidebar form textarea,
.cart-sidebar form select {
    font-size: 16px !important;
    min-height: 44px !important;
}

/* Prevenir zoom en focus para iOS */
@media (max-width: 768px) {
    .cart-sidebar input:focus,
    .cart-sidebar textarea:focus,
    .cart-sidebar select:focus {
        font-size: 16px !important;
        transform: scale(1) !important;
    }
}


