@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Montserrat:wght@400;500;600&display=swap');

/* ==========================================================================
   1. GENEL AYARLAR & KAYMA ENGELLEME (OVERFLOW FIX)
   ========================================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

body { 
    font-family: 'Montserrat', sans-serif; 
    color: #4a2c2a; 
    background-color: #fcfaf8;
    background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
    line-height: 1.6; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    width: 100%; 
}

.text-center { text-align: center; }
.section-padding { padding: 80px 0; }

/* ==========================================================================
   2. HEADER & NAV (MASAÜSTÜ TEMELLERİ)
   ========================================================================== */
.header { 
    background: #fff; 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 2000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.header-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-group { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    gap: 10px; 
}

.main-logo { height: 35px; width: auto; }
.header-text-logo { height: 20px; width: auto; }

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 20px; 
}

.nav-links a { 
    text-decoration: none; 
    color: #4a2c2a; 
    font-weight: 600; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    transition: color 0.3s ease;
}

.nav-links a:hover { color: #b87333; }
.menu-toggle { display: none; font-size: 1.5rem; color: #b87333; cursor: pointer; }
/* ==========================================================================
   2. HEADER DEVAMI (DİL SEÇİCİ & İLETİŞİM GRUBU)
   ========================================================================== */
.header-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-meta {
    display: flex;
    gap: 15px; /* İki ikon arasındaki boşluk */
    align-items: center; /* Dikeyde ortala */
    margin-right: 10px; /* Dil seçeneği ile arasına biraz mesafe koy */
}

.meta-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 30px; /* Tıklama alanı genişliği */
    height: 30px; /* Tıklama alanı yüksekliği */
    border-radius: 50%; /* Hafif yuvarlak efekt (hover için) */
}
.meta-link i {
    color: #4a2c2a; /* Menü yazılarıyla aynı renk (Koyu Kahve) */
    font-size: 1.1rem; /* Boyut: Menü yazılarıyla dengeli (biraz büyüttük) */
    transition: color 0.3s ease;
}

.meta-link:hover i {
    color: #b87333; /* Markanın bakır rengi */
    transform: scale(1.1); /* Hafifçe büyüsün */
}

.lang-wrapper {
    position: relative !important;
    z-index: 2001;
}

.current-lang {
    background: #fff;
    border: 1px solid rgba(184, 115, 51, 0.4);
    padding: 5px 10px !important;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    list-style: none;
    padding: 8px 0;
    width: 100px;
    display: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 3000;
}

.lang-dropdown.active {
    display: block !important;
}

.lang-dropdown li {
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.lang-dropdown li:hover {
    background: #fcfaf8;
    color: #b87333;
}

.current-lang img, .lang-dropdown img {
    width: 18px;
    height: 12px;
    object-fit: cover;
}

/* ==========================================================================
   3. HERO BÖLÜMÜ (TAM DETAYLI)
   ========================================================================== */
.hero { 
    height: 75vh; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: #fff; 
    overflow: hidden;
}

.hero-bg { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    z-index: -2; 
}

.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5); 
    z-index: -1; 
}

.hero-title { 
    font-size: 2.5rem; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    justify-content: center; 
    flex-wrap: wrap; 
    font-family: 'Playfair Display', serif; 
}

.hero-logo-img-hero { height: 50px; width: auto; vertical-align: middle; }
/* ==========================================================================
   3. WHY ROSALURE (NEDEN BİZ?) BÖLÜMÜ
   ========================================================================== */
.why-title-wrapper { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 40px; 
}

.why-text { 
    font-family: 'Playfair Display', serif; 
    font-size: 3.2rem; 
    line-height: 1; 
}

.why-logo-img { height: 50px; width: auto; }

.highlight-text { 
    font-size: 1.25rem; 
    margin: 0 auto 25px auto; 
    max-width: 900px; 
    text-align: center;
}

/* ==========================================================================
   3. ROYAL BANNER (SULTANLARIN GÜZELLİK SIRRI)
   ========================================================================== */
.royal-banner { 
    margin-top: 50px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
}

.banner-line { 
    width: 100px; 
    height: 2px; 
    background: linear-gradient(to right, transparent, #b87333, transparent); 
}

.royal-text { 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    font-size: 1.6rem; 
    color: #b87333; 
    text-align: center; 
}

/* ==========================================================================
   4. RİTÜEL (BEAUTY RITUAL) BÖLÜMÜ - TEMELLER
   ========================================================================== */
.ritual-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 40px; 
    margin-top: 50px; 
}

.ritual-step { position: relative; }

