/* ===== FONTS ===== */
@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/assets/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayRoman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/assets/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/assets/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayMediu.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/assets/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/assets/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayThin.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* ===== GLOBAL ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Neue Haas Grotesk', sans-serif !important;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
}

/* Bootstrap font override */
body,
.navbar,
.nav-link,
.btn,
input,
button,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Neue Haas Grotesk', sans-serif !important;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== ANIMATION LAYER ===== */
#animation-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
    transition: none;
}

#animation-layer.fade-out {
    opacity: 0;
    pointer-events: none;
}

#canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== SITE CONTENT ===== */
#site-content {
    opacity: 0;
    transition: opacity 0.8s ease;
}

#site-content.visible {
    opacity: 1;
}

/* ===== TOPBAR ===== */
.topbar {
    background: #FBFBFB;
    padding: 9px 0;
    font-size: 13px;
    font-weight: 400;
    color: #1a1a2e;
    letter-spacing: 0.3px;
}

.topbar a {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #1a1a2e;
}

/* ===== SITE HEADER ===== */
.sticky-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header {
    background: #fff;
}

/* Header icons */
.header-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 400;
    color: #BCBDC0;
    transition: color 0.2s;
}

.header-icon-link:hover {
    color: #000;
}

/* Logo */
.logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-logo-img {
    height: 52px;
    width: auto;
}

/* Lang switcher */
.lang-switcher {
    font-size: 13px;
}

.lang-link {
    color: #BCBDC0;
    transition: color 0.2s;
    font-size: 13px;
    font-weight: 400;
    position: relative;
    padding-bottom: 3px;
}

.lang-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.lang-link.active {
    color: #000;
    font-weight: 500;
}

.lang-link.active::after {
    transform: scaleX(1);
}

.lang-link:hover {
    color: #000;
}

.lang-link:hover::after {
    transform: scaleX(1);
}

.lang-sep {
    color: #BCBDC0;
    font-weight: 400;
}

/* Search */
.header-search {
    border-bottom: 1.5px solid #000 !important;
    padding-bottom: 3px;
}

.header-search input {
    border: none;
    outline: none;
    font-family: 'Neue Haas Grotesk', sans-serif;
    font-size: 13px;
    color: #1a1a2e;
    width: 130px;
    background: transparent;
}

.header-search input::placeholder {
    color: #bbb;
}

/* ===== MAIN NAV ===== */
.main-nav {
    background: #fff;
}

.main-nav ul {
    gap: 0;
}

.main-nav li a {
    display: block;
    padding: 13px 15px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.9px;
    color: #0E123B;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
}

.main-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: #BB834C;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.main-nav li a:hover {
    color: #000;
}

.main-nav li a:hover::after {
    transform: scaleX(1);
}

.main-nav .nav-highlight {
    color: #BB834C !important;
    font-weight: 400;
}

.main-nav .nav-highlight:hover {
    color: #000 !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    line-height: 0;
}

.hero-carousel {
    width: 100%;
    height: calc(100vh - 136px);
    min-height: 520px;
    border-radius: 200px 0 200px 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 0 10px 10px;
    }

    .hero-carousel {
        height: 4vh !important;
        min-height: 320px !important;
        max-height: 320px !important;
        border-radius: 48px 0 48px 0;
    }

    .hero-sub {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 6px;
    }

    .hero-title {
        font-size: clamp(36px, 9vw, 60px);
        margin-bottom: 4px;
    }

    .hero-desc {
        font-size: 12px;
        letter-spacing: 4px;
        margin-bottom: 18px;
    }

    .hero-btn {
        padding: 8px 20px 8px 8px;
        gap: 10px;
    }

    .hero-btn span {
        font-size: 15px;
    }

    .hero-btn-img {
        width: 36px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 4vh !important;
        min-height: 280px !important;
        max-height: 280px !important;
        border-radius: 36px 0 36px 0;
    }

    .hero-title {
        font-size: clamp(30px, 8vw, 52px);
    }

    .hero-sub {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .hero-desc {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }

    .hero-btn {
        padding: 7px 16px 7px 7px;
        gap: 8px;
    }

    .hero-btn span {
        font-size: 14px;
    }

    .hero-btn-img {
        width: 30px;
        height: 20px;
    }
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1e1530;
}

