/* ===== 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: 1;
}

#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);
}

/* ===== ALT HERO (Evlilik Dünyası) ===== */
.alt-hero-section {
    background: #fff;
    line-height: 0;
}

.alt-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 853;
    overflow: hidden;
}

.alt-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #fff;
}

.alt-hero-caption {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.alt-hero-quote {
    font-size: clamp(22px, 2.6vw, 40px);
    font-weight: 700;
    line-height: 0.4;
    color: #0E123B;
    margin-bottom: 22px;
}

.alt-hero-title {
    font-size: clamp(18px, 2.6vw, 34px);
    letter-spacing: 1px;
    line-height: 1.35;
    margin-bottom: 30px;
    color: #0E123B;
}

html[lang="en"] .alt-hero-title,
body.lang-en .alt-hero-title,
.alt-hero-title--en {
    font-size: clamp(22px, 3.2vw, 25px);
}

.alt-hero-title-1,
.alt-hero-title-2 {
    display: block;
}

.alt-hero-title-1 {
    font-weight: 300;
}

.alt-hero-title-2 {
    font-weight: 700;
}

.alt-hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.55);
    color: #0E123B;
    border: 1px solid rgba(14, 18, 59, 0.45);
    border-radius: 1px;
    padding: 16px 40px;
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}

/* Butonun tam ortasından aşağıya inen ince çizgi */
.alt-hero-btn::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 55px;
    background: rgba(14, 18, 59, 0.45);
}

.alt-hero-btn:hover {
    background: #0E123B;
    color: #fff;
}

@media (max-width: 991px) {

    /* Mobil & tablet portre: görsel üstte, yazı altında (üst üste bindirme yok) */
    .alt-hero {
        height: auto;
        aspect-ratio: auto;
        overflow: visible;
    }

    .alt-hero-bg {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: 1194 / 853;
    }

    .alt-hero-caption {
        position: static;
        transform: none;
        left: auto;
        top: auto;
        padding: 28px 20px 40px;
        margin: 0 auto;
    }

    .alt-hero-quote {
        margin-bottom: 14px;
    }

    .alt-hero-title {
        font-size: clamp(24px, 6.5vw, 34px);
        letter-spacing: 0.5px;
        margin-bottom: 26px;
    }

    .alt-hero-btn {
        padding: 15px 34px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .alt-hero-btn::after {
        height: 40px;
    }
}

/* ===== HEDİYE HERO (Hediye Rehberi) ===== */
.hediye-hero-section {
    background: #F7F7F6;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.hediye-hero-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 560px;
}

.hediye-hero-title {
    font-size: clamp(21px, 3.0vw, 40px);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.25;
    color: #0E123B;
    margin: 0;
}

.hediye-hero-necklace {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hediye-hero-necklace img {
    height: 560px;
    width: auto;
    display: block;
}

.hediye-hero-desc {
    font-size: 16px;
    font-weight: 100;
    letter-spacing: 1px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #0E123B;
    margin: 0;
    padding-left: 20px;
}

.hediye-hero-desc b {
    font-weight: 400;
}

@media (max-width: 991px) {
    .hediye-hero-row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        min-height: 0;
        padding: 40px 0 50px;
        gap: 24px;
    }

    .hediye-hero-title {
        order: 1;
    }

    .hediye-hero-necklace {
        order: 2;
    }

    .hediye-hero-necklace img {
        height: 360px;
    }

    .hediye-hero-desc {
        order: 3;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hediye-hero-title {
        font-size: clamp(22px, 6vw, 34px);
    }

    .hediye-hero-necklace img {
        height: 300px;
    }

    .hediye-hero-desc {
        font-size: 12px;
    }
}

/* ===== HEDİYE BULUCU (Hediye Rehberi) ===== */
.finder-section {
    padding: 90px 0 110px;
    background: #F7F7F6;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.finder-step {
    text-align: center;
}

.finder-step.is-locked {
    display: none;
}

.finder-question {
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 44px;
}

.finder-options {
    display: grid;
    gap: 16px;
}

.finder-options--3 {
    grid-template-columns: repeat(3, 1fr);
}

.finder-options--4 {
    grid-template-columns: repeat(4, 1fr);
}

.finder-option {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #D7D8E0;
    color: #3A3D55;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.finder-option:hover {
    background: #EDEDEA;
}

.finder-option.is-selected {
    background: #DBDCD8;
    border-color: #C4C5CD;
    color: #0E123B;
}

.finder-option.is-selected:hover {
    background: #DBDCD8;
}

/* Adımlar arası ayraç */
.finder-divider {
    width: 40px;
    height: 1px;
    background: #B0B2C0;
    margin: 60px auto;
}

.finder-divider.is-locked {
    display: none;
}

/* Sonuç ürünleri */
.finder-results.is-locked {
    display: none;
}

.finder-results-title {
    text-align: center;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 44px;
}

.finder-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 24px;
}

.finder-product {
    display: block;
    text-align: center;
}

.finder-product-img {
    display: block;
    width: 100%;
    aspect-ratio: 292 / 293;
    background: #fff;
    border-radius: 52px 0 52px 0;
    overflow: hidden;
    margin-bottom: 18px;
}

.finder-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.finder-product:hover .finder-product-img img {
    transform: scale(1.04);
}

.finder-product-name {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #0E123B;
    margin: 0 0 14px;
}

.finder-product-price {
    font-size: 15px;
    font-weight: 700;
    color: #0E123B;
    margin: 0 0 14px;
}

.finder-product-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6B6E80;
    border-bottom: 1px solid #B7B9C3;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.finder-product-link:hover {
    color: #0E123B;
}

/* ===== EDİTÖRYAL SEÇİM (Hediye Rehberi) ===== */
.editoryal-section {
    background: #0C0E2F;
    padding: 72px 0 84px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.editoryal-head {
    text-align: center;
    margin-bottom: 54px;
}

.editoryal-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
}

.editoryal-title {
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: 300;
    color: #fff;
    margin: 0;
}

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

.editoryal-card {
    display: block;
}

.editoryal-card-img {
    width: 100%;
    aspect-ratio: 11 / 10;
    overflow: hidden;
    margin-bottom: 22px;
    background: #11143a;
}

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

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