.ritual-img { 
    width: 100%; 
    max-width: 320px; 
    height: 380px; 
    object-fit: cover; 
    border-radius: 20px 20px 100px 20px; 
    box-shadow: 0 10px 30px rgba(74,44,42,0.1); 
    border: 1px solid rgba(184,115,51,0.2); 
    transition: transform 0.3s ease;
}

.ritual-step:hover .ritual-img {
    transform: translateY(-5px);
}
/* ==========================================================================
   4. RİTÜEL DEVAMI & BÖLÜM BAŞLIKLARI
   ========================================================================== */
.step-number { 
    font-family: 'Playfair Display', serif; 
    font-size: 5rem; 
    color: rgba(184, 115, 51, 0.15); 
    position: absolute; 
    bottom: -15px; 
    right: 20px; 
    z-index: -1; 
}

.section-title { 
    text-align: center; 
    font-size: 2.8rem; 
    margin-bottom: 10px; 
    font-family: 'Playfair Display', serif; 
}

.scientific-subtitle { 
    text-align: center; 
    color: #b87333; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 40px; 
    font-weight: 600; 
}

/* ==========================================================================
   4. BİLİMSEL FAYDALAR (ACCORDION) TASARIMI
   ========================================================================== */
.benefits-accordion { 
    max-width: 850px; 
    margin: 0 auto; 
}

.accordion-item { 
    margin-bottom: 15px; 
    background: #fff; 
    border-radius: 12px; 
    border: 1px solid #f4eee9; 
    overflow: hidden; 
    transition: all 0.3s ease;
}

.accordion-header { 
    width: 100%; 
    padding: 22px 25px; 
    background: none; 
    border: none; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    font-family: 'Playfair Display', serif; 
    font-size: 1.15rem; 
    color: #4a2c2a; 
    text-align: left; 
}

.accordion-content { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease-out; 
    padding: 0 25px; 
}

.accordion-content p {
    padding-bottom: 20px;
}

.source-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: #b87333;
    font-style: italic;
    margin-bottom: 20px;
}
/* ==========================================================================
   5. ZANAATIN ZİRVESİ (CRAFT) BÖLÜMÜ
   ========================================================================== */
.craft-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    align-items: center; 
    gap: 60px; 
}

.craft-text h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
}

.craft-text .subtitle { 
    color: #b87333; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.8rem; 
    font-weight: 600; 
}

.craft-image img { 
    width: 100%; 
    border-radius: 20px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); 
}

/* ==========================================================================
   5. TAZELİK ZİNCİRİ (FRESHNESS CHAIN)
   ========================================================================== */
#freshness-chain { 
    background: linear-gradient(135deg, #f0f4f7 0%, #e6eef3 100%) !important; 
    padding: 100px 0; 
}

.subtitle-fresh { 
    color: #2a5a8a; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-weight: 700; 
    font-size: 0.85rem; 
    display: block; 
    margin-bottom: 10px; 
}

.fresh-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    color: #1a3a5a; 
    margin-bottom: 20px; 
}

.fresh-box-img { 
    border: 15px solid #fff; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.1); 
    border-radius: 10px; 
    width: 100%; 
}

.feature-item { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 25px; 
    align-items: flex-start; 
}

.feature-item i { 
    color: #2a5a8a; 
    font-size: 1.6rem; 
    margin-top: 5px; 
}

.feature-item strong { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.15rem; 
    color: #1a3a5a; 
    display: block; 
}

.feature-item p { 
    font-size: 0.9rem; 
    color: #555; 
}
/* ==========================================================================
   6. KULLANIM ALANLARI (USAGE AREAS)
   ========================================================================== */
.usage-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 25px; 
    margin-top: 50px; 
}

.usage-card { 
    background: #fdfaf7; 
    padding: 40px 25px; 
    border-radius: 20px; 
    text-align: center; 
    border: 1px solid #f4eee9; 
    transition: all 0.3s ease;
}

.usage-card:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(184,115,51,0.05);
}

/* ==========================================================================
   6. YASAL UYARI (LEGAL NOTICE)
   ========================================================================== */
.legal-notice { 
    margin-top: 50px; 
    padding: 25px; 
    background: #fff; 
    border-radius: 12px; 
    font-size: 0.85rem; 
    color: #666; 
    border-left: 4px solid #b87333; 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
}

/* ==========================================================================
   6. KOLEKSİYON (PRODUCTS) GRID & KART TASARIMI
   ========================================================================== */
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.product-card { 
    background: #fff; 
    padding: 25px; 
    text-align: center; 
    border-radius: 15px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.product-card img { 
    width: 100%; 
    height: 400px; 
    object-fit: cover; 
    border-radius: 10px; 
    margin-bottom: 20px; 
}

.buy-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: #b87333;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #b87333;
}