/* Fallback gradient when image missing */
.hero-slide-bg:not([style*="url"]) {
    background: linear-gradient(135deg, #2a1f3d 0%, #1a1a2e 50%, #3d2b1f 100%);
}

.hero-slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.carousel-caption {
    position: absolute !important;
    top: 10% !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 0 !important;
    text-align: center;
    color: #0E123B;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #231F20;
    margin-bottom: 8px;
    line-height: 1.4;
}

.hero-title {
    font-size: clamp(60px, 9vw, 120px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
    color: #231F20;
}

.hero-title em {
    font-style: italic;
    font-family: 'Bodoni 72', Georgia, 'Times New Roman', serif;
    color: #231F20;
}

.hero-desc {
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: #231F20;
    line-height: 1.4;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    color: #0E123B;
    border-radius: 100px;
    padding: 10px 26px 10px 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
    color: #0E123B;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.hero-btn span {
    font-size: clamp(15px, 1.8vw, 22px);
    font-weight: 300;
    font-style: normal;
    font-family: 'Bodoni 72', Georgia, 'Times New Roman', serif;
    letter-spacing: 0;
    line-height: 1;
    font-style: italic;
}

.hero-btn span em {
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.hero-btn-img {
    width: 52px;
    height: 36px;
    border-radius: 0;
    object-fit: contain;
}

/* Carousel controls — override Bootstrap */
.hero-ctrl {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.hero-ctrl:hover {
    background: rgba(255, 255, 255, 0.28) !important;
}

.carousel-control-prev.hero-ctrl {
    left: 20px;
}

.carousel-control-next.hero-ctrl {
    right: 20px;
}

/* Indicators */
.hero-indicators {
    bottom: 22px;
}

.hero-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.4) !important;
    margin: 0 4px;
    transition: background 0.2s, transform 0.2s;
    opacity: 1 !important;
}

.hero-indicators .active {
    background: #fff !important;
    transform: scale(1.35);
}

/* ===== MEGA MENU ===== */
.has-mega {
    position: static;
}

.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background: #FBFBFB;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 500;
    padding: 32px 0 36px;
}

.has-mega:hover .mega-menu {
    display: block;
}

.mega-inner {
    width: 100%;
}

/* Sekme butonları */
.mega-tabs {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #e0ddd8;
    margin-bottom: 32px;
}

.mega-tab {
    background: none;
    border: none;
    outline: none;
    font-family: 'Neue Haas Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.7px;
    color: #BCBDC0;
    padding: 0 0 12px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

.mega-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #BB834C;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.mega-tab.active {
    color: #0E123B;
    font-weight: 700;
}

.mega-tab:hover {
    color: #0E123B;
}

.mega-tab.active::after {
    transform: scaleX(1);
}

/* Paneller */
.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
}

/* Kartlar */
.mega-card {
    text-align: left;
    cursor: pointer;
    flex: 0 0 auto;
    width: 16.666%;
}

.mega-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 14px;
}

.mega-img-wrap.no-img {
    background: #f5f3f0;
    border-radius: 4px;
}

.mega-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mega-card p {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0E123B;
    margin: 0;
    transition: color 0.2s;
}

.mega-card:hover p {
    color: #BB834C;
}

/* nav pozisyon için header relative olmalı */
.site-header {
    position: relative;
}