.editoryal-card-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.editoryal-card-text {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

@media (max-width: 768px) {
    .editoryal-section {
        padding: 56px 0 64px;
    }

    .editoryal-head {
        margin-bottom: 38px;
    }

    .editoryal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== KARARSIZ MISINIZ? (Hediye Rehberi) ===== */
.help-section {
    padding: 90px 0 100px;
    background: #fff;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.help-inner {
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}

.help-title {
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 16px;
}

.help-desc {
    font-size: 15px;
    font-weight: 300;
    color: #4A4D63;
    margin-bottom: 40px;
}

.help-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}

.help-btn--dark {
    background: #0E123B;
    color: #fff;
}

.help-btn--dark:hover {
    background: #1a2050;
    color: #fff;
}

.help-btn--outline {
    background: transparent;
    color: #0E123B;
    border: 1px solid #0E123B;
}

.help-btn--outline:hover {
    background: #0E123B;
    color: #fff;
}

/* ===== DEĞER BANDI ===== */
.deger-band-section {
    background: #fff;
    padding-top: 60px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.deger-band {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: conic-gradient(from 210deg at 50% 30%, #F2F2FB, #F2F2F7, #F2F2FB, #F2F2F7, #F2F2FB);
}

.deger-band-star {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: auto;
    z-index: 2;
}

.deger-band-content {
    margin-top: 30px;
}

.deger-band-quote {
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 20px;
}

.deger-band-caption {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4A4D63;
    margin: 0;
}

@media (max-width: 768px) {
    .deger-band {
        min-height: 320px;
    }

    .deger-band-star {
        width: 90px;
    }
}

/* ===== İLETİŞİM / MAĞAZALAR ===== */
.magaza-section {
    background: #fff;
    padding: 80px 0 110px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.magaza-head {
    text-align: center;
    margin-bottom: 60px;
}

.magaza-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8A8C99;
    margin-bottom: 18px;
}

.magaza-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0E123B;
    margin-bottom: 26px;
}

.magaza-divider {
    display: inline-block;
    width: 44px;
    height: 1px;
    background: #B0B2C0;
    margin-bottom: 30px;
}

.magaza-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #4A4D63;
    margin: 0;
}

.magaza-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.magaza-card {
    width: calc((100% - 60px) / 3);
    display: flex;
    flex-direction: column;
}

.magaza-img {
    width: 100%;
    aspect-ratio: 47 / 30;
    background-size: cover;
    background-position: center;
    background-color: #1a1f47;
}

.magaza-body {
    border: 1px solid #DCDDE3;
    border-top: none;
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.magaza-name {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0E123B;
    margin-bottom: 16px;
}

.magaza-adres {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #4A4D63;
    margin-bottom: 20px;
    flex-grow: 1;
}

.magaza-link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0E123B;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.magaza-link:hover {
    border-bottom-color: #0E123B;
}

@media (max-width: 991px) {
    .magaza-grid {
        gap: 24px;
    }

    .magaza-card {
        width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .magaza-section {
        padding: 56px 0 70px;
    }

    .magaza-card {
        width: 100%;
    }
}

/* ===== ÖZEL RANDEVU FORMU ===== */
.randevu-section {
    background: #fff;
    padding: 40px 0 110px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.randevu-inner {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
    align-items: start;
}

.randevu-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    line-height: 1.25;
    color: #0E123B;
    margin-bottom: 26px;
}

.randevu-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #4A4D63;
    margin-bottom: 44px;
}

.randevu-info {
    margin-bottom: 26px;
}

.randevu-info-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8A8C99;
    margin-bottom: 8px;
}

.randevu-info-val {
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    color: #0E123B;
    margin: 0;
    transition: opacity 0.2s;
}

a.randevu-info-val:hover {
    opacity: 0.6;
}

/* Form */
.randevu-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.randevu-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.randevu-field {
    display: flex;
    flex-direction: column;
}

.randevu-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6B6E80;
    margin-bottom: 12px;
}

.randevu-input {
    width: 100%;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #D7D8DE;
    border-radius: 0;
    font-family: 'Neue Haas Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #0E123B;
    outline: none;
    transition: border-color 0.2s;
}

.randevu-input:focus {
    border-color: #0E123B;
}

.randevu-input::placeholder {
    color: #A9AAB6;
}

.randevu-select {
    appearance: none;
    -webkit-appearance: none;
    color: #A9AAB6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230E123B' stroke-width='1.3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.randevu-select:valid,
.randevu-select option {
    color: #0E123B;
}

.randevu-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Form uyarıları */
.randevu-alert {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 2px;
    margin-bottom: 4px;
}

.randevu-alert--ok {
    background: #EAF3EC;
    color: #1E6B37;
    border: 1px solid #BEDDC6;
}

.randevu-alert--err {
    background: #FBEDEC;
    color: #A5342B;
    border: 1px solid #EACBC8;
}

/* KVKK onayı */
.randevu-kvkk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.randevu-kvkk input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: #B0834C;
    flex-shrink: 0;
    cursor: pointer;
}

.randevu-kvkk span {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: #8A8C99;
}

.randevu-kvkk a {
    color: #B0834C;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.randevu-kvkk a:hover {
    color: #9a7140;
}

.randevu-btn {
    align-self: flex-start;
    min-width: 430px;
    max-width: 100%;
    padding: 20px 40px;
    margin-top: 6px;
    background: #B0834C;
    color: #fff;
    border: none;
    font-family: 'Neue Haas Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s;
}

.randevu-btn:hover {
    background: #9a7140;
}

@media (max-width: 991px) {
    .randevu-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

@media (max-width: 575px) {
    .randevu-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .randevu-btn {
        min-width: 0;
        width: 100%;
    }
}

/* ===== YASAL SAYFALAR ===== */
.legal-section {
    background: #fff;
    padding: 70px 0 100px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.legal-inner {
    margin: 0 auto;
}

.legal-eyebrow {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8A8C99;
    margin-bottom: 16px;
}

.legal-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 24px;
}

.legal-divider {
    display: block;
    width: 48px;
    height: 2px;
    background: #B0834C;
    margin-bottom: 40px;
}

.legal-content {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: #3A3D55;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 500;
    color: #0E123B;
    margin: 40px 0 14px;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #0E123B;
    margin: 32px 0 12px;
}

.legal-content p {
    margin: 0 0 18px;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #B0834C;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content strong {
    font-weight: 500;
    color: #0E123B;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 50px 0 70px;
    }

    .legal-content {
        font-size: 15px;
    }
}

/* ===== TARİHÇE HERO ===== */
.tarihce-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.tarihce-hero {
    position: relative;
    z-index: 1;
    background: transparent;
    padding-bottom: 60px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.tarihce-elips {
    position: absolute;
    top: 430px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1900px, 150vw);
    z-index: 0;
    pointer-events: none;
    line-height: 0;
}

.tarihce-elips img {
    width: 100%;
    display: block;
}

.tarihce-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.tarihce-hero-title {
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 500;
    letter-spacing: 1px;
    color: #0E123B;
    margin: 40px 0 30px;
}

.tarihce-hero-logo {
    display: block;
    width: clamp(220px, 26vw, 360px);
    height: auto;
    margin: 0 auto;
}

.tarihce-hero-foot {
    margin-top: 40px;
}

.tarihce-hero-sub {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 20px;
}

.tarihce-hero-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #6B6E80;
    margin: 0;
}

.tarihce-hero-desc b {
    font-weight: 600;
    color: #0E123B;
}

