#main:before { display: none !important; }
#main { padding-top: 0 !important; padding-bottom: 100px !important; }
body.is-preload:before { display: none !important; }

/* 2. HEADER & FOOTER (MEKANİK DÜZELTME) */
/* Alt Menü Barı */

/* --- HEADER HİZALAMA YAMASI (GÜNCELLENDİ: Daha İnce ve Tam Ortalanmış) --- */
#header {
    /* KONUM VE BOYUT */
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 60px !important; /* 70px'ten 60px'e düşürdük (Daha ince ve zarif) */
    z-index: 50 !important;

    /* HİZALAMA SİHİRBAZI */
    display: flex !important;
    justify-content: space-between !important; /* Biri en sağa biri en sola */
    align-items: center !important;            /* DİKEYDE TAM ORTALA */
    padding: 0 40px !important;                /* Kenarlardan nefes payı */

    /* GÖRÜNÜM */
    background-color: rgba(225, 215, 200, 0.95) !important;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05) !important;
    border-top: 1px solid rgba(0,0,0,0.05) !important;
}

/* Logoyu ve Menüyü Kusursuz Ortalamak İçin Kilit Ayarları */
#header h1, #header nav {
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    
    /* İç elemanları da esnek kutu yapıp barın yüksekliğine eşitliyoruz */
    display: flex !important;
    align-items: center !important;
    height: 100% !important; 
}

/* Marka İsminin (Logonun) Gizli Boşluklarını Ezme */
#header h1 a {
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
}
/* Açılan Panel (About/Contact) */
/* Açılan Panel (About/Contact) - TAM EKRAN DÜZELTMESİ */
/* --- YENİ FOOTER (HAYALET BUTON YOK EDİCİ) --- */
#footer {
    /* KONUM: En altta olsun */
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    top: auto !important; /* Yukarı yapışmasını engelle */
    
    /* BOYUT: Kapalıyken SIFIR (İşte sır bu) */
    width: 100% !important;
    height: 0 !important; 
    
    /* GÖRÜNÜM */
    background-color: rgba(225, 215, 200, 0.98) !important;
    z-index: 99999 !important;
    
    /* GİZLEME: Taşan her şeyi (butonu) sakla */
    overflow: hidden !important; 
    
    /* ANİMASYON */
    transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2) !important;
}

/* MENÜ AÇILINCA (Active olunca) */
#footer.active, 
#footer:target {
    height: 60vh !important; /* Yarıya kadar açıl */
    overflow-y: auto !important;
}

/* Mobilde biraz daha uzun olsun */
@media screen and (max-width: 768px) {
    #footer.active, #footer:target {
        height: 85vh !important;
    }
}
/* Eski tema kalıntılarını temizle */
#header:before, #header:after, #footer:before, #footer:after {
    display: none !important; 

}

/* Yazı ve İkon Renkleri (Okunabilirlik) */
#header *, #footer *, #footer .copyright, #footer a, #header a, h2, h3, p, label, strong {


    color: #1a1a1a !important;
    border-color: #1a1a1a !important;
    text-shadow: none !important;

}
#header img, #footer img { filter: none !important; }

/* 3. BUTON DÜZELTME (Siyah Kutu ve Kalın Çerçeve İptali) */
#header nav ul li a, 
#header a.button, 
#footer a.button,
button, 
.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    background-color: transparent !important; /* Arkası şeffaf */
    background-image: none !important;
    box-shadow: inset 0 0 0 1px #1a1a1a !important; /* Sadece incecik bir çerçeve */


    color: #1a1a1a !important;

    border: none !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}




/* Butonun üzerine gelince */
#header nav ul li a:hover, 
#header a.button:hover,
#footer a.button:hover {
    background-color: #1a1a1a !important; /* Siyah dolgu */
    color: #e1d7c8 !important; /* Kum rengi yazı */
    box-shadow: none !important;
}