/* ===== MOBİL HEADER ===== */
@media (max-width: 991px) {


    .mobile-logo {
        height: 38px;
    }

    /* Hamburger */
    .mobile-hamburger {
        background: none;
        border: none;
        padding: 4px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        width: 32px;
    }

    .mobile-hamburger span {
        display: block;
        height: 1.5px;
        background: #0E123B;
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
    }

    .mobile-hamburger.open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .mobile-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-hamburger.open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    /* Arama butonu */
    .mobile-search-btn {
        background: none;
        border: none;
        padding: 4px;
        color: #0E123B;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    /* Açılır arama */
    .mobile-search-bar {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #fff;
    }

    .mobile-search-bar.open {
        max-height: 60px;
    }

    .mobile-search-inner {
        padding: 12px 0;
        border-bottom: 1.5px solid #0E123B;
    }

    .mobile-search-bar input {
        border: none;
        outline: none;
        font-family: 'Neue Haas Grotesk', sans-serif;
        font-size: 14px;
        color: #0E123B;
        background: transparent;
    }

    .mobile-search-bar input::placeholder {
        color: #bbb;
    }

    /* Slide-down menü */
    .mobile-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background: #fff;
    }

    .mobile-nav.open {
        max-height: 600px;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0.8px;
        color: #0E123B;
        border-bottom: 1px solid #f0ede8;
        transition: color 0.2s;
    }

    .mobile-nav-link:hover {
        color: #BB834C;
    }

    .mobile-nav-arrow {
        font-size: 18px;
        color: #BCBDC0;
        font-weight: 400;
    }

    .nav-highlight-mobile {
        color: #BB834C !important;
    }

    .mobile-nav-footer {
        border-top: 1px solid #f0ede8;
    }

    /* Desktop nav'ı gizle */
    .main-nav {
        display: none;
    }

    /* Hero yüksekliği mobile uyarla */
    .hero-carousel {
        height: 70vh;
        min-height: 380px;
    }

    .hero-title {
        font-size: clamp(48px, 13vw, 80px);
    }

    .hero-sub {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .hero-btn {
        font-size: 13px;
        padding: 9px 20px 9px 10px;
    }

    .hero-btn-img {
        width: 32px;
        height: 32px;
    }
}

/* MOBİL ALT MENÜ */
@media (max-width: 991px) {
    .mobile-sub {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f9f7f5;
    }

    .mobile-sub.open {
        max-height: 400px;
    }

    .mobile-sub-link {
        display: block;
        padding: 12px 32px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.7px;
        color: #0E123B;
        border-bottom: 1px solid #ede9e4;
        transition: color 0.2s;
    }

    .mobile-sub-link:hover {
        color: #BB834C;
    }

    .mobile-has-sub>.mobile-nav-link .mobile-nav-arrow {
        display: inline-block;
        transition: transform 0.3s;
    }

    .mobile-has-sub.open>.mobile-nav-link .mobile-nav-arrow {
        transform: rotate(90deg);
    }
}

.hero-caption-white,
.hero-caption-white * {
    color: #fff !important;
}

.hero-caption-white .hero-desc {
    text-transform: none;
}

.caption-white,
.caption-white .hero-sub,
.caption-white .hero-title,
.caption-white .hero-title em,
.caption-white .hero-desc {
    color: #fff !important;
}

/* ===== SEARCH OVERLAY ===== */
.header-search-btn {
    background: none;
    border: none;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 3px;
    cursor: pointer;
    font-family: 'Neue Haas Grotesk', sans-serif;
    font-size: 13px;
    color: #BCBDC0;
    transition: color 0.2s, border-bottom-color 0.2s;
}

.header-search-btn:hover {
    color: #000;
    border-bottom-color: #000;
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 8888;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.search-overlay-close {
    position: absolute;
    top: 28px;
    right: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    transition: color 0.2s;
}

.search-overlay-close:hover {
    color: #000;
}

.search-overlay-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 24px;
    text-align: center;
}

.search-overlay-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #BCBDC0;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.search-overlay-input-wrap {
    position: relative;
    margin-bottom: 28px;
}

.search-overlay-input-wrap input {
    width: 100%;
    border: none;
    outline: none;
    font-family: 'Neue Haas Grotesk', sans-serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 300;
    color: #0E123B;
    background: transparent;
    text-align: center;
    padding-bottom: 12px;
}

.search-overlay-input-wrap input::placeholder {
    color: #BCBDC0;
}

.search-overlay-line {
    height: 1px;
    background: #0E123B;
    transform: scaleX(0.4);
    transition: transform 0.4s ease;
}

.search-overlay.open .search-overlay-line {
    transform: scaleX(1);
}