/* ===== ZAMAN ÇİZELGESİ ===== */
.tarihce-timeline-section {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 40px 0 90px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.tarihce-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Ortadaki dikey çizgi */
.tarihce-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: #D7D8DE;
}

.tarihce-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 40px 0;
}

/* Çizgi üzerindeki nokta */
.tarihce-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #0E123B;
    z-index: 1;
}

.tarihce-text {
    padding: 0 10px;
}

.tarihce-media {
    padding: 0 10px;
}

.tarihce-img {
    width: 100%;
    aspect-ratio: 570 / 250;
    background-size: cover;
    background-position: center;
    background-color: #1a1f47;
}

.tarihce-year {
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 300;
    color: #0E123B;
    margin-bottom: 14px;
}

.tarihce-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8A8C99;
    margin-bottom: 18px;
}

.tarihce-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #4A4D63;
    margin: 0;
}

/* Metin solda: metin sağa hizalı, görsel sağda */
.tarihce-item--left .tarihce-text {
    order: 1;
    text-align: right;
}

.tarihce-item--left .tarihce-img {
    order: 2;
}

/* Metin sağda: görsel solda, metin sağda sola hizalı */
.tarihce-item--right .tarihce-img {
    order: 1;
}

.tarihce-item--right .tarihce-text {
    order: 2;
    text-align: left;
}

/* ===== TARİHÇE CTA ===== */
.tarihce-cta-section {
    background: #fff;
    padding: 40px 0 110px;
    text-align: center;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.tarihce-cta-title {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 40px;
}

.tarihce-cta-btns {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.tarihce-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}

.tarihce-cta-btn--gold {
    background: #B0834C;
    color: #fff;
}

.tarihce-cta-btn--gold:hover {
    background: #9a7140;
    color: #fff;
}

.tarihce-cta-btn--outline {
    background: transparent;
    color: #0E123B;
    border: 1px solid #C9CAD2;
    padding: 18px 50px;
}

.tarihce-cta-btn--outline:hover {
    background: #0E123B;
    border-color: #0E123B;
    color: #fff;
}

@media (max-width: 768px) {
    .tarihce-elips {
        top: 250px;
        width: 200vw;
    }

    .tarihce-hero-logo {
        width: clamp(170px, 44vw, 240px);
    }

    /* Timeline tek sütun, çizgi solda */
    .tarihce-timeline::before {
        left: 7px;
    }

    .tarihce-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 0 24px 34px;
    }

    .tarihce-item::after {
        left: 7px;
        top: 40px;
    }

    .tarihce-item--left .tarihce-text,
    .tarihce-item--right .tarihce-text {
        order: 1;
        text-align: left;
    }

    .tarihce-item--left .tarihce-media,
    .tarihce-item--right .tarihce-media {
        order: 2;
    }

    .tarihce-text,
    .tarihce-media {
        padding: 0;
    }

    .tarihce-cta-btns {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .tarihce-cta-btn {
        width: 100%;
    }
}

/* ===== NFC İLETİŞİM MERKEZİ ===== */
.nfc-hub-section {
    background: #fff;
    padding: 70px 0 40px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.nfc-hub-head {
    text-align: center;
    margin-bottom: 48px;
}

.nfc-hub-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8A8C99;
    margin-bottom: 16px;
}

.nfc-hub-title {
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0E123B;
    margin-bottom: 24px;
}

.nfc-hub-divider {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #B0B2C0;
}

.nfc-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.nfc-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid #D7D8DE;
    color: #0E123B;
    font-family: 'Neue Haas Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.nfc-link:hover {
    background: #F4F4F6;
    color: #0E123B;
}

.nfc-share-wrap {
    max-width: 860px;
    margin: 16px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.nfc-share-btn {
    grid-column: 2;
    min-height: 58px;
    background: #B0834C;
    color: #fff;
    border: none;
    font-family: 'Neue Haas Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s;
}

.nfc-share-btn:hover {
    background: #9a7140;
}

/* Mağazalar */
.nfc-store-section {
    background: #fff;
    padding: 50px 0 40px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.nfc-store-title {
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 40px;
}

.nfc-store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Tek kalan (5.) şubeyi ortala */
.nfc-store-grid .nfc-store:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    margin: 0 auto;
}

.nfc-store {
    display: grid;
    grid-template-columns: 150px 1fr;
    border: 1px solid #DCDDE3;
}

.nfc-store-img {
    background-size: cover;
    background-position: center;
    background-color: #1a1f47;
}

.nfc-store-body {
    padding: 22px 24px;
}

.nfc-store-name {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0E123B;
    margin-bottom: 12px;
}

.nfc-store-adres {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: #4A4D63;
    margin-bottom: 16px;
}

.nfc-store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.nfc-store-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0E123B;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.nfc-store-links a:hover {
    border-bottom-color: #0E123B;
}

.nfc-store-line {
    height: 1px;
    background: #C4C5CD;
    margin-top: 50px;
}

/* NFC Modaller (banka / fatura) */
.nfc-modal {
    border: none;
    border-radius: 4px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.nfc-modal .modal-header {
    border-bottom: 1px solid #ECECEF;
    padding: 22px 26px;
}

.nfc-modal .modal-title {
    font-size: 18px;
    font-weight: 500;
    color: #0E123B;
}

.nfc-modal .modal-body {
    padding: 10px 26px 26px;
}

.nfc-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #ECECEF;
}

.nfc-info-row:last-child {
    border-bottom: none;
}

.nfc-info-row>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nfc-info-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8A8C99;
}

.nfc-info-val {
    font-size: 15px;
    font-weight: 400;
    color: #0E123B;
}

.nfc-copy {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid #B0834C;
    color: #B0834C;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.nfc-copy:hover {
    background: #B0834C;
    color: #fff;
}

@media (max-width: 768px) {

    .nfc-links,
    .nfc-share-wrap {
        grid-template-columns: 1fr;
    }

    .nfc-share-btn {
        grid-column: 1;
    }

    .nfc-store-grid {
        grid-template-columns: 1fr;
    }

    /* Mobil: görsel üstte, metin altta */
    .nfc-store {
        grid-template-columns: 1fr;
    }

    .nfc-store-img {
        aspect-ratio: 16 / 9;
    }

    /* Tek kalan kart mobilde tam genişlik */
    .nfc-store-grid .nfc-store:last-child:nth-child(odd) {
        width: 100%;
        margin: 0;
    }
}

/* ===== CAFÉ LUMIÈRE HERO ===== */
.lumiere-hero-section {
    background: #000;
    line-height: 0;
}

.lumiere-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 800;
    overflow: hidden;
}

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

