
        :root {
            --primary: #722F37;
            --primary-dark: #5a252c;
            --accent: #D4AF37;
            --accent-light: #E5C76B;
            --bg: #FFF8E7;
            --bg-cream: #FFFDF5;
            --dark: #2C2C2C;
            --text: #4a4a4a;
            --white: #ffffff;
            --shadow: rgba(114, 47, 55, 0.1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Montserrat', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
        a { text-decoration: none; transition: all 0.3s; }

        .header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px var(--shadow);
        }
        .header-main {
            max-width: 1400px; margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex; justify-content: space-between; align-items: center;
        }
        .logo { text-align: center; flex: 1; }
        .logo h1 { 
            font-family: 'Playfair Display', serif; 
            font-size: 2.2rem; font-weight: 600; 
            color: var(--white); letter-spacing: 6px; 
            text-transform: uppercase; 
            position: relative;
            display: inline-block;
        }
        .logo h1::before, .logo h1::after {
            content: 'â¦'; color: var(--accent); font-size: 0.8rem;
            position: absolute; top: 50%; transform: translateY(-50%);
        }
        .logo h1::before { left: -25px; }
        .logo h1::after { right: -25px; }
        .logo span { font-size: 0.75rem; color: var(--accent); letter-spacing: 3px; text-transform: uppercase; display: block; margin-top: 0.3rem; }
        
        .header-contact {
            display: flex; align-items: center; gap: 2rem;
            color: rgba(255,255,255,0.9); font-size: 0.9rem;
        }
        .header-contact span { display: flex; align-items: center; gap: 0.5rem; }
        .header-contact i { color: var(--accent); }

        .centered-nav {
            background: var(--white);
            border-top: 1px solid rgba(212,175,55,0.3);
        }
        .nav-container {
            max-width: 1000px; margin: 0 auto;
            display: flex; justify-content: center; gap: 0.5rem; padding: 0.8rem 2rem;
        }
        .centered-nav a {
            color: var(--dark); font-size: 0.9rem; font-weight: 500;
            letter-spacing: 1px; text-transform: uppercase;
            padding: 0.6rem 1.5rem; position: relative;
            border-radius: 4px;
        }
        .centered-nav a::after {
            content: ''; position: absolute; bottom: 0; left: 50%;
            width: 0; height: 2px; background: var(--accent);
            transition: all 0.3s; transform: translateX(-50%);
        }
        .centered-nav a:hover::after, .centered-nav a.active::after { width: 80%; }
        .centered-nav a:hover, .centered-nav a.active { color: var(--primary); }

        .hero {
            min-height: 85vh;
            background: linear-gradient(135deg, rgba(114,47,55,0.92) 0%, rgba(90,37,44,0.88) 100%),
                        url('https://images.pexels.com/photos/1488463/pexels-photo-1488463.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
            display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem;
        }
        .hero-content { max-width: 800px; }
        .hero-badge { 
            display: inline-block; 
            background: rgba(212,175,55,0.2); 
            border: 1px solid var(--accent);
            padding: 0.5rem 2rem; border-radius: 30px; 
            font-size: 0.85rem; font-weight: 600; color: var(--accent); 
            margin-bottom: 2rem; letter-spacing: 2px;
        }
        .hero h2 { 
            font-family: 'Playfair Display', serif; 
            font-size: 3.8rem; font-weight: 600; 
            color: var(--white); margin-bottom: 1.5rem; 
            line-height: 1.2;
        }
        .hero p { 
            font-size: 1.15rem; color: rgba(255,255,255,0.9); 
            margin-bottom: 3rem; max-width: 600px; 
            margin-left: auto; margin-right: auto; 
        }
        .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .btn-primary { 
            background: var(--accent); color: var(--dark); 
            padding: 1rem 2.5rem; border-radius: 50px; 
            font-weight: 700; font-size: 0.95rem; letter-spacing: 1px;
        }
        .btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
        .btn-secondary { 
            background: transparent; color: var(--white); 
            padding: 1rem 2.5rem; border-radius: 50px; 
            font-weight: 700; font-size: 0.95rem; 
            border: 2px solid var(--white); letter-spacing: 1px;
        }
        .btn-secondary:hover { background: var(--white); color: var(--primary); }

        .categories { padding: 6rem 2rem; background: var(--white); }
        .section-title { 
            font-family: 'Playfair Display', serif; 
            font-size: 2.8rem; color: var(--primary); 
            text-align: center; margin-bottom: 0.5rem;
        }
        .section-subtitle { 
            text-align: center; color: var(--text); 
            font-size: 1.05rem; margin-bottom: 3rem; 
            max-width: 600px; margin-left: auto; margin-right: auto;
        }
        .categories-grid { 
            display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
            gap: 1.5rem; max-width: 1000px; margin: 0 auto; 
        }
        .category-card { 
            background: var(--bg); padding: 2rem 1rem; 
            border-radius: 12px; text-align: center; 
            transition: all 0.3s; border: 1px solid transparent;
        }
        .category-card:hover { 
            transform: translateY(-8px); 
            box-shadow: 0 15px 40px var(--shadow);
            border-color: var(--accent);
        }
        .category-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
        .category-card h3 { font-size: 0.85rem; color: var(--dark); font-weight: 600; line-height: 1.4; }

        .featured { padding: 6rem 2rem; background: var(--bg-cream); }
        .featured-grid { 
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 2rem; max-width: 1200px; margin: 0 auto; 
        }
        .featured-card { 
            background: var(--white); border-radius: 16px; 
            overflow: hidden; box-shadow: 0 5px 25px var(--shadow);
            transition: all 0.3s;
        }
        .featured-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px var(--shadow); }
        .featured-img { 
            height: 220px; background-size: cover; background-position: center;
            position: relative;
        }
        .featured-badge { 
            position: absolute; top: 1rem; left: 1rem; 
            background: var(--primary); color: var(--white); 
            padding: 0.4rem 1rem; border-radius: 20px; 
            font-size: 0.75rem; font-weight: 700; 
        }
        .featured-info { padding: 1.5rem; }
        .featured-info h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: 0.5rem; }
        .featured-info p { font-size: 0.9rem; color: var(--text); margin-bottom: 1rem; }
        .featured-footer { display: flex; justify-content: space-between; align-items: center; }
        .featured-price { 
            font-family: 'Playfair Display', serif; 
            font-size: 1.4rem; font-weight: 700; color: var(--primary); 
        }
        .featured-btn { 
            padding: 0.5rem 1.2rem; 
            background: var(--bg); color: var(--primary); 
            border-radius: 8px; font-weight: 700; font-size: 0.85rem;
            border: 1px solid var(--primary);
        }
        .featured-btn:hover { background: var(--primary); color: var(--white); }

        .promo { 
            padding: 5rem 2rem; 
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white); text-align: center;
        }
        .promo h2 { 
            font-family: 'Playfair Display', serif; 
            font-size: 2.5rem; margin-bottom: 1rem; 
        }
        .promo p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }
        .promo-btn { 
            background: var(--accent); color: var(--dark); 
            padding: 1rem 3rem; border-radius: 50px; 
            font-weight: 700; font-size: 1rem; letter-spacing: 1px;
            display: inline-block;
        }
        .promo-btn:hover { background: var(--accent-light); transform: translateY(-2px); }

        .footer { background: var(--dark); color: var(--white); padding: 5rem 2rem 2rem; }
        .footer-grid { 
            display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 3rem; max-width: 1200px; margin: 0 auto; 
        }
        .footer-col h3 { 
            font-family: 'Playfair Display', serif; 
            font-size: 1.2rem; margin-bottom: 1.5rem; 
            color: var(--accent); 
        }
        .footer-col p, .footer-col a { 
            font-size: 0.95rem; color: rgba(255,255,255,0.7); 
            display: block; margin-bottom: 0.8rem; line-height: 1.6; 
        }
        .footer-col a:hover { color: var(--accent); }
        .footer-bottom { 
            text-align: center; padding-top: 3rem; margin-top: 3rem; 
            border-top: 1px solid rgba(255,255,255,0.1); 
            font-size: 0.9rem; color: rgba(255,255,255,0.5); 
        }
        .footer-bottom a { color: rgba(255,255,255,0.5); margin: 0 0.5rem; }
        .footer-bottom a:hover { color: var(--accent); }

        @media (max-width: 768px) {
            .header-main { flex-direction: column; gap: 1rem; }
            .logo h1 { font-size: 1.8rem; }
            .header-contact { justify-content: center; }
            .hero h2 { font-size: 2.5rem; }
            .nav-container { flex-wrap: wrap; gap: 0.3rem; }
            .centered-nav a { padding: 0.5rem 1rem; font-size: 0.8rem; }
        }
    