/* 4. MODAL WRAPPER (Zoom Effect) */
.modal-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(18, 18, 18, 0.98);
    z-index: 100000 !important; /* Panelden bile üstte */
}
.modal-flex-container { display: flex; width: 100%; height: 100%; }
.modal-image-view {
    flex: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.modal-image-view img {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}
.modal-details-bar {
    flex: 3;
    background: #e8e4da;
    padding: 60px 40px;
    color: #222;
    overflow-y: auto;
    border-left: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}
.close-modal {
    position: absolute;
    top: 25px; right: 35px;
    font-size: 32px; color: #fff;
    cursor: pointer; z-index: 100003;
}
.modal-details-bar h3, .modal-details-bar p, .modal-details-bar strong { color: #000000 !important; }


/* Modal Geçiş Animasyonu */
#gallery-modal {
    display: none; 
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%; height: 100dvh;
}
#gallery-modal.open {
    opacity: 1;
    transform: scale(1);
}

/* 5. MAIN GRID (Resimler ve Yeşil Çizgi Temizliği) */
#main {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
article.thumb {
    position: relative !important;
    width: 100% !important;
    padding-bottom: 100% !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    animation: galleriaFadeIn 0.8s ease-out forwards;
    opacity: 0;
    /* Yeşil Çizgi Silici */
    border: none !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
}
article.thumb a, article.thumb a img {
    position: absolute !important;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1) !important;
    /* Yeşil Çizgi Silici V2 */
    border: none !important;
    outline: none !important;

}
article.thumb a:focus { outline: none !important; }
article.thumb a:hover img { transform: scale(1.05); }

/* 6. MOBİL VE TABLET AYARLARI */




@media screen and (max-width: 980px) {
    .modal-flex-container { flex-direction: column !important; overflow-y: auto !important; height: 100vh !important; }
    .modal-image-view { flex: none !important; width: 100% !important; height: auto !important; min-height: 50vh; }
    .modal-details-bar { flex: none !important; width: 100% !important; height: auto !important; padding: 40px 25px !important; overflow-y: visible !important; }
    #main { grid-template-columns: repeat(1, 1fr) !important; }






}

@media screen and (max-width: 736px) {
    #footer .inner.split { display: block !important; }
    #footer .inner.split > div { width: 100% !important; margin-bottom: 40px; }
    #footer { padding: 40px 20px !important; overflow-y: auto !important; }
    #footer .inner { padding: 0 !important; }
    #main { padding-bottom: 150px !important; }
    #header h1 { font-size: 0.8em !important; }
}