.lumiere-hero-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.lumiere-hero-label {
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

.lumiere-hero-logo {
    width: clamp(220px, 24vw, 360px);
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .lumiere-hero {
        aspect-ratio: 3 / 4;
    }

    .lumiere-hero-logo {
        width: clamp(180px, 55vw, 260px);
    }

    .lumiere-hero-label {
        letter-spacing: 2px;
    }
}

/* ===== LUMIÈRE HİKAYE ===== */
.lumiere-story-section {
    background: #fff;
    padding: 90px 0 110px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.lumiere-story-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.lumiere-story-title {
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 40px;
}

.lumiere-story-p {
    font-size: clamp(15px, 1.3vw, 17px);
    font-weight: 300;
    line-height: 1.8;
    color: #4A4D63;
    margin-bottom: 30px;
}

.lumiere-story-p:last-child {
    margin-bottom: 0;
}

.lumiere-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    align-items: start;
}

/* Sağ blok aşağı kaydırılmış */
.lumiere-story-item--right {
    margin-top: 120px;
}

.lumiere-story-img {
    width: 100%;
    aspect-ratio: 610 / 500;
    overflow: hidden;
    margin-bottom: 28px;
    background: #ecedea;
}

.lumiere-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lumiere-story-item:hover .lumiere-story-img img {
    transform: scale(1.03);
}

.lumiere-story-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0E123B;
    margin-bottom: 18px;
}

.lumiere-story-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #4A4D63;
    max-width: 420px;
    margin: 0;
}

@media (max-width: 768px) {
    .lumiere-story-section {
        padding: 56px 0 70px;
    }

    .lumiere-story-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .lumiere-story-item--right {
        margin-top: 0;
    }

    .lumiere-story-text {
        max-width: none;
    }
}

/* ===== MARKALAR HERO ===== */
.marka-hero-section {
    background: #fff;
    padding: 0 0 30px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.marka-hero-line {
    width: 100%;
    height: 1px;
    background: #D9DAE0;
}

.marka-hero-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    min-height: 520px;
}

.marka-hero-title {
    font-size: clamp(35px, 3.4vw, 50px);
    font-weight: 100;
    line-height: 1.25;
    color: #0E123B;
    margin: 0;
}

.marka-hero-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-self: start;
    margin-top: -40px;
}

.marka-hero-visual img {
    height: clamp(400px, 52vw, 580px);
    width: auto;
    display: block;
}

.marka-hero-desc {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #0E123B;
    margin: 0;
}

.marka-hero-desc b {
    font-weight: 300;
}

.marka-hero-cta {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.marka-hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #0E123B;
    border: 1px solid rgba(14, 18, 59, 0.45);
    border-radius: 1px;
    padding: 15px 40px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}

.marka-hero-btn::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 46px;
    background: rgba(14, 18, 59, 0.45);
}

.marka-hero-btn:hover {
    background: #0E123B;
    color: #fff;
}

@media (max-width: 991px) {
    .marka-hero-row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 28px;
        min-height: 0;
        padding: 40px 0 30px;
    }

    .marka-hero-title {
        order: 1;
    }

    .marka-hero-visual {
        order: 2;
    }

    .marka-hero-desc {
        order: 3;
        max-width: 420px;
    }

    .marka-hero-visual img {
        height: 340px;
    }
}

/* ===== RANDEVU CTA (Markalar) ===== */
.marka-cta-section {
    background: #fff;
    padding: 90px 0 110px;
    text-align: center;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.marka-cta-title {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 44px;
}

.marka-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 520px;
    max-width: 100%;
    padding: 22px 40px;
    background: #B0834C;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.25s;
}

.marka-cta-btn:hover {
    background: #9a7140;
    color: #fff;
}

@media (max-width: 768px) {
    .marka-cta-section {
        padding: 60px 0 70px;
    }

    .marka-cta-btn {
        min-width: 0;
        width: 100%;
        padding: 20px;
    }
}

/* ===== ÖNE ÇIKAN HİKAYE (DNA) ===== */
.dna-section {
    background: #0E123B;
    overflow: hidden;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.dna-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 660px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    padding-right: max(24px, calc((100vw - 1320px) / 2));
}

.dna-visual {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dna-visual img {
    height: 100%;
    max-height: 780px;
    width: auto;
    object-fit: contain;
    object-position: left center;
}

.dna-text {
    max-width: 500px;
    padding: 60px 0;
}

.dna-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 30px;
}

.dna-title {
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 36px;
}

.dna-desc {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 46px;
}

.dna-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 44px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}

.dna-btn:hover {
    background: #fff;
    color: #0E123B;
}

@media (max-width: 991px) {
    .dna-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: 0;
        padding: 60px 0;
    }

    .dna-visual {
        justify-content: center;
    }

    .dna-visual img {
        height: auto;
        max-height: 420px;
        width: auto;
        object-position: center;
    }

    .dna-text {
        max-width: none;
        padding: 0 24px;
        text-align: center;
    }

    .dna-desc {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {

    /* Mobilde sarmal görseli gizle */
    .dna-visual {
        display: none;
    }
}

/* ===== MARKA LİSTESİ ===== */
.marka-list-section {
    background: #fff;
    padding: 70px 0 110px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.marka-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.marka-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.marka-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin-bottom: 24px;
}

.marka-brand-logo img {
    max-width: 200px;
    max-height: 55px;
    width: auto;
    height: auto;
    display: block;
}

.marka-brand-year {
    font-size: 13px;
    font-weight: 400;
    color: #8A8C99;
    margin-bottom: 18px;
}

.marka-brand-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: #0E123B;
    max-width: 280px;
    margin: 0 auto 24px;
    flex-grow: 1;
}

.marka-brand-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0E123B;
    padding-bottom: 3px;
    transition: opacity 0.2s;
    margin-top: auto;
    display: inline-block;
}

.marka-brand-link:hover {
    opacity: 0.6;
    border-bottom: 1px solid #0E123B;

}

@media (max-width: 991px) {
    .marka-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .marka-list-section {
        padding: 50px 0 70px;
    }

    .marka-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 16px;
    }
}

/* ===== MÜCEVHER REHBERİ ===== */
.mucevher-section {
    background: #F7F7F6;
    padding-bottom: 50px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

/* Hero: solda metin, sağda yüzük, altında çizgi */
.mucevher-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 40px;
    padding-top: 30px;
    border-bottom: 1px solid #D9DAE0;
}

.mucevher-text {
    align-self: center;
    padding-bottom: 40px;
}

.mucevher-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8A8C99;
    margin-bottom: 22px;
}

.mucevher-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.25;
    color: #0E123B;
    margin: 0;
}

.mucevher-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.mucevher-visual img {
    max-height: 440px;
    width: auto;
    display: block;
}

.mucevher-inner {
    text-align: center;
}

.mucevher-subtitle {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    color: #0E123B;
    margin: 70px 0 38px;
}

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

.mucevher-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 116px;
    padding: 25px;
    border: 1px solid #C9CAD2;
    background: rgba(255, 255, 255, 0.35);
    color: #0E123B;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s;
}

.mucevher-card:hover {
    background: #0E123B;
    border-color: #0E123B;
    color: #fff;
}