.buy-button:hover {
    background-color: transparent;
    color: #b87333 !important;
    transform: translateY(-2px);
}
/* ==========================================================================
   7. MODAL (OSMANLI MİRASI - HİKAYE PENCERESİ)
   ========================================================================== */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow-y: auto; 
    background-color: rgba(44, 24, 16, 0.9); 
    backdrop-filter: blur(5px); 
}

.modal-content { 
    background-color: #f4e4d4; 
    background-image: url("https://www.transparenttextures.com/patterns/old-map.png"); 
    margin: 50px auto; 
    padding: 50px; 
    border-radius: 20px; 
    width: 90%; 
    max-width: 800px; 
    position: relative; 
    border: 1px solid #d4b494; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal-illustration { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-image: url('https://www.transparenttextures.com/patterns/vintage-floral.png'); 
    opacity: 0.1; 
    pointer-events: none; 
}

/* Modal İçindeki Özel Süsleme (Ornament) */
.ornament-divider { 
    width: 150px; 
    height: 30px; 
    margin: 20px auto; 
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 10 Q 25 0, 50 10 T 100 10" fill="none" stroke="%23b87333" stroke-width="1"/></svg>'); 
    background-repeat: no-repeat; 
    background-position: center; 
}

.modal-highlight-box { 
    background: rgba(255, 255, 255, 0.4); 
    border: 1px dashed #b87333; 
    padding: 25px; 
    border-radius: 12px; 
    margin: 25px 0; 
}

.close-modal { 
    position: absolute; 
    right: 25px; 
    top: 20px; 
    font-size: 35px; 
    color: #4a2c2a; 
    cursor: pointer; 
    z-index: 2; 
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #b87333;
}
/* ==========================================================================
   8. FOOTER (YENİLENMİŞ LÜKS TASARIM)
   ========================================================================== */
.footer { 
    padding: 60px 0 40px; 
    background: #fdfaf7; 
    background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
    color: #4a2c2a; 
    text-align: center; 
    border-top: 1px solid rgba(184, 115, 51, 0.2);
}