/* 7. PACKAGE SELECTOR STYLES */
.package-selector { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; width: 100%; }
.package-option { display: flex !important; align-items: center; padding: 20px; border: 1.5px solid #1a1a1a; cursor: pointer; transition: all 0.3s ease; position: relative; background: transparent; text-decoration: none !important; }
.package-option input[type="radio"] { appearance: none; -webkit-appearance: none; display: none; }
.checkmark { height: 22px; width: 22px; background-color: transparent; border: 1.5px solid #1a1a1a; border-radius: 50%; margin-right: 15px; position: relative; flex-shrink: 0; display: inline-block; }
.package-option input[type="radio"]:checked ~ .checkmark::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; border-radius: 50%; background: #1a1a1a; }
.package-option:has(input[type="radio"]:checked) { background: rgba(26, 26, 26, 0.05); border-width: 2px; border-color: #000; }
.package-details { flex-grow: 1; display: flex; flex-direction: column; text-align: left; }
.package-title { font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: 1em; color: #1a1a1a; display: block; }
.package-desc { font-size: 0.8em; opacity: 0.8; margin-top: 5px; color: #1a1a1a; display: block; }
.package-price { font-weight: 800; font-size: 1.2em; margin-left: auto; padding-left: 15px; color: #1a1a1a; }

/* 8. CHECKOUT BUTTON */
.checkout-btn { padding: 0 !important; width: 100% !important; height: 60px !important; display: flex !important; justify-content: center !important; align-items: center !important; background-color: #1a1a1a !important; color: #d4cbba !important; margin-top: 20px !important; border: none !important; outline: none !important; font-weight: 800 !important; font-size: 1.1em !important; letter-spacing: 2px !important; text-transform: uppercase !important; text-decoration: none !important; line-height: 1 !important; cursor: pointer !important; transition: all 0.3s ease !important; }
.checkout-btn:hover { background-color: #333 !important; transform: translateY(-2px); }

/* 9. TYPOGRAPHY */
h1, h2, h3, h4, strong, b, .package-title { font-family: 'Playfair Display', serif !important; letter-spacing: 1px !important; }
body, p, li, span, a, button, input, .package-desc, .package-price { font-family: 'Inter', sans-serif !important; font-weight: 400 !important; }
#header h1, #header h1 a, #header h1 strong { font-family: 'Playfair Display', serif !important; font-weight: 700 !important; text-transform: none !important; }
.checkout-btn, button { font-family: 'Inter', sans-serif !important; font-weight: 800 !important; }

/* 10. GİZLEME (Pansumanlar) */
#footer .closer, .poptrox-closer, div[class*="closer"], #sidebar-panel:not(.active) .close-btn { display: none !important; }
/* --- 11. HAMBURGER MENÜ (3 ÇİZGİ) STİLİ --- */

/* O 3 Çizgili İkonun Kendisi */
#header nav ul li a.fa-bars {
    border: none !important;      /* Çerçeveyi/Kutuyu tamamen kaldır */
    box-shadow: none !important;  /* İnce çizgiyi de kaldır */
    font-size: 1.6rem !important; /* İkonu biraz büyüt, ele gelsin */
    width: 45px !important;       /* Tıklama alanı geniş olsun */
    height: 45px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: #1a1a1a !important;    /* İlk başta siyah olsun */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* Yaylanarak dönsün */
}

/* Üzerine Gelince (Hover) Efekti */
#header nav ul li a.fa-bars:hover {
    transform: rotate(90deg);     /* 90 derece döndür */
    color: #c89666 !important;    /* Senin bakır rengine dönsün */
    background: transparent !important; /* Arka plan hala şeffaf kalsın */
}

/* "Menu" yazısını gizle (Sadece ikon görünsün) */
#header nav ul li a .label {
    display: none !important;
}
/* --- PREMIUM MENÜ DÜZENİ --- */
#footer .inner {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important; /* Biri tepeye, biri dibe */
    height: 100% !important;
    padding: 60px 40px !important;
}

/* Series Linkleri */
.collection-link {
    font-family: 'Playfair Display', serif !important;
    font-size: 3rem !important; /* Yazılar kocaman olsun */
    font-weight: 700 !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* Hover olunca bakır rengi */
.collection-link:hover {
    color: #c89666 !important;
    padding-left: 15px; /* Sağa kayma efekti */
}

.collection-link .arrow {
    opacity: 0; 
    margin-left: -20px; 
    transition: all 0.3s ease;
    font-size: 2rem;
}
.collection-link:hover .arrow { opacity: 1; margin-left: 20px; }

/* Alt Kısım (About/Follow) */
.menu-bottom {
    display: flex !important;
    gap: 60px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
}
.menu-bottom h3 { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: #1a1a1a; }
.menu-bottom p, .menu-bottom a { color: #555 !important; font-size: 0.9rem; border:none; }
/* Panelin içindeki üst kısıma biraz nefes payı ver */
.menu-collections {
    margin-top: 80px !important; /* Üstten boşluk bırak ki ferah dursun */
}
/* --- ÇIKIŞ BUTONU (NOKTA ATIŞI DÜZELTME) --- */
.close-menu-btn {
    /* Konumlandırma: Sağ üst köşeye sabitle */
    position: absolute !important;
    top: 40px !important;
    right: 40px !important;
    
    /* Görünüm: Buton Havası Ver */
    display: inline-block !important;
    padding: 12px 30px !important;
    border: 2px solid #1a1a1a !important; /* Kalın çerçeve */
    border-radius: 50px !important;       /* Oval (Pill) Şekil */
    background: transparent !important;
    
    /* Yazı Ayarları */
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    z-index: 100005 !important;
    transition: all 0.3s ease !important;
}

/* Üzerine gelince (Hover) */
.close-menu-btn:hover {
    background-color: #1a1a1a !important;
    color: #e1d7c8 !important; /* İçi siyah, yazısı bej olsun */
    transform: rotate(0deg) !important; /* Dönmeyi iptal ettim, sabit dursun */
}
/* --- ÇIKIŞ BUTONU (ID İLE ZORLAMA - FORCE FIX) --- */
#force-close-btn {
    /* KONUM: Sağ Üst */
    position: absolute !important;
    top: 40px !important;
    right: 40px !important;
    z-index: 1000000 !important;

    /* GÖRÜNÜM: Buton Şekli */
    display: flex !important;           /* Kutu gibi davran */
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    padding: 12px 30px !important;      /* İç boşluk */
    
    /* KENARLIK ve RENK */
    border: 2px solid #1a1a1a !important; /* Kalın çerçeve */
    border-radius: 50px !important;       /* Oval kenarlar */
    background-color: transparent !important;
    
    /* YAZI TİPİ */
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    letter-spacing: 2px !important;
    color: #1a1a1a !important;
    
    /* ETKİLEŞİM */
    cursor: pointer !important;          /* El işareti çıksın */
    pointer-events: auto !important;     /* Tıklamayı garantiye al */
    transition: all 0.3s ease !important;
}

/* ÜZERİNE GELİNCE (HOVER) */
#force-close-btn:hover {
    background-color: #1a1a1a !important;
    color: #e1d7c8 !important;           /* Yazı rengi değişsin */
    transform: translateY(-2px);         /* Hafif zıplasın */
}

/* MOBİL AYARI */
@media screen and (max-width: 768px) {
    #force-close-btn {
        top: 25px !important;
        right: 25px !important;
        padding: 8px 20px !important;
      font-size: 0.7rem !important;
    }
} /* <--- BU EKSİK! Media query'yi kapatır. */
/* --- BULANIKLIK İPTAL (ANTI-BLUR) --- */
body.is-menu-visible #wrapper,
body.is-modal-visible #wrapper,
#wrapper.blur,
#header,
#footer,
.modal-wrapper {
    -webkit-filter: none !important;
    filter: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transform: none !important; /* Glitch yapan 3D efektini de kapatır */
    transition: none !important; /* Takılmayı önler */
}
/* --- KARARTMA İPTAL (ANTI-DIMMING) --- */
/* Menü açılınca arkaya atılan siyah perdeyi yok et */
#wrapper:after, 
#main:after, 
body:after,
body.is-menu-visible #wrapper:after,
body.is-modal-visible #wrapper:after,
body.is-menu-visible #main:after {
    display: none !important;       /* Perdeyi kaldır */
    background: transparent !important; /* Rengini sil */
    opacity: 0 !important;          /* Görünmez yap */
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}
/* =========================================
   FİNAL DÜZELTME YAMASI (TİTANYUM V3)
   ========================================= */

/* 1. RESİM BAŞLIKLARINI ZORLA BEYAZ YAP VE GÖSTER */
#main article.thumb h2,
#main article.thumb p,
#main article.thumb span {
    color: #ffffff !important;        /* BEMBEYAZ */
    opacity: 1 !important;            /* GÖRÜNÜR */
    visibility: visible !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9) !important; /* Okunsun diye siyah gölge */
    z-index: 100 !important;          /* En üstte */
    font-family: 'Playfair Display', serif !important;
    font-weight: 400 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border: none !important;
}

/* 2. CLOSE BUTONUNU "MENÜ KAPALIYKEN" ÖLDÜR */
/* İster class olsun ister ID, hepsini hedefliyoruz */
.close-menu-btn,
#force-close-btn,
#final-close-btn {
    display: none !important; /* Başlangıçta KESİN GİZLE */
}