/* ============ Öğrenme Merkezi (Bilgi Bankası / Akordeon) ============ */
.ogrenme-section {
    background: #F4F4F5;
    padding: 90px 0 110px;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.ogrenme-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8A8C99;
    margin-bottom: 14px;
}

.ogrenme-title {
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 200;
    letter-spacing: 0.5px;
    color: #0E123B;
    margin: 0 0 50px;
}

.ogrenme-accordion {
    border-top: 1px solid #D3D4DB;
}

.ogrenme-item {
    border-bottom: 1px solid #D3D4DB;
}

.ogrenme-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.ogrenme-name {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0E123B;
}

.ogrenme-icon {
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    color: #0E123B;
    transition: transform 0.3s ease;
}

.ogrenme-item.is-open .ogrenme-icon {
    transform: rotate(45deg);
}

.ogrenme-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.ogrenme-body-inner {
    padding: 0 4px 34px;
    max-width: 860px;
    color: #4A4C5C;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
}

.ogrenme-body-inner p {
    margin: 0 0 16px;
}

.ogrenme-body-inner strong {
    color: #0E123B;
    font-weight: 500;
}

.ogrenme-body-inner ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.ogrenme-body-inner li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 4px;
}

.ogrenme-body-inner li::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #B0B2C0;
}

@media (max-width: 768px) {
    .ogrenme-section {
        padding: 60px 0 70px;
    }

    .ogrenme-title {
        margin-bottom: 34px;
    }

    .ogrenme-head {
        padding: 24px 2px;
    }

    .ogrenme-name {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .ogrenme-body-inner {
        font-size: 14px;
        padding-bottom: 28px;
    }
}

@media (max-width: 768px) {
    .mucevher-section {
        padding-bottom: 70px;
    }

    .mucevher-hero {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: center;
        text-align: center;
        padding-top: 20px;
    }

    .mucevher-text {
        align-self: auto;
        padding-bottom: 0;
        order: 2;
    }

    .mucevher-visual {
        order: 1;
    }

    .mucevher-visual img {
        max-height: 280px;
    }

    .mucevher-subtitle {
        margin: 40px 0 28px;
    }

    .mucevher-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mucevher-card {
        min-height: 92px;
        font-size: 12px;
        letter-spacing: 1px;
    }
}

/* ===== ÖĞRENME MERKEZİ (Bilgi Bankası / Akordeon) ===== */
.ogrenme-section {
    padding: 90px 0 0px;
    background: #F7F7F6;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.ogrenme-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8A8C99;
    margin-bottom: 18px;
}

.ogrenme-title {
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 300;
    color: #0E123B;
    margin-bottom: 50px;
}

.ogrenme-accordion {
    border-top: 1px solid #D7D8DE;
}

.ogrenme-item {
    border-bottom: 1px solid #D7D8DE;
}

.ogrenme-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: none;
    border: none;
    padding: 30px 4px;
    cursor: pointer;
    text-align: left;
}

.ogrenme-name {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0E123B;
}

.ogrenme-icon {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    color: #0E123B;
    transition: transform 0.3s ease;
}

.ogrenme-item.is-open .ogrenme-icon {
    transform: rotate(45deg);
}

.ogrenme-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ogrenme-body-inner {
    max-width: 860px;
    padding: 0 4px 34px;
    color: #4A4D63;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.ogrenme-body-inner p {
    margin: 0 0 16px;
}

.ogrenme-body-inner ul {
    margin: 0;
    padding-left: 20px;
}

.ogrenme-body-inner li {
    margin-bottom: 10px;
}

.ogrenme-body-inner strong {
    font-weight: 500;
    color: #0E123B;
}

@media (max-width: 768px) {
    .ogrenme-section {
        padding: 60px 0 70px;
    }

    .ogrenme-title {
        margin-bottom: 36px;
    }

    .ogrenme-head {
        padding: 24px 2px;
    }

    .ogrenme-name {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .ogrenme-body-inner {
        font-size: 14px;
        padding-bottom: 28px;
    }
}

/* ===== EN GÜNCEL YAZILAR (Blog) ===== */
.blog-section {
    padding: 90px 0 110px;
    background: #F7F7F6;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.blog-head {
    text-align: center;
    margin-bottom: 60px;
}

.blog-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8A8C99;
    margin-bottom: 16px;
}

.blog-title {
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: 400;
    color: #0E123B;
    margin: 0;
}

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

.blog-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 26px;
    background: #ecedea;
}

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

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

.blog-card-title {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0E123B;
    margin-bottom: 18px;
}

.blog-card-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #4A4D63;
    margin-bottom: 24px;
}

.blog-card-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0E123B;
    padding-bottom: 3px;
    transition: opacity 0.2s;
}

.blog-card-link:hover {
    opacity: 0.6;
    border-bottom: 1px solid #0E123B;

}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0 70px;
    }

    .blog-head {
        margin-bottom: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

/* ===== SIKÇA SORULAN SORULAR ===== */
.sss-section {
    padding: 90px 0 110px;
    background: #F7F7F6;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.sss-title {
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 200;
    color: #0E123B;
    margin-bottom: 60px;
}

.sss-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 48px;
}

.sss-q {
    font-size: 18px;
    font-weight: 500;
    color: #0E123B;
    padding-bottom: 20px;
    border-bottom: 1px solid #D7D8DE;
    margin-bottom: 22px;
}

.sss-a {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #4A4D63;
    margin: 0;
}

.sss-divider {
    height: 1px;
    background: #C4C5CD;
    margin: 44px 0 90px;
}

.sss-cta {
    text-align: center;
}

.sss-cta-title {
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 200;
    color: #0E123B;
    margin-bottom: 40px;
}

.sss-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 560px;
    max-width: 100%;
    padding: 24px 40px;
    background: #BB834C;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.25s;
}

.sss-cta-btn:hover {
    background: #a5713f;
    color: #fff;
}

@media (max-width: 768px) {
    .sss-section {
        padding: 60px 0 70px;
    }

    .sss-title {
        margin-bottom: 40px;
    }

    .sss-grid {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }

    .sss-divider {
        margin: 36px 0 60px;
    }

    .sss-cta-btn {
        min-width: 0;
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .finder-section {
        padding: 60px 0 70px;
    }

    .finder-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
    }

    .finder-results-title {
        margin-bottom: 32px;
    }

    .finder-question {
        margin-bottom: 32px;
    }

    .finder-options--3,
    .finder-options--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .finder-option {
        min-height: 64px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .finder-divider {
        margin: 44px auto;
    }
}

/* ===== DEĞER SECTION (Evlilik Dünyası) ===== */
.deger-section {
    padding: 50px 0 50px;
    background: #fff;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.deger-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.deger-title {
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.25;
    color: #0E123B;
    margin-bottom: 30px;
}

.deger-title-line1,
.deger-title-line2 {
    display: block;
}

.deger-title-line1 {
    font-weight: 300;
}

.deger-title-line2 {
    font-weight: 400;
}

.deger-desc {
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 300;
    line-height: 1.7;
    color: #0E123B;
    margin-bottom: 34px;
}

.deger-slogan {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0E123B;
    margin-bottom: 26px;
}

.deger-divider {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #B0B2C0;
}

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

.deger-card {
    text-align: center;
}

.deger-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 26px;
}

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

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

