        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #CA753E;
            --primary-dark: #A25E31;
            --primary-light: #EE8144;
            --secondary: #9DAC87;
            --cream: #FFEFE0;
            --white: #FFFDF9;
            --text-dark: #522F18;
            --text-light: #5F6750;
            --accent: #E7A157;
            --purple: #7C8869;
            --pink: #9DAC87;
            --neutral: #D2D2D2;
            --gradient-primary: linear-gradient(135deg, #CA753E 0%, #E7A157 100%);
            --gradient-secondary: linear-gradient(135deg, #FFEFE0 0%, #D2D2D2 100%);
            --gradient-accent: linear-gradient(135deg, #EE8144 0%, #CA753E 100%);
            --shadow-sm: 0 8px 20px rgba(82,47,24,0.14);
            --shadow-md: 0 14px 34px rgba(82,47,24,0.2);
            --shadow-lg: 0 24px 48px rgba(82,47,24,0.24);
            --shadow-xl: 0 34px 74px rgba(82,47,24,0.28);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 30px;
            --burgundy-ink: #1a0b10;
        }

        html {
            scroll-behavior: smooth;
        }

body {
            font-family: 'Inter', sans-serif;
            background-color: var(--cream);
            background-image: url('../images/fondo.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        /* Enhanced Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(249, 247, 245, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.2rem 2rem;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 30px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(202, 117, 62, 0.1);
        }

        .navbar.scrolled {
            padding: 0.8rem 2rem;
            background: rgba(249, 247, 245, 0.98);
            box-shadow: 0 4px 40px rgba(0,0,0,0.12);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

.logo {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
        }

.logo img {
            height: 73px;
            width: auto;
            display: block;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .logo:hover::after {
            width: 100%;
        }

        .logo-tagline {
            font-size: 0.65rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 3px;
            line-height: 1.4;
            font-weight: 500;
            padding-left: 0.5rem;
            border-left: 2px solid var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            letter-spacing: 0.5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 8px;
            transition: all 0.3s ease;
        }

        .nav-toggle:hover {
            transform: scale(1.1);
        }

        .nav-toggle span {
            width: 28px;
            height: 2.5px;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Enhanced Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 10rem 2rem 5rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(20, 12, 8, 0.55) 0%, rgba(20, 12, 8, 0.30) 42%, rgba(20, 12, 8, 0.15) 100%),
                radial-gradient(circle at 18% 35%, rgba(255, 239, 224, 0.28) 0%, transparent 45%);
            z-index: 1;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 239, 224, 0.12) 0%, rgba(255, 239, 224, 0.28) 100%);
            pointer-events: none;
            z-index: 1;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
            max-width: 760px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 0.6rem 1.4rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(202, 117, 62, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .hero h1 {
            font-size: 3.8rem;
            line-height: 1.15;
            margin-bottom: 1.8rem;
            color: var(--burgundy-ink);
            text-shadow: none;
        }

        .hero h1 span {
            color: #2a1117;
            font-style: italic;
            position: relative;
        }

        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(202, 117, 62, 0.15);
            z-index: -1;
            border-radius: 4px;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--burgundy-ink);
            margin-bottom: 2.5rem;
            max-width: 540px;
            line-height: 1.8;
            text-shadow: none;
        }

        .hero-buttons {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            padding: 1.1rem 2.4rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .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: left 0.6s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 6px 20px rgba(202, 117, 62, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(202, 117, 62, 0.45);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            position: relative;
        }

        .btn-secondary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--primary);
            z-index: -1;
            transition: width 0.4s ease;
        }

        .btn-secondary:hover::after {
            width: 100%;
        }

        .btn-secondary:hover {
            color: var(--white);
            transform: translateY(-3px);
        }

        .hero-carousel {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            background: #d8c7b8;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.2s ease;
        }

        .hero-slide.active {
            opacity: 1;
            z-index: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            padding: 0;
            background: transparent;
            transition: transform 1.2s ease;
        }

        .hero:hover .hero-slide.active img {
            transform: scale(1.02);
        }

        .hero-carousel-dots {
            position: absolute;
            left: 50%;
            bottom: 82px;
            transform: translateX(-50%);
            display: flex;
            gap: 0.45rem;
            z-index: 3;
            background: rgba(0, 0, 0, 0.22);
            border-radius: 999px;
            padding: 0.35rem 0.55rem;
            backdrop-filter: blur(4px);
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 0;
            background: rgba(255,255,255,0.6);
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease;
            padding: 0;
        }

        .hero-dot.active {
            background: #fff;
            transform: scale(1.2);
        }

        .scroll-cue {
            position: absolute;
            left: 50%;
            bottom: 22px;
            transform: translateX(-50%);
            z-index: 3;
            color: var(--burgundy-ink);
            text-decoration: none;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 0.2rem;
            font-size: 0.78rem;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            font-weight: 600;
            text-shadow: none;
            animation: scrollHint 2.8s ease-in-out infinite;
        }

        .scroll-cue svg {
            width: 20px;
            height: 20px;
        }

        @keyframes scrollHint {
            0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
            50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
        }

        /* Enhanced Categories Section */
        .categories {
            padding: 6rem 2rem;
            background: var(--white);
            position: relative;
        }

        .categories::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .categories-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.8rem;
        }

        .category-card {
            background: var(--cream);
            padding: 2.5rem 1.8rem;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient-primary);
            transition: height 0.4s ease;
            z-index: 0;
        }

        .category-card:hover::before {
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .category-card > * {
            position: relative;
            z-index: 1;
            transition: color 0.4s ease;
        }

        .category-card:hover .category-icon,
        .category-card:hover .category-title,
        .category-card:hover .category-desc {
            color: var(--white);
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 1.2rem;
            display: block;
            transition: transform 0.4s ease;
        }

        .category-card:hover .category-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .category-title {
            font-size: 1.2rem;
            margin-bottom: 0.6rem;
            color: var(--text-dark);
            font-family: 'Playfair Display', serif;
        }

        .category-desc {
            font-size: 0.88rem;
            color: var(--text-light);
        }

        /* Enhanced About Section */
        .about {
            padding: 7rem 2rem;
            background: var(--cream);
            position: relative;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-wrapper {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .about-image img {
            width: 100%;
            height: 480px;
            object-fit: contain;
            object-position: center;
            background: var(--white);
            transition: transform 0.6s ease;
        }

        .about-image:hover img {
            transform: scale(1.02);
        }

        .about-content h2 {
            font-size: 2.8rem;
            margin-bottom: 1.8rem;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .about-content p {
            color: var(--text-light);
            margin-bottom: 1.8rem;
            font-size: 1.08rem;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin-top: 2.5rem;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--white);
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .about-feature:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-md);
        }

        .about-feature-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(202, 117, 62, 0.3);
        }

        .about-feature span {
            font-size: 0.98rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Enhanced Products Section */
        .products {
            padding: 7rem 2rem;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 1.2rem;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-top: 1.5rem;
            line-height: 1.8;
        }

        .products-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.8rem;
        }

        .product-card {
            background: var(--cream);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.9s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: default;
            border: 1px solid rgba(0,0,0,0.05);
            display: grid;
            grid-template-columns: 270px 1fr;
        }

        .product-card:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: var(--shadow-xl);
        }

        .product-image {
            width: 100%;
            height: 100%;
            min-height: 290px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            border-radius: var(--radius-sm);
            transition: transform 0.6s ease;
        }

        .product-image img.gallery-fade {
            opacity: 0.08;
            transition: opacity 0.45s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.04);
        }

        .product-badge {
            position: absolute;
            top: 18px;
            left: 18px;
            background: var(--gradient-accent);
            color: var(--text-dark);
            padding: 0.5rem 1.1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            box-shadow: 0 4px 15px rgba(231, 161, 87, 0.4);
        }

        .product-info {
            padding: 1.8rem;
        }

        .product-category {
            font-size: 0.78rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
            margin-bottom: 0.7rem;
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(202, 117, 62, 0.08);
            border-radius: 50px;
        }

        .product-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            margin-bottom: 0.8rem;
            color: var(--text-dark);
            line-height: 1.35;
        }

        .product-desc {
            font-size: 0.92rem;
            color: var(--text-light);
            margin-bottom: 1.2rem;
            line-height: 1.6;
        }

        .product-price {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.3rem;
            display: block;
            margin-bottom: 1rem;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 1.2rem;
        }

        .product-feature {
            background: var(--white);
            padding: 0.4rem 0.9rem;
            border-radius: 50px;
            font-size: 0.78rem;
            color: var(--text-light);
            border: 1px solid rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .product-feature:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        /* Enhanced Featured Products */
        .featured-products {
            padding: 7rem 2rem;
            background: var(--gradient-primary);
            color: var(--burgundy-ink);
            position: relative;
            overflow: hidden;
        }

        .featured-products h2,
        .featured-products h3,
        .featured-products p,
        .featured-products .featured-feature,
        .featured-products .featured-tip {
            color: var(--burgundy-ink);
        }

        .featured-products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .featured-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .featured-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .featured-header h2 {
            font-size: 2.8rem;
            margin-bottom: 1.2rem;
        }

        .featured-header p {
            opacity: 0.9;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.8rem;
        }

        .featured-card {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(20px);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.9s cubic-bezier(0.22, 1, 0.36, 1), background 0.9s cubic-bezier(0.22, 1, 0.36, 1);
            border: 1px solid rgba(255,255,255,0.15);
            display: grid;
            grid-template-columns: 300px 1fr;
        }

        .featured-card:hover {
            transform: translateY(-4px) scale(1.01);
            background: rgba(255,255,255,0.18);
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .featured-image {
            width: 100%;
            height: 100%;
            min-height: 320px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            border-radius: var(--radius-sm);
            transition: transform 0.6s ease;
        }

        .featured-card:hover .featured-image img {
            transform: scale(1.04);
        }

        .zoomable-image {
            cursor: zoom-in;
        }

        .image-lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.86);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            z-index: 3000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        .image-lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .image-lightbox-content {
            position: relative;
            width: min(95vw, 1200px);
            max-height: 92vh;
            display: grid;
            gap: 0.8rem;
            justify-items: center;
        }

        .image-lightbox img {
            max-width: 100%;
            max-height: 84vh;
            width: auto;
            height: auto;
            border-radius: var(--radius-md);
            background: var(--white);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
        }

        .image-lightbox-caption {
            color: #f6f6f6;
            text-align: center;
            font-size: 0.95rem;
        }

        .image-lightbox-close {
            position: absolute;
            top: 0;
            right: 0;
            transform: translate(50%, -50%);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            font-size: 1.4rem;
            line-height: 1;
            cursor: pointer;
            box-shadow: var(--shadow-md);
        }

        .image-lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            font-size: 1.9rem;
            line-height: 1;
            cursor: pointer;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .image-lightbox-nav:hover {
            background: rgba(0, 0, 0, 0.75);
            transform: translateY(-50%) scale(1.05);
        }

        .image-lightbox-nav.prev {
            left: 14px;
        }

        .image-lightbox-nav.next {
            right: 14px;
        }

        .image-lightbox-nav.hidden {
            display: none;
        }

        .featured-info {
            padding: 2rem;
        }

        .featured-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            line-height: 1.35;
        }

        .featured-info p {
            opacity: 0.92;
            font-size: 0.98rem;
            margin-bottom: 1.2rem;
            line-height: 1.7;
        }

        .featured-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-bottom: 1.2rem;
        }

        .featured-feature {
            background: rgba(255,255,255,0.18);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.82rem;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .featured-tip {
            background: rgba(255,255,255,0.12);
            padding: 1.3rem;
            border-radius: var(--radius-md);
            font-size: 0.92rem;
            font-style: italic;
            border-left: 4px solid #2a1117;
            line-height: 1.7;
        }

        /* Enhanced Services Section */
        .services {
            padding: 7rem 2rem;
            background: var(--cream);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .service-card {
            background: var(--white);
            padding: 3rem 2.2rem;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .service-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            box-shadow: 0 8px 25px rgba(202, 117, 62, 0.3);
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.98rem;
            line-height: 1.7;
        }

        /* Enhanced Testimonials */
        .testimonials {
            padding: 7rem 2rem;
            background: var(--white);
        }

        .testimonials-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonials h2 {
            font-size: 2.8rem;
            margin-bottom: 4rem;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
        }

        .testimonials h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .testimonial-card {
            background: var(--cream);
            padding: 3.5rem;
            border-radius: var(--radius-lg);
            margin-bottom: 2rem;
            position: relative;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 6rem;
            color: var(--primary);
            opacity: 0.15;
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .testimonial-stars {
            color: var(--accent);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            line-height: 1.9;
            margin-bottom: 1.8rem;
            color: var(--text-dark);
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
            font-size: 1rem;
        }

        /* Enhanced Contact Section */
        .contact {
            padding: 7rem 2rem;
            background: linear-gradient(135deg, var(--cream) 0%, #F0EBE5 100%);
        }

        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .contact h2 {
            font-size: 2.8rem;
            margin-bottom: 1.2rem;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
        }

        .contact h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .contact p {
            color: var(--text-light);
            font-size: 1.15rem;
            margin-bottom: 3.5rem;
            line-height: 1.8;
        }

.contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

.contact-item {
            background: var(--white);
            padding: 2.5rem 1.8rem;
            border-radius: var(--radius-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.05);
        }

.contact-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            box-shadow: 0 6px 20px rgba(202, 117, 62, 0.3);
            transition: all 0.4s ease;
        }

        .contact-item:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .contact-item h4 {
            font-size: 1.15rem;
            margin-bottom: 0.7rem;
            color: var(--text-dark);
            font-family: 'Playfair Display', serif;
        }

        .contact-item p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }

        .contact-item p a {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-item p a:hover {
            text-decoration: underline;
        }

        .map-link {
            display: block;
            text-decoration: none;
            margin-top: 1rem;
        }

.map-preview {
            width: 100%;
            height: 128px;
            border-radius: var(--radius-md);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.08);
            background:
                radial-gradient(circle at 25% 30%, rgba(255,255,255,0.85) 0 24%, transparent 25%),
                radial-gradient(circle at 70% 65%, rgba(255,255,255,0.85) 0 20%, transparent 21%),
                linear-gradient(120deg, rgba(124,136,105,0.20) 0%, rgba(124,136,105,0.10) 35%, rgba(255,255,255,0.6) 35%, rgba(255,255,255,0.6) 42%, rgba(124,136,105,0.10) 42%, rgba(124,136,105,0.20) 100%),
                linear-gradient(35deg, rgba(202,117,62,0.14) 0%, rgba(255,255,255,0.55) 55%, rgba(202,117,62,0.18) 100%),
                var(--cream);
            box-shadow: var(--shadow-md);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .map-preview::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, transparent 0%, transparent 22%, rgba(255,255,255,0.88) 22%, rgba(255,255,255,0.88) 30%, transparent 30%, transparent 100%),
                linear-gradient(0deg, transparent 0%, transparent 52%, rgba(255,255,255,0.88) 52%, rgba(255,255,255,0.88) 60%, transparent 60%, transparent 100%);
            opacity: 0.9;
        }

        .map-pin {
            position: absolute;
            left: 58%;
            top: 45%;
            width: 18px;
            height: 18px;
            transform: translate(-50%, -100%) rotate(-45deg);
            background: #ff4d4f;
            border-radius: 50% 50% 50% 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
            z-index: 2;
        }

        .map-pin::after {
            content: '';
            position: absolute;
            width: 7px;
            height: 7px;
            background: #ffd6d6;
            border-radius: 50%;
            left: 5px;
            top: 5px;
        }

        .map-preview-label {
            position: absolute;
            left: 10px;
            right: 10px;
            bottom: 10px;
            z-index: 2;
            background: rgba(255,253,249,0.94);
            color: var(--text-dark);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.35rem 0.55rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.08);
        }