/* 3. SADECE MENÜ AÇIKKEN BUTONU GÖSTER */
#footer.active .close-menu-btn,
#footer.active #force-close-btn,
#footer.active #final-close-btn,
#footer:target .close-menu-btn {
    display: inline-block !important; /* Menü açılınca ortaya çık */
}
/* --- KAYIP MENÜ VE LOGO KURTARMA TİMİ --- */

/* 1. Footer KAPALIYKEN onu en arkaya gönder */
#footer:not(.active) {
    z-index: -1 !important;      /* Header'ın altına gir */
    pointer-events: none !important; /* Tıklamayı engelle */
    opacity: 0 !important;       /* Görünmez ol */
}

/* 2. Footer AÇIKKEN en öne gel */
#footer.active {
    z-index: 99999 !important;   /* Her şeyin üstüne çık */
    pointer-events: auto !important;
    opacity: 1 !important;
}

/* 3. Header içindeki öğeleri (Logo, Menü) ZORLA GÖSTER */
#header h1, 
#header nav, 
#header .fa-bars,
#header a {
    position: relative !important;
    z-index: 1000 !important;    /* Kendi içinde yüksek olsun */
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;    /* Kaybolduysa geri getir */
}

/* 4. Hamburger İkonunun Fontunu Koru (Kare çıkmasın) */
#header nav ul li a.fa-bars:before {
    font-family: "FontAwesome" !important;
}
/* --- ADIM 1: KAYIP İKONU KURTARMA --- */
#header nav ul li a.fa-bars {
    text-decoration: none !important;
    border: none !important;
}
/* --- HAMBURGER MENÜ KURTARMA (FINAL) --- */