.deger-card-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0E123B;
    margin-bottom: 14px;
}

.deger-card-text {
    font-size: 14px;
    font-weight: 300;
    color: #3a3d55;
    margin: 0;
}

.deger-bottom-line {
    width: 100%;
    height: 1px;
    background: #0E123B;
    margin-top: 70px;
}

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

    .deger-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 20px;
    }

    .deger-head {
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .deger-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

/* ===== DÜĞÜN YOLCULUĞU (Evlilik Dünyası) ===== */
.yolculuk-section {
    padding: 40px 0 110px;
    background: #fff;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.yolculuk-title {
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 200;
    color: #0E123B;
    margin-bottom: 60px;
}

.yolculuk-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 70px;
}

/* Kesikli çizgi (ikonlarla etiketler arasında) */
.yolculuk-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 96px;
    height: 1px;
    background: repeating-linear-gradient(to right, #C9CAD2 0 24px, transparent 4px 60px);
}

.yolculuk-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: center;
}

.yolculuk-step-icon {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 82px;
}

.yolculuk-step-icon img {
    max-height: 60px;
    width: auto;
    opacity: 0.45;
    transition: opacity 0.25s;
}

.yolculuk-step-label {
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 400;
    color: #B7B9C3;
    transition: color 0.25s;
}

.yolculuk-step.is-active .yolculuk-step-icon img {
    opacity: 1;
}

.yolculuk-step.is-active .yolculuk-step-label {
    color: #0E123B;
}

.yolculuk-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 24px;
}

.yolculuk-grid.is-active {
    display: grid;
}

.yolculuk-card {
    display: block;
    text-align: center;
}

.yolculuk-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 292 / 293;
    background: #fff;
    border-radius: 22px 0 22px 0;
    overflow: hidden;
    margin-bottom: 18px;
}

.yolculuk-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

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

.yolculuk-card-name {
    display: block;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #0E123B;
    margin: 0 0 14px;
    transition: opacity 0.2s;
}

.yolculuk-card-name:hover {
    opacity: 0.6;
}

.yolculuk-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #0E123B;
    margin: 10px 0 14px;
}

.yolculuk-card-link {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6B6E80;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.yolculuk-card-link:hover {
    color: #0E123B;
    border-bottom: 1px solid #B7B9C3;

}

@media (max-width: 991px) {
    .yolculuk-section {
        padding: 20px 0 70px;
    }

    /* 6 adımı yatay kaydırmak yerine 3x2 grid */
    .yolculuk-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 34px 10px;
        margin-bottom: 45px;
    }

    .yolculuk-track {
        display: none;
    }

    .yolculuk-step-icon {
        height: 56px;
        margin-bottom: 16px;
    }

    .yolculuk-step-icon img {
        max-height: 48px;
    }

    .yolculuk-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 18px;
    }

    /* Tek kalan (5.) ürünü ortala */
    .yolculuk-grid .yolculuk-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 9px);
    }
}

@media (max-width: 575px) {
    .yolculuk-step-icon {
        height: 48px;
        margin-bottom: 12px;
    }

    .yolculuk-step-icon img {
        max-height: 42px;
    }

    .yolculuk-step-label {
        font-size: 13px;
    }
}

/* ===== DÜĞÜN RİTÜELİ (Evlilik Dünyası) ===== */
.ritual-section {
    padding: 90px 0 110px;
    background: #fff;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.ritual-top {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: start;
}

.ritual-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8A8C99;
    margin-bottom: 34px;
}

.ritual-title {
    font-size: clamp(26px, 2.6vw, 36px);
    font-weight: 100;
    line-height: 1.3;
    color: #0E123B;
    margin-bottom: 34px;
}

.ritual-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #4A4D63;
    max-width: 480px;
    margin: 0;
}

/* Görsel bloğu — üst üste binen iki fotoğraf */
.ritual-media {
    position: relative;
    padding-bottom: 90px;
}

.ritual-media-big {
    width: 74%;
}

.ritual-media-big img {
    width: 100%;
    display: block;
}

.ritual-media-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    aspect-ratio: 5 / 4;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.ritual-media-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* CTA satırı */
.ritual-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 90px;
}

.ritual-cta-title {
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 400;
    color: #0C0E2F;
    margin-bottom: 16px;
    font-family: "Inter", sans-serif;
}

.ritual-cta-desc {
    font-size: 15px;
    font-weight: 300;
    color: #4A4D63;
    margin: 0;
}

.ritual-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ritual-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}

.ritual-btn--dark {
    background: #0E123B;
    color: #fff;
}

.ritual-btn--dark:hover {
    background: #1a2050;
    color: #fff;
}

.ritual-btn--outline {
    background: transparent;
    color: #0E123B;
    border: 1px solid #0E123B;
}

.ritual-btn--outline:hover {
    background: #0E123B;
    color: #fff;
}

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

    .ritual-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ritual-cta {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 60px;
    }
}

/* ===== 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: 14px;
    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;
    overflow: visible !important;
}

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

/* 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-mask {
    position: absolute;
    left: 178px;
    top: 140px;
    width: 244px;
    height: 122px; /* Yüzüğün tam %50 yüksekliği */
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.h2-ring {
    position: absolute;
    left: 0;
    top: 0;
    width: 244px;
    height: 244px;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: 50% 50%;
    pointer-events: none;
}

.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;
    }
}

/* ===== BLOG / ZAMANSIZ HİKAYELER SECTİON ===== */
.blog-hero-section {
    padding: 60px 0 40px;
    background: #fff;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.blog-hero-sub {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #8A8C99;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.blog-hero-title {
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 400;
    letter-spacing: 1px;
    color: #0E123B;
    margin-bottom: 24px;
}

.blog-hero-divider {
    display: inline-block;
    width: 50px;
    height: 1px;
    background: #C4C5CD;
    margin-bottom: 60px;
}

/* Öne Çıkan Blog Kartı */
.blog-featured-card {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.blog-featured-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

.blog-featured-content {
    padding-right: 20px;
}

.blog-card-cat {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #0C0E2F;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.blog-featured-title {
    font-size: clamp(39px, 2.9vw, 65px);
    font-weight: 100;
    line-height: 1.25;
    color: #0E123B;
    margin-bottom: 20px;
}

.blog-featured-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #6B6E80;
    margin-bottom: 30px;
    max-width: 420px;
}

.blog-featured-btn {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0E123B;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    text-transform: uppercase;
    transition: border-color 0.2s;
}

.blog-featured-btn:hover {
    border-bottom-color: #0E123B;
}