.map-link:hover .map-preview {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

.whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            background: linear-gradient(135deg, #25D366 0%, #1EBE57 100%);
            color: var(--white);
            padding: 1.4rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.15rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 16px 34px rgba(37, 211, 102, 0.4);
            position: relative;
            overflow: hidden;
        }

        .whatsapp-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: left 0.6s ease;
        }

        .whatsapp-btn:hover::before {
            left: 100%;
        }

.whatsapp-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 50px rgba(37, 211, 102, 0.5);
        }

        /* Enhanced Footer */
        .footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2D2D2D 100%);
            color: var(--white);
            padding: 5rem 2rem 2.5rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3.5rem;
        }

        .footer-logo {
            height: 94px;
            width: auto;
            display: block;
            margin-bottom: 1rem;
            filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.24));
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 0.98rem;
            line-height: 1.9;
            margin-bottom: 1rem;
        }

        .footer-owner {
            color: rgba(255,255,255,0.5);
            font-size: 0.88rem;
            font-style: italic;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-links h4 {
            font-size: 1.15rem;
            margin-bottom: 1.8rem;
            color: var(--primary-light);
            font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--primary-light);
        }

        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 20px;
        }

        .footer-links a:hover::before {
            opacity: 1;
            left: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2.5rem;
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.92rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                text-align: center;
            }

            .hero p {
                margin: 0 auto 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .categories-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .featured-grid {
                grid-template-columns: 1fr;
            }

            .services-container {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.5rem;
            }

            .footer-links h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-links a:hover {
                padding-left: 0;
            }

            .footer-links a::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--cream);
                flex-direction: column;
                padding: 1.5rem 2rem;
                gap: 1rem;
                box-shadow: var(--shadow-lg);
                border-top: 1px solid rgba(0,0,0,0.05);
            }

            .nav-links.active {
                display: flex;
                animation: slideDown 0.3s ease;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .nav-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-carousel { height: 100%; min-height: 100%; }

            .about-image img {
                height: 320px;
            }

            .hero-carousel-dots {
                bottom: 74px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .product-card {
                grid-template-columns: 1fr;
            }

            .product-image {
                min-height: 260px;
            }

            .featured-card {
                grid-template-columns: 1fr;
            }

            .featured-image {
                min-height: 280px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .about-content h2 {
                font-size: 2.2rem;
            }

            .testimonials h2 {
                font-size: 2.2rem;
            }

            .testimonial-card {
                padding: 2.5rem 1.8rem;
            }

            .logo img {
                height: 60px;
            }

            .logo-tagline {
                font-size: 0.55rem;
            }
        }

        /* Background Transparency (show global background image) */
        .hero,
        .categories,
        .about,
        .products,
        .services,
        .testimonials,
        .contact {
            background: rgba(255, 253, 249, 0.3);
            backdrop-filter: blur(1px);
        }

        .featured-products {
            background: rgba(202, 117, 62, 0.3);
        }

        .category-card,
        .about-feature,
        .product-card,
        .service-card,
        .testimonial-card,
        .contact-item,
        .product-feature {
            background: rgba(255, 253, 249, 0.3);
            backdrop-filter: blur(2px);
        }

        .product-image,
        .featured-image,
        .hero-slide img,
        .about-image img {
            background: rgba(255, 253, 249, 0.3);
        }

        .map-preview-label {
            background: rgba(255, 253, 249, 0.3);
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            z-index: 1001;
            transition: width 0.35s ease;
        }

        /* Global slower/smoother feel */
        body *, body *::before, body *::after {
            transition-duration: 0.9s;
            transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* Selection Styling */
        ::selection {
            background: var(--primary);
            color: var(--white);
        }

        /* Smooth Image Loading */
        img {
            image-rendering: -webkit-optimize-contrast;
        }

        /* Focus States for Accessibility */
        a:focus, button:focus {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