/* 1. Linkin KENDİSİNİ görünür bir kutu yap */
#header nav ul li a.fa-bars {
    display: block !important;
    width: 50px !important;       /* Tıklama alanı genişliği */
    height: 50px !important;      /* Tıklama alanı yüksekliği */
    position: relative !important;
    z-index: 10000 !important;    /* EN ÜSTE ÇIKAR (Senin tespitin) */
    background-color: transparent !important;
    
    /* SVG İKONU DİREKT BURAYA KOYUYORUZ (Before ile uğraşma) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z' fill='%231a1a1a'/%3E%3C/svg%3E") !important;
    
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 24px auto !important; /* İkon boyutu */
    
    /* Eski kenarlıkları sil */
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

/* 2. Eski Font/Kare Kalıntılarını SİL (Sorun çıkaran buydu) */
#header nav ul li a.fa-bars:before,
#header nav ul li a.fa-bars:after {
    content: none !important;
    display: none !important;
}

/* 3. Hover (Üzerine Gelince) Rengi Değişsin ve Dönsün */
#header nav ul li a.fa-bars:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z' fill='%23c89666'/%3E%3C/svg%3E") !important;
    transform: rotate(90deg); /* Havalı bir dönüş efekti */
    transition: transform 0.3s ease !important;
}
/* --- HEADER HİZALAMA VE ORTALAMA (FİNAL) --- */

/* 1. Barın Kendisini Düzenle */
#header {
    /* Flexbox Sistemini Aç */
    display: flex !important;
    justify-content: space-between !important; /* Biri en sağa, biri en sola */
    align-items: center !important;            /* DİKEYDE TAM ORTALA (Kritik Komut) */
    
    /* Boyut ve Boşluklar */
    height: 80px !important;       /* Bar yüksekliği (İstediğin kadar artırabilirsin) */
    padding: 0 40px !important;    /* Kenarlardan boşluk */
    
    /* Konum */
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 50 !important;
    background-color: rgba(225, 215, 200, 0.98) !important;
}

/* 2. Logo (Sol Taraf) Ayarı */
#header h1 {
    margin: 0 !important;          /* Gereksiz boşlukları sil */
    padding: 0 !important;
    line-height: 1 !important;     /* Satır yüksekliğini sıkılaştır */
    display: flex !important;      /* Kendi içinde de hizalı olsun */
    align-items: center !important;
    height: 100% !important;       /* Bar boyunca uzansın */
    top: auto !important;          /* Eski kodlardan kalanları iptal et */
}

/* 3. Menü İkonu (Sağ Taraf) Ayarı */
#header nav {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important; /* İkonu ortala */
    height: 100% !important;
    top: auto !important;
}

/* 4. Linkin Kendisi (İkon Kapsayıcısı) */
#header nav ul li a.fa-bars {
    margin-top: 0 !important;      /* Yukarıdan ekstra itmeyi engelle */
    transform: none !important;    /* Kayma varsa düzelt (Hover hariç) */
}
/* --- HEADER HİZALAMA VE ORTALAMA (FİNAL) --- */

/* 1. Barın Kendisini Düzenle */
#header {
    /* Flexbox Sistemini Aç */
    display: flex !important;
    justify-content: space-between !important; /* Biri en sağa, biri en sola */
    align-items: center !important;            /* DİKEYDE TAM ORTALA (Kritik Komut) */
    
    /* Boyut ve Boşluklar */
    height: 80px !important;       /* Bar yüksekliği (İstediğin kadar artırabilirsin) */
    padding: 0 40px !important;    /* Kenarlardan boşluk */
    
    /* Konum */
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 50 !important;
    background-color: rgba(225, 215, 200, 0.98) !important;
}