/* Main Section & Filtreler */
.blog-main-section {
    padding-bottom: 100px;
    background: #fff;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.blog-filter-tabs {
    display: flex;
    align-items: center;
    gap: 36px;
    border-top: 1px solid #E5E6EB;
    border-bottom: 1px solid #E5E6EB;
    padding: 20px 0;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.blog-tab {
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #8A8C99;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    transition: color 0.2s;
}

.blog-tab:hover,
.blog-tab.active {
    color: #0E123B;
    font-weight: 500;
}

/* Blog Grid */
.blog-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 36px;
}

.blog-item-card {
    display: flex;
    flex-direction: column;
}

.blog-item-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 24px;
    background: #f7f7f7;
}

.blog-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.blog-item-cat {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #8A8C99;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.blog-item-title {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: #0E123B;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-item-link {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0E123B;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    text-transform: uppercase;
    align-self: flex-start;
    transition: border-color 0.2s;
}

.blog-item-link:hover {
    border-bottom-color: #0E123B;
}

.blog-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    padding: 18px 40px;
    background: transparent;
    border: 1px solid #0E123B;
    color: #0E123B;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
    margin-top: 30px;
}

.blog-more-btn:hover {
    background: #0E123B;
    color: #fff;
}

@media (max-width: 991px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }
}

@media (max-width: 575px) {
    .blog-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-filter-tabs {
        gap: 20px 16px;
    }
}

/* ===== BLOG DETAY SAYFASI ===== */
.blog-detail-article {
    padding: 60px 0 80px;
    background: #fff;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.blog-detail-cat {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #8A8C99;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.blog-detail-title {
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    color: #0E123B;
    max-width: 860px;
    margin: 0 auto 20px;
}

.blog-detail-meta {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #8A8C99;
    margin-bottom: 24px;
}

.blog-detail-dot {
    margin: 0 8px;
}

.blog-detail-divider {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #C4C5CD;
    margin-bottom: 50px;
}

.blog-detail-cover {
    width: 100%;
    margin: 0 auto 60px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.blog-detail-body {
    margin: 0 auto;
    color: #3A3D55;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
}

.blog-detail-body p {
    margin-bottom: 28px;
}

.blog-detail-body p:first-of-type {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #0E123B;
    margin-bottom: 30px;
}

.blog-detail-body h1,
.blog-detail-body h2,
.blog-detail-body h3,
.blog-detail-body h4 {
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 400;
    color: #0E123B;
    margin: 44px 0 20px;
}

.blog-detail-body blockquote {
    margin: 44px 0;
    padding: 30px 40px;
    border-left: 2px solid #0E123B;
    background: #F8F8FA;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: #0E123B;
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 28px 0;
    padding-left: 24px;
}

.blog-detail-body li {
    margin-bottom: 12px;
}

.blog-detail-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 36px auto;
    border-radius: 2px;
}

.blog-detail-body figure {
    margin: 44px 0;
    text-align: center;
}

.blog-detail-body figure img {
    margin-bottom: 12px;
}

.blog-detail-body figcaption {
    font-size: 13px;
    font-weight: 400;
    color: #8A8C99;
    text-align: center;
}

/* Paylaşım & Etiketler */
.blog-detail-footer {
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid #E5E6EB;
}

.blog-detail-tag-label,
.blog-detail-share-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #8A8C99;
}

.blog-detail-tag {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0E123B;
    padding: 6px 14px;
    background: #F4F4F6;
    margin-left: 6px;
    transition: background 0.2s, color 0.2s;
}

.blog-detail-tag:hover {
    background: #0E123B;
    color: #fff;
}

.blog-share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #D7D8DE;
    color: #0E123B;
    font-size: 14px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-share-icon:hover {
    background: #0E123B;
    border-color: #0E123B;
    color: #fff;
}

/* İlgili Bloglar */
.blog-related-section {
    padding: 80px 0 100px;
    background: #F8F8FA;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.blog-related-sub {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #8A8C99;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.blog-related-title {
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 20px;
}

.blog-related-divider {
    display: inline-block;
    width: 50px;
    height: 1px;
    background: #C4C5CD;
    margin-bottom: 50px;
}

.color-inherit {
    color: inherit;
    transition: opacity 0.2s;
}

.color-inherit:hover {
    color: inherit;
    opacity: 0.7;
}

/* ===== KOLEKSİYON & ÜRÜN LİSTELEME SAYFASI ===== */
.kat-hero-section {
    padding: 60px 0 40px;
    background: #fff;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.kat-hero-sub {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #8A8C99;
    margin-bottom: 12px;
}

.kat-hero-title {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: 1px;
    color: #0E123B;
    margin-bottom: 18px;
}

.kat-hero-divider {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #C4C5CD;
    margin-bottom: 20px;
}

.kat-hero-desc {
    font-size: 14px;
    font-weight: 300;
    color: #555768;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.kat-main-section {
    padding: 30px 0 100px;
    background: #FAFAFB;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.kat-filter-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E7EC;
}

.kat-tabs-scroll-wrap {
    position: relative;
    width: 100%;
}

.kat-tabs-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 10px;
    scrollbar-width: thin;
    scrollbar-color: #c5a880 #ebecef;
}

.kat-tabs-scroll::-webkit-scrollbar {
    height: 4px;
    display: block;
}

.kat-tabs-scroll::-webkit-scrollbar-track {
    background: #ebecef;
    border-radius: 10px;
}

.kat-tabs-scroll::-webkit-scrollbar-thumb {
    background: #c5a880;
    border-radius: 10px;
}

.kat-tab {
    display: inline-block;
    padding: 9px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #4A4D63;
    background: #fff;
    border: 1px solid #dcdfe6;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.kat-tab:hover,
.kat-tab.active {
    background: #0E123B;
    color: #fff;
    border-color: #0E123B;
    box-shadow: 0 4px 12px rgba(14, 18, 59, 0.15);
}

/* Hızlı Filtre Çipleri (Mobilde ve Masaüstünde Açık ve Görünür) */
.kat-quick-scroll {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0 2px;
}

.kat-quick-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #44485e;
    background: #ffffff;
    border: 1px solid #dcdfe6;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.kat-quick-chip:hover {
    color: #0E123B;
    border-color: #0E123B;
    background: #f8f9fc;
}

.kat-quick-chip.is-active {
    background: #0E123B;
    color: #ffffff;
    border-color: #0E123B;
    box-shadow: 0 2px 8px rgba(14, 18, 59, 0.15);
}

.kat-quick-chip .chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #c5a880;
}

.kat-quick-chip.is-active .chip-dot {
    background-color: #ffffff;
}

/* Masaüstü Filtre Formu */
.kat-filter-form {
    width: 100%;
}

.kat-select-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.kat-select {
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #1a1d36;
    background-color: #ffffff;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 130px;
}

.kat-select:hover {
    border-color: #0E123B;
}

.kat-select:focus {
    border-color: #0E123B;
    box-shadow: 0 0 0 2px rgba(14, 18, 59, 0.08);
}

