:root {
                --color-forest: #1a5c3f;
                --color-forest-dark: #0f3d28;
                --color-gold: #d4a373;
                --color-gold-light: #e8c5a0;
                --color-cream: #faf7f2;
                --color-earth: #8b6f47;
                --color-sage: #9cb59d;
                --color-white: #ffffff;
                --color-charcoal: #2c2c2c;
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: 'Plus Jakarta Sans', sans-serif;
                color: var(--color-charcoal);
                background: var(--color-cream);
                overflow-x: hidden;
                line-height: 1.6;
            }

            /* Navigation */
            .nav {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1000;
                padding: 1.5rem 5%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                background: rgba(250, 247, 242, 0.95);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(26, 92, 63, 0.1);
                animation: slideDown 0.8s ease-out;
            }

            @keyframes slideDown {
                from { transform: translateY(-100%); opacity: 0; }
                to { transform: translateY(0); opacity: 1; }
            }

            .logo {
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }

            .logoImage {
                height: 60px;
                border-radius: 10px;
            }

            .nav-links {
                display: flex;
                gap: 3rem;
                list-style: none;
            }

            .nav-links a {
                text-decoration: none;
                color: var(--color-charcoal);
                font-weight: 500;
                font-size: 0.95rem;
                position: relative;
                transition: color 0.3s ease;
            }

            .nav-links a::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--color-gold);
                transition: width 0.3s ease;
            }

            .nav-links a:hover {
                color: var(--color-forest);
            }

            .nav-links a:hover::after {
                width: 100%;
            }

            /* Hamburger Menu */
            .hamburger {
                display: none;
                flex-direction: column;
                justify-content: space-around;
                width: 30px;
                height: 24px;
                background: transparent;
                border: none;
                cursor: pointer;
                padding: 0;
                z-index: 1001;
            }

            .hamburger-line {
                width: 100%;
                height: 3px;
                background: var(--color-forest);
                border-radius: 2px;
                transition: all 0.3s ease;
            }

            .hamburger.active .hamburger-line:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .hamburger.active .hamburger-line:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .hamburger-line:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .mobile-menu {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(250, 247, 242, 0.98);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(26, 92, 63, 0.1);
                padding: 2rem 5%;
                z-index: 999;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }

            .mobile-menu.active {
                transform: translateY(0);
            }

            .mobile-nav-links {
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
            }

            .mobile-nav-links a {
                text-decoration: none;
                color: var(--color-charcoal);
                font-weight: 600;
                font-size: 1.1rem;
                transition: color 0.3s ease;
            }

            .mobile-nav-links a:hover {
                color: var(--color-forest);
            }

            /* Cart Icon */
            .cart-icon {
                position: relative;
                cursor: pointer;
                padding: 0.5rem;
                background: var(--color-forest);
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .cart-icon:hover {
                background: var(--color-forest-dark);
                transform: scale(1.1);
            }

            .cart-icon svg {
                width: 24px;
                height: 24px;
                color: var(--color-white);
                fill: currentColor;
            }

            .cart-count {
                position: absolute;
                top: -5px;
                right: -5px;
                background: var(--color-gold);
                color: var(--color-white);
                font-size: 0.75rem;
                font-weight: 700;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Hero Section */
            .hero {
                min-height: 60vh;
                display: flex;
                align-items: center;
                padding: 8rem 5% 4rem;
                position: relative;
                background: linear-gradient(135deg, var(--color-forest-dark) 0%, var(--color-forest) 100%);
                color: var(--color-white);
            }

            .hero-content {
                max-width: 1400px;
                margin: 0 auto;
                text-align: center;
            }

            .hero-label {
                display: inline-block;
                padding: 0.5rem 1.5rem;
                background: var(--color-gold);
                color: var(--color-white);
                font-size: 0.85rem;
                font-weight: 600;
                letter-spacing: 1px;
                text-transform: uppercase;
                margin-bottom: 2rem;
                border-radius: 50px;
            }

            .hero-title {
                font-family: 'Playfair Display', serif;
                font-size: 4rem;
                font-weight: 900;
                margin-bottom: 1.5rem;
                color: var(--color-white);
            }

            .hero-subtitle {
                font-size: 1.3rem;
                max-width: 700px;
                margin: 0 auto 2rem;
                opacity: 0.9;
            }

            /* Products Section */
            .products {
                padding: 6rem 5%;
                background: var(--color-cream);
            }

            .products-header {
                max-width: 1400px;
                margin: 0 auto 4rem;
                text-align: center;
            }

            .section-label {
                font-size: 0.9rem;
                font-weight: 600;
                letter-spacing: 3px;
                text-transform: uppercase;
                color: var(--color-gold);
                margin-bottom: 1rem;
            }

            .section-title {
                font-family: 'Playfair Display', serif;
                font-size: 3.5rem;
                font-weight: 700;
                color: var(--color-forest-dark);
                margin-bottom: 1.5rem;
            }

            .products-grid {
                max-width: 1400px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2.5rem;
            }

            .product-card {
                background: var(--color-white);
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                transition: all 0.4s ease;
                display: flex;
                flex-direction: column;
                height: 100%;
            }

            .product-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            }

            .product-image-wrapper {
                width: 100%;
                height: 280px;
                overflow: hidden;
                background: var(--color-cream);
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .product-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.4s ease;
            }

            .product-card:hover .product-image {
                transform: scale(1.05);
            }

            .product-info {
                padding: 1.5rem;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
            }

            .product-category {
                font-size: 0.8rem;
                font-weight: 600;
                color: var(--color-gold);
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-bottom: 0.5rem;
            }

            .product-name {
                font-family: 'Playfair Display', serif;
                font-size: 1.4rem;
                font-weight: 700;
                color: var(--color-forest-dark);
                margin-bottom: 0.5rem;
                line-height: 1.3;
            }

            .product-weight {
                font-size: 0.9rem;
                color: var(--color-earth);
                margin-bottom: 1rem;
            }

            .product-price {
                font-size: 1.5rem;
                font-weight: 700;
                color: var(--color-forest);
                margin-bottom: 1rem;
            }

            .add-to-cart-btn {
                width: 100%;
                padding: 1rem;
                background: var(--color-forest);
                color: var(--color-white);
                border: none;
                border-radius: 50px;
                font-size: 1rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                margin-top: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
            }

            .add-to-cart-btn:hover {
                background: var(--color-forest-dark);
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(26, 92, 63, 0.3);
            }

            .add-to-cart-btn:active {
                transform: translateY(0);
            }

            /* Cart Sidebar */
            .cart-overlay {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.5);
                z-index: 2000;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .cart-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .cart-sidebar {
                position: fixed;
                top: 0;
                right: 0;
                width: 100%;
                max-width: 500px;
                height: 100vh;
                background: var(--color-white);
                z-index: 2001;
                transform: translateX(100%);
                transition: transform 0.3s ease;
                display: flex;
                flex-direction: column;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            }

            .cart-sidebar.active {
                transform: translateX(0);
            }

            .cart-header {
                padding: 2rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                display: flex;
                justify-content: space-between;
                align-items: center;
                background: var(--color-cream);
            }

            .cart-title {
                font-family: 'Playfair Display', serif;
                font-size: 1.8rem;
                color: var(--color-forest-dark);
            }

            .close-cart {
                background: none;
                border: none;
                font-size: 2rem;
                cursor: pointer;
                color: var(--color-charcoal);
                padding: 0;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: all 0.3s ease;
            }

            .close-cart:hover {
                background: var(--color-cream);
                color: var(--color-forest);
            }

            .cart-items {
                flex-grow: 1;
                overflow-y: auto;
                padding: 1.5rem;
            }

            .cart-item {
                display: flex;
                gap: 1rem;
                padding: 1rem;
                background: var(--color-cream);
                border-radius: 15px;
                margin-bottom: 1rem;
                align-items: center;
            }

            .cart-item-image {
                width: 80px;
                height: 80px;
                object-fit: cover;
                border-radius: 10px;
                background: var(--color-white);
            }

            .cart-item-details {
                flex-grow: 1;
            }

            .cart-item-name {
                font-weight: 600;
                color: var(--color-forest-dark);
                margin-bottom: 0.25rem;
                font-size: 0.95rem;
            }

            .cart-item-price {
                color: var(--color-gold);
                font-weight: 700;
                margin-bottom: 0.5rem;
            }

            .quantity-controls {
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }

            .qty-btn {
                width: 30px;
                height: 30px;
                border: 1px solid var(--color-forest);
                background: var(--color-white);
                color: var(--color-forest);
                border-radius: 50%;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 700;
                transition: all 0.3s ease;
            }

            .qty-btn:hover {
                background: var(--color-forest);
                color: var(--color-white);
            }

            .qty-display {
                font-weight: 600;
                min-width: 30px;
                text-align: center;
            }

            .remove-item {
                background: none;
                border: none;
                color: #e74c3c;
                cursor: pointer;
                font-size: 1.2rem;
                padding: 0.5rem;
                transition: transform 0.3s ease;
            }

            .remove-item:hover {
                transform: scale(1.2);
            }

            .cart-empty {
                text-align: center;
                padding: 3rem 1rem;
                color: var(--color-earth);
            }

            .cart-empty-icon {
                font-size: 4rem;
                margin-bottom: 1rem;
                opacity: 0.5;
            }

            .cart-footer {
                padding: 2rem;
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                background: var(--color-cream);
            }

            .cart-total {
                display: flex;
                justify-content: space-between;
                font-size: 1.3rem;
                font-weight: 700;
                color: var(--color-forest-dark);
                margin-bottom: 1.5rem;
                padding-bottom: 1rem;
                border-bottom: 2px solid var(--color-forest);
            }

            .cart-actions {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
            }

            .action-btn {
                width: 100%;
                padding: 1rem;
                border: none;
                border-radius: 50px;
                font-size: 1rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
            }

            .whatsapp-btn {
                background: #25D366;
                color: white;
            }

            .whatsapp-btn:hover {
                background: #128C7E;
                transform: translateY(-2px);
            }

            .email-btn {
                background: #EA4335;
                color: white;
            }

            .email-btn:hover {
                background: #D33B28;
                transform: translateY(-2px);
            }

            .print-btn {
                background: var(--color-forest);
                color: white;
            }

            .print-btn:hover {
                background: var(--color-forest-dark);
                transform: translateY(-2px);
            }

            .clear-btn {
                background: transparent;
                border: 2px solid var(--color-earth);
                color: var(--color-earth);
            }

            .clear-btn:hover {
                background: var(--color-earth);
                color: white;
            }

            /* Footer */
            .footer {
                padding: 5rem 5% 2rem;
                background: var(--color-forest-dark);
                color: var(--color-cream);
            }

            .footer-content {
                max-width: 1400px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 4rem;
                margin-bottom: 4rem;
            }

            .footer-brand {
                max-width: 400px;
            }

            .footer-logo {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                margin-bottom: 1.5rem;
            }

            .footer-tagline {
                font-size: 1rem;
                line-height: 1.8;
                margin-bottom: 2rem;
            }

            .footer-contact {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .contact-item {
                display: flex;
                align-items: center;
                gap: 1rem;
                color: var(--color-cream);
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .contact-item:hover {
                color: var(--color-gold);
            }

            .footer-section-title {
                font-family: 'Playfair Display', serif;
                font-size: 1.3rem;
                font-weight: 700;
                margin-bottom: 1.5rem;
                color: var(--color-gold);
            }

            .footer-links {
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .footer-links a {
                color: var(--color-cream);
                text-decoration: none;
                transition: all 0.3s ease;
                display: inline-block;
            }

            .footer-links a:hover {
                color: var(--color-gold);
                transform: translateX(5px);
            }

            .footer-bottom {
                max-width: 1400px;
                margin: 0 auto;
                padding-top: 2rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                text-align: center;
                color: var(--color-cream);
                font-size: 0.9rem;
            }

            /* Print Styles */
            @media print {
                .nav, .cart-icon, .cart-overlay, .cart-sidebar, .footer, .add-to-cart-btn {
                    display: none !important;
                }

                .products {
                    padding: 0;
                }

                .print-only {
                    display: block !important;
                }

                body {
                    background: white;
                }

                .product-card {
                    break-inside: avoid;
                    margin-bottom: 1rem;
                    border: 1px solid #ddd;
                }
            }

            .print-only {
                display: none;
            }

            /* Responsive */
            @media (max-width: 1024px) {
                .footer-content {
                    grid-template-columns: 1fr 1fr;
                }
            }

            @media (max-width: 768px) {
                .nav-links {
                    display: none;
                }

                .hamburger {
                    display: flex;
                }

                .mobile-menu {
                    display: block;
                }

                .hero-title {
                    font-size: 2.5rem;
                }

                .section-title {
                    font-size: 2.5rem;
                }

                .footer-content {
                    grid-template-columns: 1fr;
                    gap: 3rem;
                }

                .products-grid {
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 1.5rem;
                }
            }

            @media (max-width: 480px) {
                .hero-title {
                    font-size: 2rem;
                }

                .section-title {
                    font-size: 2rem;
                }

                .cart-sidebar {
                    max-width: 100%;
                }
            }