.search-overlay-hints {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.search-overlay-hints span {
    font-size: 12px;
    color: #BCBDC0;
    letter-spacing: 1px;
}

.search-overlay-hints a {
    font-size: 12px;
    color: #0E123B;
    border-bottom: 1px solid #BCBDC0;
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.search-overlay-hints a:hover {
    border-color: #BB834C;
    color: #BB834C;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 480px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 32px 40px 32px 32px;
    z-index: 7777;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hide {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.cookie-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #BCBDC0;
    transition: color 0.2s;
    padding: 4px;
}

.cookie-close:hover {
    color: #000;
}

.cookie-title {
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.5px;
    color: #0E123B;
    margin-bottom: 20px;
}

.cookie-desc {
    font-size: 17px;
    font-weight: 600;
    color: #BCBDC0;
    line-height: 1.55;
    margin-bottom: 32px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.cookie-btn {
    background: none;
    border: none;
    border-bottom: 1.5px solid currentColor;
    padding-bottom: 4px;
    cursor: pointer;
    font-family: 'Neue Haas Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.cookie-accept {
    color: #0E123B;
}

.cookie-accept:hover {
    color: #BB834C;
}

.cookie-manage {
    color: #BCBDC0;
}

.cookie-manage:hover {
    color: #0E123B;
}

/* ===== KATEGORİLER ===== */
.kategoriler-section {
    background: #F5F5F5;
    padding: 56px 0 64px;
}

.kategoriler-header {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 40px;
}

.kategoriler-title {
    font-size: 32px;
    font-weight: 400;
    color: #0E123B;
    margin: 0;
}

.kategoriler-all {
    font-size: 13px;
    font-weight: 400;
    color: #0E123B;
    border-bottom: 1px solid #0E123B;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.kategoriler-all:hover {
    color: #BB834C;
    border-color: #BB834C;
}

.kategoriler-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.kategoriler-grid::-webkit-scrollbar {
    display: none;
}

.kat-card {
    flex: 0 0 calc(20% - 13px);
    min-width: 180px;
    text-decoration: none;
    color: inherit;
}

.kat-card-img {
    background: #fff;
    border-radius: 8px;
    aspect-ratio: 232 / 300;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: box-shadow 0.2s;
}

.kat-card:hover .kat-card-img {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.kat-card-img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.kat-card:hover .kat-card-img img {
    transform: scale(1.05);
}

.kat-card-name {
    font-size: 14px;
    font-weight: 400;
    color: #0E123B;
    margin: 0;
}

@media (max-width: 768px) {
    .kategoriler-section {
        padding: 36px 0 44px;
    }

    .kategoriler-title {
        font-size: 24px;
    }

    .kategoriler-grid {
        flex-wrap: wrap;
        overflow-x: unset;
    }

    .kat-card {
        flex: 0 0 calc(50% - 8px);
        min-width: unset;
    }

    .kat-card:last-child:nth-child(odd) {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== DUYGU ZANAATLA ===== */
.duygu-section {
    background: #F9F9F9;
    padding: 60px 0;
    overflow: hidden;
}

.duygu-inner {
    display: flex;
    align-items: stretch;
    min-height: 560px;
}

.duygu-content-wrap {
    display: flex;
    align-items: stretch;
    flex: 1;
    gap: 8px;
    padding-left: max(24px, calc((100vw - 1270px) / 2));
    padding-right: 8px;
}

.duygu-left {
    flex: 0 0 26%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 40px 20px 0;
    gap: 32px;
}

.duygu-title {
    font-size: clamp(36px, 3.8vw, 60px);
    font-weight: 1;
    font-style: italic;
    font-family: 'Neue Haas Grotesk', sans-serif !important;
    color: #1a1a3e;
    line-height: 1.15;
    margin: 0;
}

.duygu-title em {
    font-family: 'Bodoni 72', Georgia, 'Times New Roman', serif !important;
    font-style: italic;
}

.duygu-text-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.duygu-sanat {
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    color: #0E123B;
    margin: 0;
}

.duygu-desc {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    line-height: 1.7;
    margin: 0;
    max-width: 280px;
}

.duygu-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.5px;
    color: #0E123B;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
    align-self: flex-start;
}

.duygu-btn:hover {
    color: #BB834C;
    border-color: #BB834C;
    border-color: #BB834C;
}

.duygu-mid {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 4px 4px 0;
}

.duygu-mid-img {
    width: 190px;
    height: 207px;
    overflow: hidden;
    flex-shrink: 0;
}

.duygu-mid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.duygu-mid-img:hover img {
    transform: scale(1.04);
}

.duygu-right {
    flex: 0 0 950px;
    height: 844px;
    overflow: hidden;
}

.duygu-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .duygu-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .duygu-inner {
        flex-direction: column;
        min-height: unset;
    }

    .duygu-content-wrap {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        gap: 24px;
    }

    .duygu-left {
        flex: unset;
        padding: 0;
        gap: 20px;
    }

    .duygu-title {
        font-size: clamp(28px, 7vw, 44px);
    }

    .duygu-mid {
        flex: unset;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        padding: 0;
    }

    .duygu-mid-img {
        width: calc(50% - 3px);
        height: 160px;
        flex-shrink: 0;
    }

    .duygu-right {
        flex: unset;
        width: 100%;
        height: 320px;
        border-radius: 0;
        margin-top: 6px;
    }
}

/* ===== CETAŞ VİDEO ===== */
.cetas-section {
    background: #000;
}

.cetas-inner {
    position: relative;
    aspect-ratio: 1920 / 900;
    overflow: hidden;
}

.cetas-video {
    position: absolute;
    left: 0;
    top: -15%;
    width: 100%;
    height: 130%;
    object-fit: cover;
    will-change: transform;
}

.cetas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.cetas-inner .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.cetas-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 20px;
}

.cetas-sub {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #BB834C;
    margin: 0;
}

.cetas-title {
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 1px;
}

.cetas-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 4px;
    align-self: flex-start;
    transition: color 0.2s, border-color 0.2s;
}

.cetas-btn:hover {
    color: #BB834C;
    border-color: #BB834C;
}

@media (max-width: 768px) {
    .cetas-inner {
        aspect-ratio: 850 / 900;
    }

    .cetas-content {
        gap: 14px;
    }
}

/* ===== MARQUEE ===== */
.marquee-section {
    background: #fff;
    padding: 20px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    white-space: nowrap;
}

.marquee-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: #1a1a3e;
}

.marquee-sep {
    font-size: 16px;
    color: #BB834C;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* ===== MÜCEVHERATİN ZİRVESİ ===== */
.zirvesi-section {
    background: #F9F9F9;
    padding: 72px 0 64px;
}

.zirvesi-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.zirvesi-title {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 400;
    color: #0E123B;
    margin: 0;
    letter-spacing: 0.5px;
}

.zirvesi-desc {
    font-size: 16px;
    font-weight: 400;
    color: #0E123B;
    margin: 0;
}

.zirvesi-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #0E123B;
    margin: 8px 0 0;
}

.zirvesi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.zirvesi-card {
    text-decoration: none;
    color: inherit;
}

.zirvesi-card-img {
    border-radius: 64px 0 64px 0;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    margin-bottom: 12px;
}

.zirvesi-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.zirvesi-card:hover .zirvesi-card-img img {
    transform: scale(1.04);
}

.zirvesi-card-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0E123B;
    margin: 0;
}

@media (max-width: 768px) {
    .zirvesi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== EN UZUN EVET ===== */
.evet-section {
    background: #F9F9F9;
    padding: 80px 0;
}

.evet-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.evet-img {
    flex: 0 0 715px;
    height: 750px;
    border-radius: 0 90px 0 90px;
    overflow: hidden;
}

.evet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evet-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.evet-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a3e;
    margin: 0;
}

.evet-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 400;
    color: #1a1a3e;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.1;
}