/* 2. Logo (Sol Taraf) Ayarı */
#header h1 {
    margin: 0 !important;          /* Gereksiz boşlukları sil */
    padding: 0 !important;
    line-height: 1 !important;     /* Satır yüksekliğini sıkılaştır */
    display: flex !important;      /* Kendi içinde de hizalı olsun */
    align-items: center !important;
    height: 100% !important;       /* Bar boyunca uzansın */
    top: auto !important;          /* Eski kodlardan kalanları iptal et */
}

/* 3. Menü İkonu (Sağ Taraf) Ayarı */
#header nav {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important; /* İkonu ortala */
    height: 100% !important;
    top: auto !important;
}

/* 4. Linkin Kendisi (İkon Kapsayıcısı) */
#header nav ul li a.fa-bars {
    margin-top: 0 !important;      /* Yukarıdan ekstra itmeyi engelle */
    transform: none !important;    /* Kayma varsa düzelt (Hover hariç) */
}
/* --- MENÜ AÇIKKEN SAYFA KAYDIRMAYI ENGELLE --- */

/* Menü görünür olduğunda (is-menu-visible sınıfı eklendiğinde) */
body.is-menu-visible {
    overflow: hidden !important; /* Sayfanın taşmasını ve kaydırılmasını engelle */
    height: 100vh !important;    /* Yüksekliği ekran boyutuyla sınırla */
    position: fixed !important;  /* Sayfayı olduğu yere sabitle */
    width: 100% !important;      /* Genişliği koru */
}
/* --- MENÜ İÇİNDEKİ BAŞLIKLARI DÜZENLE --- */

/* "Series 1, Series 2..." Başlıkları */
#menu .links li a {
    font-family: 'HappyTime', serif !important; /* Senin zarif fontun */
    font-size: 2.5rem !important;               /* Boyutu küçülttük (Eskisi muhtemelen 4rem+ idi) */
    line-height: 1.2 !important;                /* Satır aralığını daralttık */
    letter-spacing: 1px !important;             /* Harf aralığı */
    border-bottom: none !important;             /* Altındaki çizgiyi kaldırdık (Daha temiz görünüm) */
    padding: 10px 0 !important;                 /* Alt-üst boşluk */
    display: block !important;                  /* Blok element yap */
}

/* Üzerine gelince (Hover) efekti */
#menu .links li a:hover {
    color: #c89666 !important; /* Bakır rengi */
    transform: translateX(10px); /* Hafifçe sağa kayma efekti */
    transition: all 0.3s ease !important; /* Yumuşak geçiş */
}

/* "COLLECTIONS" gibi üst başlıklar */
#menu > ul > li > h3 {
    font-size: 1rem !important;
    letter-spacing: 3px !important;
    margin-bottom: 1rem !important;
    color: #555 !important; /* Biraz daha silik bir renk */
}
/* --- CLOSE BUTONUNU SAĞ ÜSTE SABİTLE --- */

/* CLOSE butonunun kendisi */
#menu .close {
    position: absolute !important; /* Menüye göre konumlandır */
    top: 30px !important;          /* Yukarıdan 30px boşluk */
    right: 30px !important;        /* Sağdan 30px boşluk */
    z-index: 10001 !important;     /* Her şeyin en üstünde olsun */
    
    /* Butonun görsel ayarları (Zaten güzeldi, bozmayalım) */
    display: inline-block !important;
    border: 2px solid rgba(0,0,0,0.1) !important; /* İnce çerçeve */
    border-radius: 30px !important;               /* Oval köşe */
    padding: 0.5rem 1.5rem !important;            /* İç boşluk */
    font-family: sans-serif !important;           /* Okunaklı düz font */
    font-size: 0.8rem !important;
    letter-spacing: 2px !important;
    text-decoration: none !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
}

/* Üzerine gelince (Hover) çerçevesi belirginleşsin */
#menu .close:hover {
    border-color: #c89666 !important;
    color: #c89666 !important;
}

/* Menü içeriğinin butona binmemesi için üstten boşluk bırak */
#menu .inner {
    padding-top: 100px !important; /* Butonun altından başlasın */
    max-width: none !important;    /* Genişlik sınırlamasını kaldır */
    width: 80% !important;         /* Ekranın %80'ini kaplasın */
    margin: 0 auto !important;     /* Ortala */
}