.footer h3 { 
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #b87333;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer p { 
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.social-links a { 
    display: inline-block;
    background: #fff !important; 
    border: 1px solid #b87333;
    color: #b87333 !important; 
    padding: 10px 30px; 
    border-radius: 50px; 
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.social-links a:hover {
    background: #b87333 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   8. WHATSAPP FIXED BUTTON (SABİT İLETİŞİM)
   ========================================================================== */
.whatsapp-fixed { 
    position: fixed; 
    bottom: 40px; 
    right: 0; 
    background: #25d366; 
    color: #fff !important; 
    padding: 15px 25px; 
    border-radius: 30px 0 0 30px; 
    text-decoration: none; 
    z-index: 9999; 
    display: flex; /* Script ile görünür yapılacak */
    align-items: center; 
    gap: 10px; 
    box-shadow: -2px 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.whatsapp-fixed:hover {
    padding-right: 35px;
    background: #20ba5a;
}
/* ==========================================================================
   9. MOBİL UYUMLULUK (RESPONSIVE) - KRİTİK DÜZELTMELER
   ========================================================================== */

/* TABLET & KÜÇÜK LAPTOPLAR (992px Altı) */
@media (max-width: 992px) {
    .menu-toggle { 
        display: block; 
        order: 4; 
    }
    
    .header-right-group {
        gap: 10px;
    }

    /* Mobilde kalabalığı önlemek için e-posta/instagram yazılarını gizle */
    .meta-link span {
        display: none;
    }

    .nav-container { 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: #fff; 
        max-height: 0; 
        overflow: hidden; 
        transition: 0.4s ease; 
        box-shadow: 0 5px 10px rgba(0,0,0,0.1); 
        z-index: 1500;
    }
    
    .nav-container.active { 
        max-height: 500px; 
        padding: 20px 0; 
    }
    
    .nav-links { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
    }
    
    /* Ürünleri mobilde 2 sütun yap (çok daralmasınlar) */
    .products-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }
}

/* STANDART TELEFONLAR (768px Altı) */
@media (max-width: 768px) {
    .section-padding { padding: 40px 15px !important; }
    
    /* Başlıkların devleşmesini engelle */
    .hero-title { font-size: 1.8rem !important; line-height: 1.3; }
    .hero-logo-img-hero { height: 35px; }
    .section-title { font-size: 1.6rem !important; }
    .why-text { font-size: 2.2rem !important; }
    
    /* GRID YAPILARINI TEK SÜTUNA ZORLA (Kaymaları Önler) */
    .ritual-grid, .usage-grid, .craft-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    /* Ürünleri artık tek sütuna düşür (Resimler küçülmesin) */
    .products-grid {
        grid-template-columns: 1fr !important;
        padding: 0 10px;
    }

    /* Zanaat & Tazelik Bölümleri (Görsel Odaklı Akış) */
    .craft-grid {
        display: flex !important;
        flex-direction: column !important; /* Önce resim sonra yazı */
        text-align: center;
    }

    #freshness-chain .craft-grid { flex-direction: column !important; }

    .craft-image img {
        width: 100% !important;
        max-width: 300px;
        margin: 0 auto 15px;
    }
}
/* ==========================================================================
   10. MİKRO EKRANLAR & GÖRSEL KESİNLİK (FINAL)
   ========================================================================== */

@media (max-width: 768px) {
    /* Ritüel Resimlerinin Formunu Koru */
    .ritual-img { 
        height: 320px !important; 
        width: 100% !important; 
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    /* Ürün Kartı Görsellerinin Ezilmesini Engelle */
    .product-card {
        max-width: 340px;
        margin: 0 auto;
        padding: 20px;
    }

    .product-card img {
        height: auto !important;
        aspect-ratio: 1 / 1 !important; /* Resimlerin kare formunu korur */
        object-fit: cover;
    }

    /* Modal (Hikaye) Mobilde Okunabilirlik */
    .modal-content {
        width: 95% !important;
        margin: 20px auto;
        padding: 30px 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Footer Meta Bilgilerini Gizle (Kalabalığı Önler) */
    .header-meta { 
        display: flex !important; /* Artık gizli değil, görünür */
        gap: 8px;                 /* İkonlar birbirine yaklaşsın */
        margin-right: 5px;        /* Dil bayrağına çok yapışmasın */
    }
    .meta-link {
        width: 25px; 
        height: 25px; 
    }
    .meta-link i {
        font-size: 1rem; /* Masaüstünden bir tık daha küçük */
    }
}

/* ÇOK KÜÇÜK EKRANLAR (480px VE ALTI) */
@media (max-width: 480px) {
    .hero-title { 
        font-size: 1.5rem !important; 
    }
    
    .buy-button { 
        width: 100%; 
        display: block; 
        text-align: center; 
        padding: 15px; 
    }

    .royal-text {
        font-size: 1.3rem !important;
    }
}

/* ==========================================================================
   FINAL: ROSALURE PRESTİJ DOKUNUŞLARI
   ========================================================================== */
::selection {
    background-color: #b87333;
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fcfaf8;
}

::-webkit-scrollbar-thumb {
    background: #d4b494;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b87333;
}
/* ==========================================================================
   11. RTL (SAĞDAN SOLA) DESTEĞİ - ARAPÇA İÇİN (EKSİK PARÇA)
   ========================================================================== */
[dir="rtl"] body { text-align: right; direction: rtl; }
[dir="rtl"] .header-flex, [dir="rtl"] .nav-links, [dir="rtl"] .header-right-group { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { padding-right: 0; }
[dir="rtl"] .header-meta { margin-right: 0; margin-left: 10px; }
[dir="rtl"] .accordion-header { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .accordion-header span { margin-left: 0; margin-right: 10px; }
[dir="rtl"] .accordion-header .fa-chevron-down { margin-right: auto; margin-left: 0; }
[dir="rtl"] .feature-item { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .feature-item i { margin-right: 0; margin-left: 20px; }
[dir="rtl"] .legal-notice { border-left: none; border-right: 4px solid #b87333; text-align: right; }
[dir="rtl"] .legal-notice i { margin-left: 15px; }
[dir="rtl"] .footer { text-align: center; } /* Footer ortalı kalsın */
[dir="rtl"] .whatsapp-fixed { right: auto; left: 0; border-radius: 0 30px 30px 0; flex-direction: row-reverse; }
[dir="rtl"] .whatsapp-fixed:hover { padding-right: 25px; padding-left: 35px; }
[dir="rtl"] .close-modal { right: auto; left: 25px; }
.cookie-bar {
    position: fixed;
    bottom: -100px; /* Başlangıçta gizli */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid #b87333; /* Bakır rengi detay */
    padding: 15px 0;
    z-index: 9999;
    transition: bottom 0.5s ease;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-bar.show {
    bottom: 0;
}

.cookie-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-bar {
    position: fixed;
    bottom: -100%; /* DÜZELTME: -100px yerine -100% yaptık. Artık tamamen gizlenir. */
    left: 0;
}

.cookie-btn {
    background: #b87333;
    color: white;
    border: none;
    padding: 8px 25px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background: #8b5a2b;
}

@media (max-width: 768px) {
    .cookie-flex { flex-direction: column; text-align: center; }
}