.evet-quote {
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    color: #0E123B;
    margin: 0;
    line-height: 1.6;
}

.evet-desc {
    font-size: 26px;
    font-weight: 200;
    color: #0E123B;
    margin: 0;
    line-height: 1.6;
}

.evet-btn {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a3e;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    align-self: flex-start;
    transition: color 0.2s, border-color 0.2s;
}

.evet-btn:hover {
    color: #BB834C;
    border-color: #BB834C;
}

@media (max-width: 991px) {
    .evet-section {
        padding: 48px 0;
    }

    .evet-inner {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .evet-img {
        flex: unset;
        width: 100%;
        height: 420px;
        border-radius: 0 32px 0 32px;
    }

    .evet-label {
        font-size: 11px;
    }

    .evet-title {
        font-size: clamp(22px, 6vw, 32px);
    }

    .evet-quote {
        font-size: 14px;
    }

    .evet-desc {
        font-size: 14px;
    }

    .evet-btn {
        font-size: 13px;
    }

    .evet-content {
        gap: 12px;

        padding: 0 16px;
    }


}

@media (max-width: 768px) {
    .evet-img {
        height: 320px;
        border-radius: 0 24px 0 24px;
    }
}

/* ===== ÖZELLİKLER ===== */
.ozellik-section {
    background: #F9F9F9;
    padding: 20px 0;
}

.ozellik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.ozellik-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 40px 32px;
}

