.bade-header-sarmalayici {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
    padding: 35px 0;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bade-header-sarmalayici.sticky-aktif {
    background-color: #ffffff !important;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid #C5A059;
}

.bade-header-sarmalayici.sticky-aktif .nav-link .link-metni {
    color: #1A1C20;
}

.bade-header-sarmalayici.sticky-aktif .nav-dikey-ayirici {
    background-color: #E5E7EB;
}

.header-konteyner {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.sol-kanat {
    display: flex;
    align-items: center;
    gap: 40px; 
    height: 80px;
}

.logo-gorsel {
    height: 120px; 
    width: auto;
    transition: height 0.4s ease;
    display: block;
    object-fit: contain;
}


.bade-header-sarmalayici.sticky-aktif .logo-gorsel {
    height: 120px;
}

.nav-dikey-ayirici {
    width: 1px;
    height: 50px;
    background-color: #E5E7EB; 
    display: block;
}


.orta-navigasyon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-listesi {
    list-style: none;
    display: flex;
    gap: 45px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 30px 0; 
}

.link-metni {
    font-family: 'Manrope', sans-serif;
    font-weight: 700; 
    font-size: 0.9rem;
    text-transform: uppercase; 
    letter-spacing: 1px;
    color: var(--renk-yazi-ana, #1A1C20);
    transition: color 0.3s ease;
}


.nav-link::before {
    content: '';
    position: absolute;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--renk-altin-ana, #C5A059);
    transition: width 0.3s ease;
}

.nav-link:hover .link-metni {
    color: var(--renk-altin-ana, #C5A059);
}

.nav-link:hover::before {
    width: 100%;
}

.ok-ikonu {
    font-size: 0.7rem;
    color: #9CA3AF;
    transition: transform 0.3s ease;
}

.dropdown-tetikleyici:hover .ok-ikonu {
    transform: rotate(180deg);
    color: var(--renk-altin-ana, #C5A059);
}


.dropdown-panel {
    position: absolute;
    top: 100%; 
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: #ffffff;
    width: 1000px; 
    padding: 0; 
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.15); 
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid var(--renk-altin-ana, #C5A059); 
    z-index: 1100;
}


.dropdown-kapsayici:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.panel-izgara {
    display: grid;
    grid-template-columns: 1fr 1fr 320px; 
}

.panel-sutun {
    padding: 40px;
    border-right: 1px solid rgba(0,0,0,0.04); 
}

.panel-sutun:last-child {
    border-right: none;
    padding: 0; 
}

.sutun-baslik {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}


.sutun-baslik::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--renk-altin-ana, #C5A059);
}

.panel-listesi {
    list-style: none;
    padding: 0;
}

.panel-listesi li {
    margin-bottom: 15px;
}

.panel-listesi a {
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    transition: all 0.2s;
    display: block;
    padding-left: 0;
    border-left: 2px solid transparent;
}

.panel-listesi a:hover {
    color: #000;
    padding-left: 10px;
    border-left: 2px solid var(--renk-altin-ana, #C5A059);
}


.promo-alani {
    background-color: #1A1C20; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.promo-kart {
    padding: 40px;
    text-align: left;
    color: #fff;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.promo-alani::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 100% 0%, #333 0%, transparent 50%);
    opacity: 0.3;
}

.promo-etiket {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: var(--renk-altin-ana, #C5A059);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    margin-bottom: 20px;
    align-self: flex-start;
}

.promo-baslik {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.promo-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
    width: fit-content;
}

.promo-link:hover {
    gap: 15px;
    color: var(--renk-altin-ana, #C5A059);
    border-color: var(--renk-altin-ana, #C5A059);
}


.sag-kanat {
    display: flex;
    align-items: center;
    gap: 20px;
}


.premium-cta-butonu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0;
    background: transparent;
    text-decoration: none;
    border: 1px solid #E5E7EB; 
    transition: all 0.3s ease;
    height: 55px; 
    padding-right: 25px;
    overflow: hidden;
    position: relative;
}


.cta-ikon-kutusu {
    width: 55px;
    height: 100%;
    background: var(--renk-altin-ana, #C5A059);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}


.cta-metin-kutusu {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-ust-yazi {
    font-size: 0.65rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-alt-yazi {
    font-size: 0.9rem;
    font-weight: 800;
    color: #111; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}


.premium-cta-butonu:hover {
    background: #111; 
    border-color: #111;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.premium-cta-butonu:hover .cta-ikon-kutusu {
    background: #fff; 
    color: #111; 
}

.premium-cta-butonu:hover .cta-alt-yazi {
    color: var(--renk-altin-ana, #C5A059); 
}

.premium-cta-butonu:hover .cta-ust-yazi {
    color: rgba(255,255,255,0.5);
}


.cta-parlama-efekti { display: none; }


.hamburger-menu {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger-menu .cizgi {
    width: 35px;
    height: 3px; 
    background: #111;
    transition: 0.3s;
}


@media (max-width: 1300px) {
    .orta-navigasyon { display: none; }
    .nav-dikey-ayirici { display: none; }
    .premium-cta-butonu { display: none; }
    .hamburger-menu { display: flex; }
    body {
        padding-top: 130px; 
    }
    .header-konteyner {
        justify-content: space-between;
    }
}


.mobil-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobil-menu-wrapper.aktif {
    transform: translateX(0);
}

.mobil-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.mobil-logo { height: 120px; }

.mobil-kapat {
    background: none;
    border: none;
    font-size: 2rem;
    color: #111;
}

.mobil-icerik {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.mobil-nav-listesi {
    list-style: none;
    padding: 0;
}

.mobil-nav-listesi > li {
    border-bottom: 1px solid #f5f5f5;
}

.mobil-nav-listesi > li > a, .mobil-drop-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    padding: 20px 0;
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
}

.mobil-sub-menu {
    list-style: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #FAFAFA;
    margin: 0 -30px;
    padding-left: 30px;
}

.mobil-sub-menu li a {
    display: block;
    padding: 15px 0;
    font-size: 0.95rem;
    color: #666;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    border-bottom: 1px solid #eee;
}

.mobil-footer {
    background: #111;
    padding: 30px;
    color: #fff;
    text-align: center;
}

.mobil-hizli-arama {
    display: block;
    background: var(--renk-altin-ana, #C5A059);
    color: #fff;
    padding: 15px;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobil-sosyal-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sosyal-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.sosyal-btn:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}