.kat-select.is-active {
    background-color: #0E123B;
    color: #ffffff;
    border-color: #0E123B;
}

/* Mobil Kontrol Butonları & Çekmece */
.kat-mobile-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.kat-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #0E123B;
    background: #ffffff;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kat-mobile-btn.has-active {
    background: #0E123B;
    color: #ffffff;
    border-color: #0E123B;
}

.kat-badge-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: bold;
    background: #c5a880;
    color: #ffffff;
    border-radius: 50%;
}

.kat-mobile-drawer {
    display: none;
    background: #ffffff;
    border: 1px solid #e1e3ea;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-top: 10px;
}

.kat-mobile-drawer.is-open {
    display: block;
    animation: katFadeDown 0.3s ease;
}

@keyframes katFadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.kat-drawer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .kat-drawer-grid {
        grid-template-columns: 1fr;
    }
}

.kat-drawer-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6c7280;
    margin-bottom: 6px;
}

.kat-drawer-field select {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    color: #0E123B;
    background-color: #fcfcfd;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    outline: none;
}

.kat-drawer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f4;
}

.kat-drawer-apply {
    flex: 2;
    padding: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #0E123B;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.kat-drawer-reset {
    flex: 1;
    padding: 12px;
    font-size: 12px;
    font-weight: 500;
    color: #6c7280;
    background: #f0f2f7;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
}

.kat-active-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
    padding: 12px 18px;
    background: #ffffff;
    border: 1px solid #ebecef;
    border-radius: 4px;
}

.kat-count {
    font-size: 13px;
    color: #6c7280;
    font-weight: 500;
}

.kat-count b {
    color: #0E123B;
}

.kat-pills-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.kat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #0E123B;
    background: #f0f2f7;
    border: 1px solid #dcdfe6;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.kat-pill:hover {
    background: #0E123B;
    color: #ffffff;
    border-color: #0E123B;
}

.kat-pill-remove {
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.kat-clear-all {
    font-size: 12px;
    color: #d9534f;
    text-decoration: none;
    font-weight: 500;
    margin-left: 8px;
    transition: color 0.2s;
}

.kat-clear-all:hover {
    color: #b52b27;
    text-decoration: underline;
}

.kat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.kat-card {
    background: #fff;
    border: 1px solid #EBECEF;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(14, 18, 59, 0.07);
}

.kat-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #F6F6F8;
    overflow: hidden;
}

.kat-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #B0834C;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 2;
}

.kat-card-img {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

.kat-card-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kat-card-cat {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #8A8C99;
    margin-bottom: 6px;
}

.kat-card-title {
    font-size: 15px;
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 12px;
    line-height: 1.4;
}

.kat-card-price {
    font-size: 16px;
    font-weight: 600;
    color: #0E123B;
    margin-bottom: 18px;
    margin-top: auto;
}

.kat-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #F0F1F5;
}

.kat-card-btn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #0E123B;
    text-decoration: none;
    transition: color 0.2s;
}

.kat-card-btn:hover {
    color: #B0834C;
}

.kat-card-sd {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #B0834C;
    text-decoration: none;
}

.kat-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: #8A8C99;
    font-size: 15px;
}

/* ===== ÜRÜN DETAY SAYFASI ===== */
.p-detail-section {
    padding: 40px 0 100px;
    background: #fff;
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.p-detail-breadcrumb {
    font-size: 12px;
    color: #8A8C99;
    margin-bottom: 30px;
}

.p-detail-breadcrumb a {
    color: #4A4D63;
    text-decoration: none;
}

.p-detail-breadcrumb .sep {
    margin: 0 8px;
    color: #C4C5CD;
}

.p-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 991px) {
    .p-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.p-detail-main-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #F7F7F9;
    border: 1px solid #EBECEF;
    margin-bottom: 16px;
    overflow: hidden;
}

.p-detail-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-detail-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #B0834C;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 6px 14px;
    z-index: 2;
}

.p-detail-thumbs {
    display: flex;
    gap: 12px;
}

.p-thumb-btn {
    width: 80px;
    height: 80px;
    border: 1px solid #E1E2E8;
    padding: 0;
    background: #F7F7F9;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s;
}

.p-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-thumb-btn.active,
.p-thumb-btn:hover {
    border-color: #0E123B;
}

.p-detail-cat {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #8A8C99;
    margin-bottom: 8px;
}

.p-detail-title {
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 14px;
    line-height: 1.3;
}

.p-detail-price {
    font-size: 24px;
    font-weight: 600;
    color: #0E123B;
    margin-bottom: 24px;
}

.p-detail-divider {
    height: 1px;
    background: #EBECEF;
    margin-bottom: 30px;
}

.p-specs-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #0E123B;
    margin-bottom: 16px;
}

.p-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
    margin-bottom: 30px;
}

.p-spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #E5E6EC;
}

.p-spec-item .lbl {
    color: #8A8C99;
}

.p-spec-item .val {
    color: #0E123B;
    font-weight: 500;
}

.p-detail-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #4A4D63;
    margin-bottom: 34px;
}

.p-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.p-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 2px;
}

.p-btn--primary {
    background: #0E123B;
    color: #fff;
}

.p-btn--primary:hover {
    background: #1c225a;
    color: #fff;
}

.p-btn--outline {
    background: transparent;
    color: #0E123B;
    border: 1px solid #0E123B;
}

.p-btn--outline:hover {
    background: #0E123B;
    color: #fff;
}

.kat-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.kat-pagination nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
}

.kat-pagination p {
    display: none !important;
}

.kat-pagination div > p {
    display: none !important;
}

.kat-pagination nav > div:first-child {
    display: none !important;
}

.kat-pagination nav > div:last-child {
    display: flex !important;
    justify-content: center !important;
}

.kat-pagination svg {
    width: 12px !important;
    height: 12px !important;
    fill: currentColor;
}

.kat-pagination .pagination,
.kat-pagination nav > div:last-child > div {
    display: inline-flex !important;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.kat-pagination .page-item .page-link,
.kat-pagination a,
.kat-pagination span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 500;
    color: #0E123B !important;
    background: #fff !important;
    border: 1px solid #E1E2E8 !important;
    border-radius: 2px !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.kat-pagination .page-item.active .page-link,
.kat-pagination span[aria-current="page"] {
    background: #0E123B !important;
    color: #fff !important;
    border-color: #0E123B !important;
}

.kat-pagination a:hover {
    background: #0E123B !important;
    color: #fff !important;
    border-color: #0E123B !important;
}

.kat-pagination .page-item.disabled .page-link,
.kat-pagination span[aria-disabled="true"] {
    opacity: 0.3;
    cursor: not-allowed;
}

.p-related-section {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid #EBECEF;
}

.p-related-title {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 400;
    color: #0E123B;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.color-inherit:hover {
    color: inherit;
    opacity: 0.7;
}