.ozellik-item:last-child {
    border-right: none;
}

.ozellik-baslik {
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: #1a1a3e;
    margin: 0;
    letter-spacing: 0.3px;
}

.ozellik-desc {
    font-size: 15px;
    font-weight: 400;
    color: #231F20;
    margin: 0;
    line-height: 1.6;
    max-width: 260px;
}

@media (max-width: 768px) {
    .ozellik-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    .ozellik-item {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding: 28px 16px;
    }

    .ozellik-item:last-child {
        grid-column: 1 / -1;
        border-bottom: none;
    }
}

/* ===== ECLIPSE KOLEKSİYON ===== */
.eclipse-section {
    background: #000;
}

.eclipse-inner {
    position: relative;
    aspect-ratio: 1920 / 730;
    overflow: hidden;
}

.eclipse-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eclipse-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.eclipse-inner .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.eclipse-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 16px;
}

.eclipse-sub {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #BB834C;
    margin: 0;
}

.eclipse-title {
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 1px;
}

.eclipse-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 4px;
    align-self: flex-start;
    transition: color 0.2s, border-color 0.2s;
}

.eclipse-btn:hover {
    color: #BB834C;
    border-color: #BB834C;
}

@media (max-width: 768px) {
    .eclipse-inner {
        aspect-ratio: 850 / 900;
    }
}

/* ===== LOTUS KOLEKSİYON ===== */
.lotus-section {
    background: #F9F9F9;
    padding: 20px 0;
}

.lotus-inner {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.lotus-grid {
    display: grid;
    grid-template-columns: 295px 295px;
    grid-template-rows: 340px 340px;
    gap: 4px;
    flex-shrink: 0;
}

.lotus-product-card {
    position: relative;
    width: 295px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lotus-product-card img {
    width: 75%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.lotus-product-card:hover img {
    transform: scale(1.05);
}

.lotus-wish {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a3e;
    padding: 0;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.lotus-wish:hover {
    opacity: 1;
}

.lotus-feature {
    flex: 1;
    position: relative;
    height: 704px;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
}

.lotus-feature-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.lotus-feature-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    padding: 0 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.lotus-feature-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 1px;
}

.lotus-feature-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

.lotus-feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #fff;
    color: #1a1a3e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    align-self: center;
    transition: background 0.2s, color 0.2s;
}

.lotus-feature-btn:hover {
    background: #1a1a3e;
    color: #fff;
}

@media (max-width: 991px) {
    .lotus-inner {
        flex-direction: column;
        gap: 4px;
    }

    .lotus-feature {
        order: -1;
        flex: none;
        width: 100% !important;
        height: 650px !important;
        min-height: 650px !important;
        border-radius: 0;
    }

    .lotus-grid {
        order: 0;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
        width: 100%;
    }

    .lotus-product-card {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .lotus-feature {
        height: 650px !important;
        min-height: 650px !important;
    }

    .lotus-grid {
        grid-template-rows: 160px 160px;
    }

    .lotus-product-card {
        height: 160px;
    }

    .lotus-feature-title {
        font-size: 28px;
    }

    .lotus-feature-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
}

/* ===== PIRLANTA WALLPAPER ===== */
.pirlanta-section {
    background: #000;
}

.pirlanta-inner {
    position: relative;
    aspect-ratio: 1920 / 950;
    overflow: hidden;
}

.pirlanta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.pirlanta-inner .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.pirlanta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 12px;
}

.pirlanta-sub {
    font-size: 26px;
    font-weight: 200;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
}

.pirlanta-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 200;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    font-family: 'Bodoni 72', Georgia, 'Times New Roman', serif !important;
}

.pirlanta-btn {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #fff;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 4px;
    align-self: flex-start;
    transition: color 0.2s, border-color 0.2s;
}

.pirlanta-btn:hover {
    color: #BB834C;
    border-color: #BB834C;
}

@media (max-width: 768px) {
    .pirlanta-inner {
        aspect-ratio: 850 / 900;
    }
}

/* ===== GÖRÜNÜMÜ YAKALAYIM ===== */
.gornum-section {
    position: relative;
    background: #F9F9F9;
    padding: 80px 0 140px;
}

.gornum-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding-left: max(24px, calc((100vw - 1240px) / 2));
}

.gornum-baslik {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 500;
    color: #0E123B;
    margin-bottom: 40px;
    padding-left: max(24px, calc((100vw - 1240px) / 2));
}

.gornum-sol-box {
    flex: 1.1;
}

.gornum-buyuk {
    width: 100%;
    overflow: hidden;
}

.gornum-buyuk img {
    width: 100%;
    height: auto;
    display: block;
}

.gornum-sag-grid {
    flex: 1.3;
    position: relative;
    width: 520px;
    height: 560px;
    flex-shrink: 0;
}

.gornum-kart {
    position: absolute;
    overflow: hidden;
    background: #eee;
    width: 210px;
    height: 260px;
}

.gornum-kart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gornum-kart:hover img {
    transform: scale(1.05);
}

.kart-1 {
    left: 0;
    top: 0;
}

.kart-2 {
    right: 120px;
    top: 20px;
}

.kart-3 {
    left: 218px;
    top: 290px;
}

.kart-4 {
    right: 10px;
    top: 300px;
}

.gornum-kart-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.gornum-kart-isim {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .gornum-section {
        padding: 60px 0 80px;
    }

    .gornum-wrapper {
        flex-direction: column;
        gap: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .gornum-baslik {
        padding-left: 20px;
    }

    .gornum-sag-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        height: auto;
    }

    .gornum-kart {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 210/260;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
}

@media (max-width: 576px) {
    .gornum-sag-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gornum-kart {
        aspect-ratio: 1 / 1.2;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0E123B;
    color: #fff;
}

.footer-top {
    padding: 60px 0 48px;
}

.footer-top-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo {
    height: 46px;
    width: auto;
    display: block;
}

.footer-logo-year {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-align: center;
}

.footer-email-form {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    flex: 1;
    max-width: 600px;
    justify-content: flex-end;
}

.footer-email-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 8px 0;
    width: 320px;
    outline: none;
    font-family: inherit;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-email-input:focus {
    border-bottom-color: #fff;
}

.footer-email-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 8px 0;
    white-space: nowrap;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.2s;
}

.footer-email-btn:hover {
    border-color: #BB834C;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 28px;
}

.footer-nav {
    padding: 52px 0 60px;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 32px;
    row-gap: 40px;
    align-items: start;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 500;
    font-style: italic;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer-col-title--gap {
    margin-top: 36px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}

.footer-social a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom .container {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-adshub-logo {
    height: 32px;
    width: auto;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-bottom-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
}

.footer-lang {
    font-size: 11px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
        align-items: start;
    }

    .footer-col-title--gap {
        margin-top: 28px;
    }

    .footer-top-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-email-form {
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }

    .footer-email-input {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-bottom-left {
        order: 3;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }
}

/* ===== HERO2 — Zerafetin Yörüngesi (mega menu) ===== */
.mega-menu--hero2 {
    padding: 0 !important;
    background: #fff;
}

.hero2-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 40px 0;
    display: flex;
    align-items: stretch;
    gap: 0;
}

/* Sol */
.hero2-left {
    flex: 0 0 280px;
    padding-right: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 60px;
}

.hero2-title {
    font-family: 'Bodoni 72', Georgia, 'Times New Roman', serif !important;
    font-size: clamp(42px, 4.5vw, 72px);
    font-weight: 10;
    font-style: italic;
    color: #0E123B;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero2-title-alt {
    font-family: 'NHG Thin', sans-serif;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'NHG Thin';
    src: url('/assets/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayThin.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

.hero2-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.75;
    font-weight: 400;
    max-width: 240px;
}

/* Orta: Orbit */
/* Orbit = tek SVG, flex genişlir */
.hero2-orbit {
    flex: 0 0 600px;
    height: 430px;
    position: relative;
    overflow: visible;
}

.h2-ring {
    position: absolute;
    left: 178px;
    top: 140px;
    width: 244px;
    height: auto;
    z-index: 2;
}

.h2-line {
    z-index: 1;
}

.h2-lbl {
    z-index: 3;
}

.h2-line {
    position: absolute;
    height: 1px;
    background: #0E123B;
    opacity: 0.25;
    transform-origin: 0 50%;
}

.h2-line--center {
    opacity: 0.12;
}

.h2-lbl {
    position: absolute;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #0E123B;
    opacity: 0.5;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: inherit;
    padding: 6px 4px;
}

.h2-lbl:hover {
    opacity: 1;
}

/* Sağ */
.hero2-right {
    flex: 0 0 190px;
    padding-left: 40px;
    border-left: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 60px;
}

/* Header v2 nav linkleri beyaz */
.site-header--v2 .main-nav>ul>li>a {
    color: #fff;
}

.h2-panel {
    display: none;
    animation: h2PanelIn 0.25s ease;
}

@keyframes h2PanelIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero2-sub-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #bbb;
    margin-bottom: 16px;
}

.hero2-sub-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero2-sub-list li a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

.hero2-sub-list li.active a,
.hero2-sub-list li a:hover {
    color: #0E123B;
    font-weight: 500;
}

.hero2-btn {
    display: inline-block;
    background: #0E123B;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    text-decoration: none;
    border: 1px solid #0E123B;
    transition: background 0.2s, color 0.2s;
}

/* .main-nav li a ezmesin */
.mega-menu--hero2 .hero2-btn {
    display: inline-block !important;
    padding: 14px 28px !important;
    white-space: nowrap;
}

.mega-menu--hero2 .hero2-btn::after {
    display: none !important;
}

.hero2-btn:hover {
    background: transparent;
    color: #0E123B !important;
}

/* ===== MARKALAR / EVLİLİK DÜNYASI MEGA MENU ===== */

.h2-list-center {
    flex: 0 0 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 48px 40px 32px;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
}

.h2-list-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    cursor: pointer;
    opacity: 0.35;
    transition: opacity 0.2s;
    border-bottom: 1px solid rgba(14,18,59,0.07);
}
.h2-list-row:last-child { border-bottom: none; }
.h2-list-row:hover,
.h2-list-row.active { opacity: 1; }

.h2-list-num {
    font-size: 10px;
    letter-spacing: 2px;
    color: #0E123B;
    opacity: 0.4;
    width: 22px;
    flex-shrink: 0;
}

.h2-list-name {
    font-size: 22px;
    letter-spacing: 3px;
    color: #0E123B;
    font-weight: 300;
    flex: 1;
}

.h2-list-arrow {
    font-size: 14px;
    color: #BB834C;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(-6px);
}
.h2-list-row:hover .h2-list-arrow,
.h2-list-row.active .h2-list-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== MAIN NAV FONT RESPONSIVE ===== */
@media (max-width: 1280px) {
    .main-nav li a {
        font-size: 11px;
        padding: 13px 6px;
        letter-spacing: 0.7px;
    }
}

@media (max-width: 1100px) {
    .main-nav li a {
        font-size: 11px;
        padding: 13px 7px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 992px) {
    .main-nav li a {
        font-size: 10px;
        padding: 13px 6px;
        letter-spacing: 0.3px;
    }
}

/* ===== HERO2 MEGA MENU RESPONSIVE ===== */

/* 1280px altı: padding ve sol kolon küçülsün */
@media (max-width: 1280px) {
    .hero2-inner {
        padding: 32px 24px 0;
    }

    .hero2-left {
        flex: 0 0 210px;
        padding-right: 20px;
    }

    .hero2-title {
        font-size: clamp(32px, 3.5vw, 56px);
    }
}

/* 1100px altı: sol kolon gizle, orbit'i zoom ile küçült */
@media (max-width: 1100px) {
    .hero2-left {
        display: none;
    }

    .hero2-inner {
        padding: 24px 20px 0;
        justify-content: center;
    }

    .hero2-orbit {
        zoom: 0.8;
        flex: 0 0 600px;
    }

    .hero2-right {
        flex: 0 0 200px;
    }
}

/* 992px altı: main-nav zaten gizleniyor, mega menu da gizlensin */
@media (max-width: 991px) {
    .mega-menu--hero2 {
        display: none !important;
    }
}