/* ============================================
   NORD ARC — Ghost-to-Black Header
   Pattern: Ghost Header → Solid Black on Scroll
   ============================================ */

/* --- RESET --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header-height: 65px;
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-gray-50: #fafafa;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #eeeeee;
    --color-gray-300: #dddddd;
    --color-gray-400: #bbbbbb;
    --color-gray-500: #999999;
    --color-gray-600: #666666;
    --color-gray-700: #444444;
    --color-border: rgba(255, 255, 255, 0.12);
    --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --t-fast: 0.2s var(--ease-quart);
    --t-smooth: 0.4s var(--ease-expo);
    --t-slow: 0.6s var(--ease-expo);
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-black);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: opacity var(--t-fast); }
a:hover { opacity: 0.7; }

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}


/* ============================================
   GHOST HEADER
   State 1: .ghost → Transparent, beyaz text
   State 2: .scrolled → Siyah BG, beyaz text
   ============================================ */
.site-header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    /* Gradual background via JS --header-bg variable */
    background: rgba(10, 10, 10, var(--header-bg, 0));
    transition:
        box-shadow 0.3s var(--ease-expo);
}
/* -------- GHOST STATE -------- */
.site-header.ghost {
    box-shadow: none;
}

/* Header elements — always white in both states */
.site-header .brand-logo { color: var(--color-white); }
.site-header .nav-link { color: var(--color-white); }
.site-header .nav-link::after { background: var(--color-white); }
.site-header .burger-icon span { background: var(--color-white); }
.site-header .search-trigger svg,
.site-header .action-item svg { stroke: var(--color-white); }
.site-header .header-divider { background: rgba(255,255,255,0.15); }
.site-header .cart-dot { background: #111; border-color: rgba(255,255,255,0.55); color: #fff; }
.site-header .action-item:hover,
.site-header .search-trigger:hover,
.site-header .hamburger-btn:hover { background: rgba(255,255,255,0.1); }

/* -------- SCROLLED STATE -------- */
.site-header.scrolled {
    box-shadow: 0 1px 30px rgba(0,0,0,0.3);
}
.site-header.scrolled .cart-dot { background: #111; border-color: rgba(255,255,255,0.14); color: #fff; }



/* ============================================
   HAMBURGER + NAV VISIBILITY LOGIC

   Desktop initial (.ghost):
     nav-links: VISIBLE
     hamburger: HIDDEN

   Desktop scrolled (.scrolled):
     nav-links: HIDDEN
     hamburger: VISIBLE

   Mobile (all states):
     nav-links: HIDDEN
     hamburger: VISIBLE
   ============================================ */

/* Desktop default: hamburger hidden */
.hamburger-btn {
    display: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--t-fast);
}

/* Desktop default: nav links visible */
.desktop-nav {
    display: flex;
    gap: 35px;
}

/* Desktop scrolled: hide nav, show hamburger */
.site-header.scrolled .desktop-nav {
    display: none;
}

.site-header.scrolled .hamburger-btn {
    display: flex;
}

/* Mobile: always hide nav, always show hamburger */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .hamburger-btn {
        display: flex !important;
    }
}


/* --- INNER LAYOUT --- */
.header-inner {
    width: 100%;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-section {
    flex: 1;
    display: flex;
    align-items: center;
}
.nav-section.center {
    justify-content: center;
    flex: 0 0 auto;
}
.nav-section.right {
    justify-content: flex-end;
    align-items: center;
}


/* --- LOGO --- */
.brand-logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 6px;
    text-decoration: none;
    position: relative;
    transition:
        letter-spacing 0.5s var(--ease-expo),
        color 0.5s var(--ease-expo),
        opacity 0.3s;
}
.brand-logo:hover { letter-spacing: 8px; opacity: 1; }


/* --- NAV LINKS --- */
.nav-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.5s var(--ease-expo), opacity var(--t-fast);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    transition: width 0.4s var(--ease-expo);
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { width: 100%; }


/* --- BURGER ICON --- */
.burger-icon {
    width: 20px;
    height: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.burger-icon span {
    display: block;
    width: 100%;
    height: 1.5px;
    transition: all 0.4s var(--ease-expo);
    transform-origin: center;
}


/* --- HEADER RIGHT ICONS --- */
.header-divider {
    width: 1px;
    height: 20px;
    margin: 0 22px;
    transition: background 0.5s;
}

.search-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background var(--t-fast), transform var(--t-fast);
}
.search-trigger:hover { transform: scale(1.05); }
.search-trigger svg { transition: stroke 0.5s; }

.icon-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.action-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: background var(--t-fast), transform var(--t-fast);
}
.action-item:hover { transform: scale(1.05); }
.action-item svg { transition: stroke 0.5s; }

.cart-btn { position: relative; }

.cart-dot {
    position: absolute;
    top: -4px;
    right: -7px;
    min-width: 24px;
    height: 18px;
    padding: 0 7px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.55);
    background: #111;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    animation: cartPulse 2.5s ease-in-out infinite;
}

@keyframes cartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.35); }
}


/* ============================================
   OVERLAYS — BASE
   ============================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    z-index: 2000;
    visibility: hidden;
    transition: visibility 0s linear 0.6s;
}
.overlay.active {
    visibility: visible;
    transition: visibility 0s linear 0s;
}

/* Shared inner mask for directional reveal */
.overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-white);
    z-index: -1;
}

/* --- SEARCH: slides down from top --- */
#search-overlay {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0.6s;
}
#search-overlay.active {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0s;
}

/* --- MENU: slides in from left --- */
#menu-overlay {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0.6s;
}
#menu-overlay.active {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0s;
}

/* --- LOGIN: slides in from right --- */
#login-overlay {
    clip-path: inset(0 0 0 100%);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0.6s;
}
#login-overlay.active {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0s;
}

/* --- CART: slides up from bottom --- */
#cart-overlay {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0.6s;
}
#cart-overlay.active {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0s;
}

.close-box {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--header-height);
    height: var(--header-height);
    background: transparent;
    color: var(--color-black);
    border-left: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast);
    z-index: 10;
}
.close-box:hover { background: var(--color-black); color: var(--color-white); }
.close-box svg { transition: transform 0.4s var(--ease-expo); }
.close-box:hover svg { transform: rotate(90deg); }


/* --- SEARCH OVERLAY --- */
.search-container {
    padding-top: 12vh;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.search-top input {
    width: 100%;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 15px 0;
    outline: none;
    background: transparent;
    color: var(--color-black);
}
.search-top input::placeholder { color: var(--color-gray-400); }

.search-line {
    height: 1.5px;
    background: var(--color-black);
    width: 0;
    transition: width 0.8s var(--ease-expo) 0.2s;
}
.overlay.active .search-line { width: 100%; }

.search-suggestions {
    margin-top: 35px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.4s, transform 0.5s var(--ease-expo) 0.4s;
}
.overlay.active .search-suggestions { opacity: 1; transform: translateY(0); }

.search-results-live {
    display: none;
    margin-top: 24px;
    border: 1px solid rgba(10, 10, 10, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 60px rgba(10, 10, 10, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.search-results-live.is-visible {
    display: block;
}

.search-results-live.is-loading {
    min-height: 92px;
}

.search-result-state,
.search-result-empty {
    padding: 24px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-gray-600);
}

.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.search-result-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.07);
    transition: background var(--t-fast), transform var(--t-fast);
}

.search-result-item:hover {
    background: #f8f6f2;
    opacity: 1;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-img {
    width: 96px;
    height: 118px;
    overflow: hidden;
    background: #f5f2ed;
}

.search-result-img img,
.search-img-placeholder {
    width: 100%;
    height: 100%;
}

.search-result-img img {
    display: block;
    object-fit: cover;
}

.search-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--color-gray-600);
}

.search-result-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-result-name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.5;
    color: var(--color-black);
}

.search-result-name strong {
    font-weight: 800;
}

.search-result-sku {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-gray-500);
    text-transform: uppercase;
}

.search-result-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-black);
}

.search-price-old {
    color: var(--color-gray-500);
    font-weight: 500;
}

.search-result-stock-out {
    align-self: flex-start;
    margin-top: 4px;
    padding: 6px 10px;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.search-see-all {
    padding: 18px 22px 22px;
    border-top: 1px solid rgba(10, 10, 10, 0.07);
    background: linear-gradient(180deg, rgba(250, 248, 243, 0) 0%, rgba(250, 248, 243, 0.88) 100%);
}

.search-see-all a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 13px 20px;
    border: 1px solid var(--color-black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.search-see-all a:hover {
    background: var(--color-black);
    color: var(--color-white);
    opacity: 1;
    transform: translateY(-1px);
}

.hint {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gray-500);
    display: block;
    margin-bottom: 18px;
}
.tags { display: flex; gap: 15px; flex-wrap: wrap; }
.tags a {
    color: var(--color-black);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border: 1px solid var(--color-gray-300);
    transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.tags a:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
    opacity: 1;
}


/* --- MENU OVERLAY --- */
.overlay-logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--color-black);
    pointer-events: none;
}

.mobile-nav-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
}
.mobile-nav-content a {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    text-decoration: none;
    color: var(--color-black);
    padding: 18px 0;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.5s var(--ease-expo) calc(0.15s + var(--i) * 0.08s),
        transform 0.5s var(--ease-expo) calc(0.15s + var(--i) * 0.08s);
}
.overlay.active .mobile-nav-content a { opacity: 1; transform: translateY(0); }
.mobile-nav-content a:hover { opacity: 0.5; }

.mobile-nav-footer {
    position: absolute;
    bottom: 40px;
    left: 0; right: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.mobile-utility-menu {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.mobile-utility-menu a {
    position: relative;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gray-500);
    text-decoration: none;
    text-transform: uppercase;
}
.mobile-utility-menu a + a::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    width: 1px;
    height: 12px;
    background: rgba(17,17,17,0.16);
    transform: translateY(-50%);
}
.mobile-utility-menu a:hover { color: var(--color-black); opacity: 1; }
.mobile-social { display: flex; gap: 25px; }
.mobile-social a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gray-500);
    transition: color var(--t-fast);
}
.mobile-social a:hover { color: var(--color-black); opacity: 1; }


/* ============================================
   LOGIN OVERLAY
   ============================================ */
.login-overlay {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.login-panel {
    width: 100%;
    max-width: 420px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-expo) 0.1s, transform 0.5s var(--ease-expo) 0.1s;
}

.login-overlay.active .login-panel {
    opacity: 1;
    transform: translateY(0);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-brand {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--color-gray-400);
    display: block;
    margin-bottom: 24px;
}

.login-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.login-subtitle {
    font-size: 12px;
    color: var(--color-gray-500);
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

/* Form */
.login-form-area {
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gray-500);
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    height: 48px;
    border: 1px solid var(--color-gray-200);
    padding: 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-black);
    background: var(--color-white);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--color-black);
}

.form-input::placeholder {
    color: var(--color-gray-400);
}

/* Password field */
.password-wrapper {
    position: relative;
}

.password-wrapper .form-input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    transition: color var(--t-fast);
}

.password-toggle:hover {
    color: var(--color-black);
}

.forgot-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 500;
    color: var(--color-gray-500);
    letter-spacing: 0.3px;
    transition: color var(--t-fast);
}

.forgot-link:hover {
    color: var(--color-black);
    opacity: 1;
}

/* Login Button — same DNA as checkout */
.login-btn {
    width: 100%;
    height: 52px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.login-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.login-btn:hover::before { opacity: 1; }
.login-btn:active { transform: translateY(0); box-shadow: none; }

.login-btn svg {
    transition: transform 0.3s var(--ease-expo);
}
.login-btn:hover svg { transform: translateX(4px); }

/* Divider */
.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-gray-200);
}

.login-divider span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gray-400);
}

/* Social Login */
.social-login-btn {
    width: 100%;
    height: 48px;
    border: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--color-black);
    transition: border-color var(--t-fast), background var(--t-fast);
}

.social-login-btn:hover {
    border-color: var(--color-black);
    background: var(--color-gray-50);
}

/* Login Footer */
.login-footer {
    text-align: center;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--color-gray-200);
}

.register-prompt {
    font-size: 12px;
    color: var(--color-gray-500);
}

.register-link {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-black);
    margin-left: 6px;
    position: relative;
}

.register-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-expo);
}

.register-link:hover { opacity: 1; }
.register-link:hover::after { transform: scaleX(1); transform-origin: left; }


/* ============================================
   CART OVERLAY
   ============================================ */
.cart-overlay {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-panel {
    width: 100%;
    max-width: 520px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-expo) 0.1s, transform 0.5s var(--ease-expo) 0.1s;
}
.cart-overlay.active .cart-panel { opacity: 1; transform: translateY(0); }

/* Cart Header */
.cart-header {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-200);
}

.cart-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
}

.cart-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
}

.cart-count {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--color-gray-500);
}

/* Shipping Tracker */
.shipping-tracker {
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    padding: 16px 20px;
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.shipping-icon { display: flex; align-items: center; flex-shrink: 0; }

.shipping-text {
    font-size: 12px;
    color: var(--color-gray-600);
    letter-spacing: 0.3px;
    line-height: 1.4;
}
.shipping-text strong { color: var(--color-black); font-weight: 700; }

.shipping-bar {
    position: relative;
    height: 3px;
    background: var(--color-gray-200);
    border-radius: 3px;
}

.shipping-progress {
    height: 100%;
    background: var(--color-black);
    border-radius: 3px;
    width: 0;
    transition: width 1.2s var(--ease-expo) 0.4s;
}
.cart-overlay.active .shipping-progress { width: calc(var(--progress, 67) * 1%); }

.shipping-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}
.shipping-current {
    font-size: 10px; font-weight: 600;
    color: var(--color-black); letter-spacing: 0.5px;
}
.shipping-goal {
    font-size: 10px; font-weight: 500;
    color: var(--color-gray-500); letter-spacing: 0.5px;
}

/* Cart Items */
.cart-items { flex: 1; padding: 8px 0; }

.cart-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--color-gray-200);
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.4s var(--ease-expo) calc(0.25s + var(--delay) * 0.1s),
        transform 0.4s var(--ease-expo) calc(0.25s + var(--delay) * 0.1s);
}
.cart-overlay.active .cart-item { opacity: 1; transform: translateY(0); }
.cart-item:last-child { border-bottom: none; }

.cart-item-image {
    flex: 0 0 72px;
    width: 72px;
    min-width: 72px;
    max-width: 72px;
    height: 96px;
    min-height: 96px;
    max-height: 96px;
    overflow: hidden;
    background: var(--color-gray-100);
}
.cart-item-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    object-fit: cover;
    object-position: center;
}
.cart-img-placeholder {
    width: 100%; height: 100%;
    background: var(--color-gray-100);
    display: flex; align-items: center; justify-content: center;
}
.cart-img-placeholder span {
    font-size: 9px; font-weight: 700;
    letter-spacing: 2px; color: var(--color-gray-400);
}

.cart-empty {
    min-height: 58vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px 28px;
    color: var(--color-black);
}

.cart-empty-icon {
    width: 104px;
    height: 104px;
    border: 1px solid var(--color-gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.96), rgba(244,244,244,0.92)),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,246,246,0.94));
    margin-bottom: 18px;
}

.cart-empty-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.cart-empty-title {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.cart-empty-desc {
    max-width: 320px;
    margin: 0 0 22px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-gray-500);
}

.cart-empty-btn {
    min-width: 220px;
    justify-content: center;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 130px;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.cart-item-name {
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.5px; margin-bottom: 5px; line-height: 1.3;
}
.cart-item-variant {
    font-size: 11px; color: var(--color-gray-500); letter-spacing: 0.3px;
}
.cart-item-remove {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--color-gray-400);
    transition: background var(--t-fast), color var(--t-fast);
    flex-shrink: 0;
}
.cart-item-remove:hover { background: var(--color-gray-100); color: var(--color-black); }

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

/* Qty Control */
.qty-control {
    display: flex; align-items: center;
    border: 1px solid var(--color-gray-200);
    margin-bottom: 0;
}
.qty-btn {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--color-gray-600);
    transition: background var(--t-fast), color var(--t-fast);
    user-select: none;
}
.qty-btn:hover { background: var(--color-gray-100); color: var(--color-black); }

.qty-value {
    width: 36px; text-align: center;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.5px;
    border-left: 1px solid var(--color-gray-200);
    border-right: 1px solid var(--color-gray-200);
    line-height: 32px;
    transition: transform 0.15s;
}

.cart-item-price { font-size: 14px; font-weight: 700; letter-spacing: 0.5px; }

/* Cart Footer */
.cart-footer {
    padding: 24px 0 40px;
    border-top: 1px solid var(--color-gray-200);
}

.cart-summary { margin-bottom: 24px; }

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}
.summary-row span:first-child {
    font-size: 12px; color: var(--color-gray-600); letter-spacing: 0.3px;
}
.summary-val { font-size: 13px; font-weight: 500; letter-spacing: 0.3px; }
.shipping-cost { color: var(--color-gray-500); }

.summary-divider { height: 1px; background: var(--color-gray-200); margin: 10px 0; }

.summary-row.total span:first-child {
    font-size: 13px; font-weight: 600;
    color: var(--color-black); letter-spacing: 0.5px;
}
.summary-row.total .summary-val {
    font-size: 18px; font-weight: 700; letter-spacing: 0.5px;
}

/* Shared Action Buttons */
.primary-action-btn {
    width: 100%;
    height: 52px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.primary-action-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
}
.primary-action-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.primary-action-btn:hover::before { opacity: 1; }
.primary-action-btn:active { transform: translateY(0); box-shadow: none; }
.primary-action-btn svg { transition: transform 0.3s var(--ease-expo); }
.primary-action-btn:hover svg { transform: translateX(4px); }

.secondary-action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-gray-600);
    transition: color var(--t-fast);
}
.secondary-action-btn:hover { color: var(--color-black); }
.secondary-action-btn svg { transition: transform 0.3s var(--ease-expo); }
.secondary-action-btn:hover svg { transform: translateX(-4px); }


/* ============================================
   RESPONSIVE — VISIBILITY
   ============================================ */
.mobile-only { display: none !important; }

@media (max-width: 768px) {
    :root { --header-height: 58px; }

    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }

    .header-inner { padding: 0 16px; }

    .brand-logo { font-size: 15px; letter-spacing: 4px; }
    .brand-logo:hover { letter-spacing: 4px; }

    .nav-section.left { flex: 0 0 auto; }
    .nav-section.center { flex: 1; justify-content: center; }
    .nav-section.right { flex: 0 0 auto; }

    .icon-actions { gap: 2px; }
    .action-item { width: 36px; height: 36px; }

    .search-container { padding-top: 15vh; width: 85%; }
    .search-top input { font-size: 22px; }

    .mobile-nav-content a { font-size: 22px; letter-spacing: 3px; padding: 14px 0; }

    .overlay-logo { font-size: 15px; letter-spacing: 4px; }

    /* Cart & Login responsive */
    .cart-panel,
    .login-panel { max-width: 100%; padding: 0 20px; }

    .cart-item-image {
        flex-basis: 68px;
        width: 68px;
        min-width: 68px;
        max-width: 68px;
        height: 90px;
        min-height: 90px;
        max-height: 90px;
    }
    .cart-item-details { min-height: 90px; }
    .cart-item-name { font-size: 12px; }
    .cart-empty {
        min-height: 48vh;
        padding: 32px 12px 18px;
    }
    .cart-empty-icon {
        width: 86px;
        height: 86px;
    }
    .cart-empty-title {
        font-size: 20px;
    }
    .cart-empty-desc {
        max-width: 260px;
        font-size: 12px;
    }

    .primary-action-btn, .login-btn { height: 50px; }
    .shipping-tracker { padding: 14px 16px; }
}

@media (max-width: 375px) {
    .brand-logo { font-size: 13px; letter-spacing: 3px; }
    .icon-actions { gap: 0; }
    .action-item { width: 34px; height: 34px; }
    .cart-item-image {
        flex-basis: 60px;
        width: 60px;
        min-width: 60px;
        max-width: 60px;
        height: 80px;
        min-height: 80px;
        max-height: 80px;
    }
}


/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

/* --- SLIDES --- */
.slides-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s var(--ease-expo), visibility 1.2s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Dark overlay for text readability */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.35) 100%
    );
    z-index: 1;
}

/* Slide content */
.slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding: 0 30px;
}

.slide-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s var(--ease-expo) 0.3s;
}

.slide-content h1 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.12;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease 0.45s, transform 0.7s var(--ease-expo) 0.45s;
}

.slide-content p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.6s, transform 0.6s var(--ease-expo) 0.6s;
}

.slide-content .cta-button {
    margin-top: 35px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.75s, transform 0.6s var(--ease-expo) 0.75s,
                background 0.3s, box-shadow 0.3s;
}

/* Active slide — trigger staggered entrance */
.slide.active .slide-tag,
.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .slide-content .cta-button {
    opacity: 1;
    transform: translateY(0);
}


/* --- SLIDE TYPE: VIDEO --- */
.slide-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active .slide-bg-video {
    animation: slowZoom 12s ease-out forwards;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}


/* --- SLIDE TYPE: IMAGE LAYERED --- */
.slide-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}

.slide.active .slide-bg-image {
    transform: scale(1.05);
}

/* Foreground image — reveals with clip-path */
.slide-fg-image {
    position: absolute;
    right: 8%;
    bottom: 12%;
    width: 320px;
    height: 440px;
    z-index: 2;
    overflow: hidden;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1s var(--ease-expo) 0.5s;
}

.slide.active .slide-fg-image {
    clip-path: inset(0 0 0 0);
}

.slide-fg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.95);
}

/* Foreground image border accent */
.slide-fg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: none;
}


/* --- SLIDER NAV --- */
.slider-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 30px;
}

.slider-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.counter-current {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-white);
    font-variant-numeric: tabular-nums;
    transition: opacity 0.3s, transform 0.3s var(--ease-expo);
}

.counter-current.changing {
    opacity: 0;
    transform: translateY(-8px);
}

.counter-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.counter-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-white);
}

.counter-divider.running::after {
    animation: dividerFill var(--slide-duration, 7s) linear forwards;
}

@keyframes dividerFill {
    from { width: 0%; }
    to   { width: 100%; }
}

.counter-total {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    font-variant-numeric: tabular-nums;
}

.slider-arrows {
    display: flex;
    gap: 4px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    background: transparent;
    transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-arrow svg {
    transition: transform 0.3s var(--ease-expo);
}

.slider-arrow.prev:hover svg { transform: translateX(-3px); }
.slider-arrow.next:hover svg { transform: translateX(3px); }


/* --- SOCIAL SIDEBAR --- */
.slider-social {
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 10;
    display: flex;
    gap: 22px;
}

/* STATİK: Slider Dil Seçici — sosyal ikonların üstünde dikey */
.slider-lang-switcher {
    position: absolute;
    left: 50px;
    bottom: 100px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}
.slider-lang-switcher a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    transition: color var(--t-fast);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-decoration: none;
}
.slider-lang-switcher a.active,
.slider-lang-switcher a:hover {
    color: var(--color-white);
}
@media (max-width: 768px) {
    .slider-lang-switcher {
        left: 20px;
        bottom: 78px;
        gap: 10px;
    }
    .slider-lang-switcher a { font-size: 10px; }
}

.slider-social a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    transition: color var(--t-fast);
}

.slider-social a:hover {
    color: var(--color-white);
    opacity: 1;
}


/* --- SLIDER RESPONSIVE --- */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 34px;
        letter-spacing: 2px;
    }

    .slide-content p { font-size: 13px; }

    .slide-content .cta-button {
        padding: 14px 35px;
        font-size: 10px;
    }

    .slide-fg-image {
        width: 180px;
        height: 250px;
        right: 5%;
        bottom: 18%;
    }

    .slider-nav {
        right: 20px;
        bottom: 30px;
        gap: 20px;
    }

    .counter-current { font-size: 22px; }
    .counter-divider { width: 20px; }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .slider-arrows { display: none; }

    .slider-social {
        left: 20px;
        bottom: 38px;
        gap: 16px;
    }

    .slider-social a { font-size: 10px; }
}


/* --- SCROLL DOWN BUTTON --- */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    transition: color var(--t-fast);
}

.scroll-down:hover {
    color: var(--color-white);
}

.scroll-down-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.scroll-down-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.scroll-down-dot {
    width: 1px;
    height: 16px;
    background: var(--color-white);
    position: absolute;
    top: -16px;
    left: 0;
    animation: scrollDotDrop 2s var(--ease-expo) infinite;
}

@keyframes scrollDotDrop {
    0%   { top: -16px; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 50px; opacity: 0; }
}

@media (max-width: 768px) {
    .scroll-down { bottom: 80px; }
    .scroll-down-line { height: 35px; }
}
.cta-button {
    display: inline-block; margin-top: 35px;
    padding: 16px 45px; background: var(--color-white);
    color: var(--color-black); font-size: 11px; font-weight: 700;
    letter-spacing: 3px; transition: background 0.3s, transform 0.2s;
}
.cta-button:hover { opacity: 1; background: #f0f0f0; transform: translateY(-2px); }

/* ============================================
   COLLECTION SECTION
   ============================================ */
.collection-section {
    width: 100%;
    position: relative;
    padding-bottom: 80px;
    background: var(--color-white);
}

/* --- HALF-OVERLAPPING TITLE --- */
.collection-title-wrap {
    position: relative;
    margin-top: -60px;
    z-index: 5;
    padding: 0 50px;
    pointer-events: none;
}

.collection-title {
    font-size: clamp(72px, 10vw, 140px);
    font-weight: 200;
    letter-spacing: -2px;
    line-height: 1;
    color: var(--color-black);
    margin: 0;
}

/* --- VIEWPORT & TRACK --- */
.collection-viewport {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.collection-viewport:active { cursor: grabbing; }

.collection-track {
    display: flex;
    gap: 3px;
    padding: 0 0px;
    will-change: transform;
}

/* --- CARDS --- */
.col-card {
    flex-shrink: 0;
    width: 30vw;
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--color-black);
    transition: none;
}

.col-card:hover { opacity: 1; }

/* Card number */
.col-num {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-gray-400);
    margin-bottom: 14px;
    transition: color 0.4s;
    padding-left: 15px;
}

.col-card:hover .col-num { color: var(--color-black); }

/* Image */
.col-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: var(--color-gray-100);
}

.col-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    filter: grayscale(100%);
}

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

/* Info row */
.col-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-right: 4px;
}

.col-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-left: 15px;
}

.col-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-400);
    transition: all 0.4s var(--ease-expo);
}

.col-card:hover .col-arrow {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

.col-arrow svg {
    transition: transform 0.4s var(--ease-expo);
}

.col-card:hover .col-arrow svg {
    transform: translate(2px, -2px);
}


/* --- SCROLL CONTROLS --- */
.collection-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    margin-top: 40px;
}

.col-progress-track {
    flex: 1;
    height: 1px;
    background: var(--color-gray-200);
    position: relative;
    margin-right: 30px;
}

.col-progress-thumb {
    height: 1px;
    background: var(--color-black);
    width: 25%;
    position: absolute;
    left: 0;
    top: 0;
    transition: left 0.5s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s;
}

.col-nav-arrows {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.col-arr {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-500);
    background: transparent;
    transition: all 0.3s var(--ease-expo);
}

.col-arr:hover {
    border-color: var(--color-black);
    color: var(--color-black);
}

.col-arr:active { transform: scale(0.95); }

.col-arr svg { transition: transform 0.3s var(--ease-expo); }
#col-prev:hover svg { transform: translateX(-3px); }
#col-next:hover svg { transform: translateX(3px); }


/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .col-card { width: 45vw; }
}

@media (max-width: 768px) {
    .collection-title-wrap {
        margin-top: -36px;
        padding: 0 20px;
    }

    .collection-title {
        font-size: clamp(48px, 12vw, 72px);
        letter-spacing: -1px;
    }

    .collection-viewport { margin-top: 30px; }

    .collection-track {
        gap: 14px;
        padding: 0 20px;
    }

    .col-card { width: 70vw; }

    .col-num { font-size: 10px; margin-bottom: 10px; }
    .col-label { font-size: 12px; letter-spacing: 2px; }

    .collection-controls {
        padding: 0 20px;
        margin-top: 28px;
    }

    .col-nav-arrows { display: none; }
    .col-progress-track { margin-right: 0; }

    .collection-section { padding-bottom: 50px; }
}

@media (max-width: 375px) {
    .col-card { width: 78vw; }
    .collection-title { letter-spacing: 0; }
}

/* ============================================
   FEATURED PRODUCTS — ÖNE ÇIKANLAR
   ============================================ */
.fp-section {
    width: 100%;
    padding: 90px 0 80px;
    background: var(--color-white);
    overflow: hidden;
}

/* --- HEADER --- */
.fp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 50px;
    margin-bottom: 45px;
}

.fp-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fp-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gray-500);
    text-transform: uppercase;
}

.fp-title {
    font-size: 32px;
    font-weight: 200;
    letter-spacing: 6px;
    line-height: 1.1;
    color: var(--color-black);
    margin: 0;
}

.fp-header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.fp-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--color-gray-500);
}

.fp-counter-current {
    color: var(--color-black);
    font-weight: 600;
    min-width: 18px;
    transition: opacity 0.2s;
}

.fp-counter-sep {
    font-size: 10px;
    opacity: 0.3;
}

.fp-nav {
    display: flex;
    gap: 4px;
}

.fp-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-200);
    background: transparent;
    color: var(--color-gray-500);
    cursor: pointer;
    transition: all 0.35s var(--ease-expo);
}

.fp-arrow:hover {
    border-color: var(--color-black);
    color: var(--color-black);
    background: transparent;
}

.fp-arrow:active { transform: scale(0.94); }

.fp-arrow svg { transition: transform 0.35s var(--ease-expo); }
.fp-arrow-prev:hover svg { transform: translateX(-3px); }
.fp-arrow-next:hover svg { transform: translateX(3px); }

.fp-arrow:disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* --- SLIDER VIEWPORT --- */
.fp-slider-viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.fp-slider-viewport:active { cursor: grabbing; }

.fp-slider-track {
    display: flex;
    gap: 16px;
    padding: 0 50px;
    will-change: transform;
}

/* --- PRODUCT CARD --- */
.fp-card {
    flex-shrink: 0;
    width: calc((100% - 50px - 50px - 64px) / 5);
    min-width: 0;
}

.fp-card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--color-gray-100);
}

.fp-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.fp-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.fp-card:hover .fp-img-container img {
    transform: scale(1.03);
}

/* --- OVERLAY BOTTOM (colors + bag) --- */
.fp-card-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 14px;
    background: linear-gradient(0deg, rgba(0,0,0,0.25) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s var(--ease-expo), transform 0.4s var(--ease-expo);
    z-index: 2;
}

.fp-card:hover .fp-card-overlay-bottom {
    opacity: 1;
    transform: translateY(0);
}

/* Color dots */
.fp-colors {
    display: flex;
    align-items: center;
    gap: 0;
}

.fp-color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.7);
    margin-right: -5px;
    position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.fp-color-label {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-left: 10px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Add to bag button */
.fp-add-bag {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-expo);
    flex-shrink: 0;
}

.fp-add-bag:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: scale(1.05);
}

.fp-add-bag svg {
    stroke: currentColor;
    transition: stroke 0.3s;
}

/* --- IMAGE TRACKER DOTS --- */
.fp-img-tracker {
    display: flex;
    gap: 3px;
    margin-top: 6px;
    height: 2px;
}

.fp-tracker-dot {
    flex: 1;
    height: 2px;
    background: var(--color-gray-200);
    transition: background 0.25s ease;
}

.fp-tracker-dot.active {
    background: var(--color-black);
}

/* --- CARD INFO --- */
.fp-card-info {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fp-brand {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gray-500);
    text-transform: uppercase;
}

.fp-product-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.fp-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.fp-price-old {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-gray-400);
    text-decoration: line-through;
}

.fp-price-now {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 0.3px;
}

/* --- PROGRESS BAR --- */
.fp-progress-wrap {
    padding: 0 50px;
    margin-top: 35px;
}

.fp-progress-track {
    width: 100%;
    height: 1px;
    background: var(--color-gray-200);
    position: relative;
    overflow: hidden;
}

.fp-progress-bar {
    height: 1px;
    background: var(--color-black);
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    transition: left 0.5s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s;
}


/* --- RESPONSIVE --- */
@media (max-width: 1280px) {
    .fp-card {
        width: calc((100% - 50px - 50px - 48px) / 4);
    }
}

@media (max-width: 1024px) {
    .fp-card {
        width: calc((100% - 40px - 40px - 32px) / 3);
    }
    .fp-header { padding: 0 40px; }
    .fp-slider-track { padding: 0 40px; gap: 14px; }
    .fp-progress-wrap { padding: 0 40px; }
    .fp-section { padding: 70px 0 60px; }
}

@media (max-width: 768px) {
    .fp-card {
        width: 60vw;
    }
    .fp-header {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .fp-slider-track { padding: 0 20px; gap: 12px; }
    .fp-progress-wrap { padding: 0 20px; }
    .fp-title { font-size: 24px; letter-spacing: 4px; }
    .fp-section { padding: 50px 0 45px; }
    .fp-nav { display: none; }
    .fp-card-overlay-bottom { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .fp-card { width: 72vw; }
}


/* ============================================
   SEASONAL LOOKBOOK — Interactive Hotspots
   ============================================ */
.lb-section {
    padding: 70px 0 50px;
    background: var(--color-white);
    overflow: visible;
}

/* --- HEADER --- */
.lb-header {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto 40px;
    padding: 0 50px;
}

.lb-header-line {
    flex: 1;
    height: 1px;
    background: var(--color-gray-300);
}

.lb-header-content {
    text-align: center;
    flex-shrink: 0;
}

.lb-eyebrow {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-gray-500);
    margin-bottom: 10px;
}

.lb-main-title {
    font-size: 32px;
    font-weight: 200;
    letter-spacing: 10px;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0;
}

/* --- GRID --- */
.lb-grid {
    display: flex;
    align-items: stretch;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 0;
}

.lb-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lb-grid.lb-grid-single .lb-panel-image {
    aspect-ratio: 5 / 3;
}

/* --- PANEL IMAGE --- */
.lb-panel-image {
    position: relative;
    overflow: visible;
    aspect-ratio: 3 / 3.6;
    background: var(--color-gray-100);
    cursor: crosshair;
}

.lb-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-expo);
}

.lb-panel:hover .lb-panel-image img {
    transform: scale(1.03);
}

.lb-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.02) 60%,
        rgba(0,0,0,0.15) 100%
    );
    pointer-events: none;
    transition: opacity 0.5s;
}

/* --- HOTSPOTS --- */
.lb-hotspot {
    position: absolute;
    left: var(--hs-x);
    top: var(--hs-y);
    transform: translate(-50%, -50%);
    z-index: 5;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s var(--ease-expo);
}

.lb-panel-image:hover .lb-hotspot,
.lb-hotspot.active {
    opacity: 1;
}

.lb-hotspot-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.4s var(--ease-expo);
    position: relative;
    z-index: 2;
}

.lb-hotspot:hover .lb-hotspot-dot {
    background: rgba(255,255,255,0.9);
    color: var(--color-black);
    border-color: var(--color-white);
    transform: scale(1.15);
}

.lb-hotspot-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    animation: lbRingPulse 2.5s ease-out infinite;
    pointer-events: none;
}

.lb-hotspot-ring.lb-ring-delay {
    animation-delay: 1.2s;
}

@keyframes lbRingPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* --- PRODUCT CARD (Tooltip) --- */
.lb-product-card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.92);
    width: 220px;
    background: var(--color-white);
    box-shadow: 0 16px 48px rgba(0,0,0,0.16), 0 2px 10px rgba(0,0,0,0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s var(--ease-expo);
    z-index: 10;
}

.lb-card-right {
    left: calc(100% + 16px);
}

.lb-card-left {
    right: calc(100% + 16px);
}

.lb-hotspot.active .lb-product-card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

.lb-product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-gray-100);
}

.lb-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-expo);
}

.lb-product-card:hover .lb-product-img img {
    transform: scale(1.06);
}

.lb-product-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lb-product-brand {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--color-gray-500);
}

.lb-product-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--color-black);
}

.lb-product-price {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-black);
    margin-top: 2px;
}

.lb-product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-black);
    text-decoration: none;
    padding: 7px 0 0;
    border-top: 1px solid var(--color-gray-200);
    transition: gap 0.3s var(--ease-expo);
}

.lb-product-link:hover {
    gap: 10px;
    opacity: 1;
}

.lb-product-link svg {
    transition: transform 0.3s var(--ease-expo);
}

.lb-product-link:hover svg {
    transform: translateX(3px);
}

/* --- PANEL LABEL --- */
.lb-panel-label {
    padding: 22px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.lb-season-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-gray-400);
}

.lb-season-title {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--color-black);
    margin: 0;
}

.lb-season-line {
    width: 30px;
    height: 1px;
    background: var(--color-gray-300);
    margin: 2px 0;
}

.lb-season-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-black);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: gap 0.3s var(--ease-expo);
}

.lb-season-cta::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-black);
    transition: width 0.4s var(--ease-expo);
}

.lb-season-cta:hover {
    opacity: 1;
    gap: 12px;
}

.lb-season-cta:hover::after {
    width: calc(100% - 22px);
}

.lb-season-cta svg {
    transition: transform 0.3s var(--ease-expo);
}

.lb-season-cta:hover svg {
    transform: translateX(3px);
}

/* --- VERTICAL DIVIDER --- */
.lb-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 30px;
    flex-shrink: 0;
}

.lb-divider-line {
    flex: 1;
    width: 1px;
    background: var(--color-gray-300);
}

.lb-divider-or {
    font-size: 18px;
    font-weight: 200;
    color: var(--color-gray-400);
    padding: 14px 0;
    line-height: 1;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .lb-product-card {
        width: 190px;
    }

    .lb-product-img {
        aspect-ratio: 5 / 3;
    }
}

@media (max-width: 1024px) {
    .lb-section {
        padding: 55px 0 40px;
    }

    .lb-main-title {
        font-size: 26px;
        letter-spacing: 6px;
    }

    .lb-header {
        margin-bottom: 30px;
    }

    .lb-grid {
        padding: 0 30px;
    }

    .lb-header {
        padding: 0 30px;
        gap: 25px;
    }

    .lb-divider {
        padding: 0 16px;
    }

    .lb-panel-image {
        aspect-ratio: 3 / 3.2;
    }

    .lb-grid.lb-grid-single .lb-panel-image {
        aspect-ratio: 16 / 9;
    }

    /* On tablet, cards may overflow — reposition inside image */
    .lb-product-card {
        width: 180px;
    }

    .lb-card-right {
        left: auto;
        right: 10px;
        top: auto;
        bottom: 10px;
        transform: scale(0.92);
    }

    .lb-card-left {
        right: auto;
        left: 10px;
        top: auto;
        bottom: 10px;
        transform: scale(0.92);
    }

    .lb-hotspot.active .lb-product-card {
        transform: scale(1);
    }
}

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

    .lb-header {
        gap: 20px;
        margin-bottom: 28px;
    }

    .lb-main-title {
        font-size: 20px;
        letter-spacing: 5px;
    }

    .lb-main-title br {
        display: none;
    }

    .lb-grid {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .lb-divider {
        flex-direction: row;
        padding: 0;
    }

    .lb-divider-line {
        flex: 1;
        width: auto;
        height: 1px;
    }

    .lb-divider-or {
        padding: 0 16px;
    }

    .lb-panel-image {
        aspect-ratio: 3 / 3.5;
    }

    .lb-grid.lb-grid-single .lb-panel-image {
        aspect-ratio: 3 / 3.8;
    }

    /* Always show hotspots on mobile */
    .lb-hotspot {
        opacity: 1;
    }

    .lb-hotspot-dot {
        width: 30px;
        height: 30px;
    }

    .lb-hotspot-dot svg {
        width: 12px;
        height: 12px;
    }

    /* Cards position: bottom of image, inside */
    .lb-product-card {
        width: 170px;
    }

    .lb-card-right {
        left: auto;
        right: 8px;
        top: auto;
        bottom: 8px;
        transform: scale(0.92);
    }

    .lb-card-left {
        right: auto;
        left: 8px;
        top: auto;
        bottom: 8px;
        transform: scale(0.92);
    }

    .lb-hotspot.active .lb-product-card {
        transform: scale(1);
    }

    .lb-product-info {
        padding: 10px 12px 12px;
    }

    .lb-product-name {
        font-size: 11px;
    }

    .lb-product-price {
        font-size: 11px;
    }

    .lb-season-title {
        font-size: 13px;
        letter-spacing: 5px;
    }

    .lb-panel-label {
        padding: 16px 0 0;
    }
}

@media (max-width: 480px) {
    .lb-section {
        padding: 40px 0 30px;
    }

    .lb-main-title {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .lb-eyebrow {
        font-size: 8px;
        letter-spacing: 3px;
        margin-bottom: 6px;
    }

    .lb-header {
        margin-bottom: 22px;
    }

    .lb-header-line {
        display: none;
    }

    .lb-header {
        justify-content: center;
    }

    .lb-grid {
        gap: 30px;
        padding: 0 16px;
    }

    .lb-panel-image {
        aspect-ratio: 3 / 3.2;
    }

    .lb-grid.lb-grid-single .lb-panel-image {
        aspect-ratio: 3 / 3.6;
    }

    .lb-product-card {
        width: 150px;
    }

    .lb-product-img {
        aspect-ratio: 3 / 2;
    }

    .lb-product-info {
        padding: 8px 10px 10px;
    }

    .lb-product-brand {
        font-size: 7px;
    }

    .lb-product-name {
        font-size: 10px;
    }

    .lb-product-price {
        font-size: 10px;
    }

    .lb-product-link {
        font-size: 8px;
        margin-top: 6px;
        padding: 5px 0 0;
    }

    .lb-season-title {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .lb-season-cta {
        font-size: 9px;
    }
}


/* ============================================
   FOOTER — NORD ARC
   ============================================ */

/* --- NEWSLETTER BAND --- */
.ft-newsletter {
    background: var(--color-black);
    padding: 70px 0;
}

.ft-newsletter-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.ft-newsletter-left {
    flex: 1;
    max-width: 480px;
}

.ft-newsletter-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 14px;
}

.ft-newsletter-title {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--color-white);
    line-height: 1.3;
    margin: 0 0 10px;
}

.ft-newsletter-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0;
}

.ft-newsletter-form {
    flex: 1;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-newsletter-input-wrap {
    display: flex;
    border: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.3s;
}

.ft-newsletter-input-wrap:focus-within {
    border-color: rgba(255,255,255,0.4);
}

.ft-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    outline: none;
}

.ft-newsletter-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.ft-newsletter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--color-white);
    color: var(--color-black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s var(--ease-expo), transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.ft-newsletter-btn:hover {
    background: var(--color-gray-200);
    transform: translateX(2px);
}

.ft-newsletter-btn svg {
    transition: transform 0.3s var(--ease-expo);
}

.ft-newsletter-btn:hover svg {
    transform: translateX(3px);
}

.ft-newsletter-note {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    line-height: 1.5;
}

.ft-newsletter-note a {
    color: rgba(255,255,255,0.45);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ft-newsletter-note a:hover {
    color: var(--color-white);
    opacity: 1;
}


/* --- MAIN FOOTER --- */
.ft-main {
    background: var(--color-black);
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.ft-main-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
}

/* Brand column */
.ft-brand-col {
    padding-right: 30px;
}

.ft-logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--color-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 18px;
    transition: letter-spacing 0.5s var(--ease-expo), opacity 0.3s;
}

.ft-logo:hover {
    letter-spacing: 8px;
    opacity: 1;
}

.ft-brand-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin: 0 0 28px;
}

.ft-social {
    display: flex;
    gap: 6px;
}

.ft-utility-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 14px;
}

.ft-utility-link {
    position: relative;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.56);
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease;
}

.ft-utility-link + .ft-utility-link::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.16);
    transform: translateY(-50%);
}

.ft-utility-link:hover {
    color: var(--color-white);
    opacity: 1;
}

.ft-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.45);
    transition: all 0.35s var(--ease-expo);
}

.ft-social-link:hover {
    border-color: var(--color-white);
    color: var(--color-white);
    background: rgba(255,255,255,0.05);
    opacity: 1;
    transform: translateY(-2px);
}

.ft-social-link svg {
    stroke: currentColor;
}

/* Link columns */
.ft-links-col {
    display: flex;
    flex-direction: column;
}

.ft-accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--color-white);
    padding: 0;
    margin-bottom: 24px;
    cursor: default;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
}

.ft-acc-icon {
    display: none;
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
}

/* Plus icon lines */
.ft-acc-icon::before,
.ft-acc-icon::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.5);
    transition: transform 0.4s var(--ease-expo), opacity 0.3s;
    top: 50%;
    left: 50%;
}

.ft-acc-icon::before {
    width: 12px;
    height: 1px;
    transform: translate(-50%, -50%);
}

.ft-acc-icon::after {
    width: 1px;
    height: 12px;
    transform: translate(-50%, -50%);
}

/* Rotate to minus when open */
.ft-accordion-toggle[aria-expanded="true"] .ft-acc-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.ft-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-links-list li a {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
    position: relative;
    padding: 4px 8px;
    margin: -4px -8px;
    transition: color 0.3s;
}

/* Çizilen dikdörtgen çerçeve — dört kenar ayrı ayrı uzar */
.ft-links-list li a::before,
.ft-links-list li a::after {
    content: '';
    position: absolute;
    border: solid rgba(255,255,255,0.5);
    border-width: 0;
    pointer-events: none;
    transition: border-width 0s, width 0.35s var(--ease-expo), height 0.35s var(--ease-expo);
}

/* Sol-üst köşeden: üst + sol kenarlar */
.ft-links-list li a::before {
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top-width: 1px;
    border-left-width: 1px;
}

/* Sağ-alt köşeden: alt + sağ kenarlar */
.ft-links-list li a::after {
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.ft-links-list li a:hover {
    color: var(--color-white);
    opacity: 1;
}

.ft-links-list li a:hover::before,
.ft-links-list li a:hover::after {
    width: 100%;
    height: 100%;
}


/* --- TRUST BAR --- */
.ft-trust {
    background: var(--color-black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 35px 0;
}

.ft-trust-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ft-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 10px;
}

.ft-trust-item svg {
    stroke: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.ft-trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ft-trust-text strong {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.7);
}

.ft-trust-text span {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}


/* --- BOTTOM BAR --- */
.ft-bottom {
    background: var(--color-black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}

.ft-bottom-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.ft-bottom-left {
    flex-shrink: 0;
}

.ft-copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.3px;
}

.ft-bottom-center {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.ft-bottom-center a {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.ft-bottom-center a:hover {
    color: var(--color-white);
    opacity: 1;
}

.ft-bottom-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.ft-bottom-right {
    flex-shrink: 0;
}

.ft-payments {
    display: flex;
    gap: 6px;
    align-items: center;
}

.ft-pay-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 26px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.35);
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s, color 0.3s;
}

.ft-pay-icon:hover {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.6);
}


/* --- BACK TO TOP --- */
.ft-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 500;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.4s var(--ease-expo),
                visibility 0.4s,
                transform 0.4s var(--ease-expo),
                background 0.3s,
                border-color 0.3s;
}

.ft-back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ft-back-top:hover {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.ft-back-top:hover svg {
    stroke: var(--color-black);
}

.ft-back-top svg {
    stroke: var(--color-white);
    transition: stroke 0.3s, transform 0.3s var(--ease-expo);
}

.ft-back-top:hover svg {
    transform: translateY(-2px);
}


/* --- FOOTER RESPONSIVE: TABLET --- */
@media (max-width: 1024px) {
    .ft-newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 0 40px;
    }

    .ft-newsletter-left,
    .ft-newsletter-form {
        max-width: 100%;
    }

    .ft-main-inner {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 0 40px;
        gap: 40px;
    }

    .ft-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .ft-brand-desc {
        max-width: 420px;
    }

    .ft-trust-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
        gap: 20px;
    }

    .ft-bottom-inner {
        padding: 0 40px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}


/* --- FOOTER RESPONSIVE: MOBILE --- */
@media (max-width: 768px) {
    .ft-newsletter {
        padding: 50px 0;
    }

    .ft-newsletter-inner {
        padding: 0 20px;
    }

    .ft-newsletter-title {
        font-size: 20px;
    }

    .ft-newsletter-input-wrap {
        flex-direction: column;
    }

    .ft-newsletter-btn {
        justify-content: center;
        padding: 15px 20px;
    }

    /* Main footer mobile */
    .ft-main {
        padding: 0;
    }

    .ft-main-inner {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    .ft-brand-col {
        padding: 40px 20px 30px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    /* Accordion behavior on mobile */
    .ft-links-col {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .ft-accordion-toggle {
        cursor: pointer;
        margin-bottom: 0;
        padding: 18px 20px;
        width: 100%;
        transition: background 0.2s;
    }

    .ft-accordion-toggle:active {
        background: rgba(255,255,255,0.03);
    }

    .ft-acc-icon {
        display: block;
    }

    .ft-links-list {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: max-height 0.45s var(--ease-expo),
                    padding 0.45s var(--ease-expo);
    }

    .ft-links-list.open {
        max-height: 320px;
        padding: 0 20px 20px;
    }

    /* Trust bar mobile */
    .ft-trust-inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 0;
    }

    .ft-trust {
        padding: 0;
    }

    .ft-trust-item {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .ft-trust-item:last-child {
        border-bottom: none;
    }

    /* Bottom bar mobile */
    .ft-bottom-inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 18px;
        text-align: center;
    }

    .ft-bottom-center {
        gap: 10px;
    }

    .ft-bottom-center a {
        font-size: 10px;
    }

    .ft-payments {
        justify-content: center;
    }

    .ft-back-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}


/* ============================================
   DISCOUNT BANNER
   ============================================ */
.disc-banner {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disc-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.disc-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.85) saturate(0.8);
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.disc-banner:hover .disc-banner-img {
    transform: scale(1.0);
}

/* Film grain overlay */
.disc-banner-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.4;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Floating discount tags */
.disc-float-tags {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.disc-float-tag {
    position: absolute;
    left: var(--ft-x);
    top: var(--ft-y);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.06);
    animation: discFloat 6s ease-in-out calc(var(--ft-d)) infinite;
    opacity: 0;
    animation-fill-mode: both;
}

@keyframes discFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-18px);
        opacity: 0.85;
    }
}

/* Marquee */
.disc-marquee {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1;
    background: #000;
}

.disc-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: discMarquee 35s linear infinite;
}

.disc-marquee-track span {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #ffffff;
    padding: 12px 0;
}

@keyframes discMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Content */
.disc-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 40px;
}

.disc-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 24px;
}

.disc-headline {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.disc-headline-line {
    display: block;
    color: var(--color-white);
    line-height: 1;
}

.disc-line-1 {
    font-size: clamp(38px, 7vw, 90px);
    font-weight: 200;
    letter-spacing: 14px;
}

.disc-line-2 {
    font-size: clamp(52px, 10vw, 140px);
    font-weight: 900;
    letter-spacing: 8px;
    -webkit-text-stroke: 0;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disc-sub {
    margin: 24px 0 0;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.disc-sub strong {
    color: var(--color-white);
    font-weight: 600;
}

/* CTA Button */
.disc-cta {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-top: 36px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s var(--ease-expo);
}

.disc-cta:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.disc-cta-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-white);
    padding: 18px 36px;
    transition: background 0.3s, padding-right 0.3s var(--ease-expo);
}

.disc-cta:hover .disc-cta-text {
    padding-right: 28px;
}

.disc-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: var(--color-white);
    color: var(--color-black);
    border-left: 1px solid rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s;
}

.disc-cta:hover .disc-cta-arrow {
    background: var(--color-black);
    color: var(--color-white);
}

.disc-cta-arrow svg {
    transition: transform 0.4s var(--ease-expo);
}

.disc-cta:hover .disc-cta-arrow svg {
    transform: translateX(4px);
}

/* Corner decorative frames */
.disc-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}

.disc-corner::before,
.disc-corner::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.15);
}

.disc-corner-tl { top: 40px; left: 40px; }
.disc-corner-tl::before { top: 0; left: 0; width: 30px; height: 1px; }
.disc-corner-tl::after { top: 0; left: 0; width: 1px; height: 30px; }

.disc-corner-tr { top: 40px; right: 40px; }
.disc-corner-tr::before { top: 0; right: 0; width: 30px; height: 1px; }
.disc-corner-tr::after { top: 0; right: 0; width: 1px; height: 30px; }

.disc-corner-bl { bottom: 40px; left: 40px; }
.disc-corner-bl::before { bottom: 0; left: 0; width: 30px; height: 1px; }
.disc-corner-bl::after { bottom: 0; left: 0; width: 1px; height: 30px; }

.disc-corner-br { bottom: 40px; right: 40px; }
.disc-corner-br::before { bottom: 0; right: 0; width: 30px; height: 1px; }
.disc-corner-br::after { bottom: 0; right: 0; width: 1px; height: 30px; }

/* Banner responsive */
@media (max-width: 768px) {
    .disc-banner {
        height: 75vh;
        min-height: 480px;
    }
    .disc-line-1 { letter-spacing: 8px; }
    .disc-line-2 { letter-spacing: 4px; }
    .disc-eyebrow { font-size: 9px; letter-spacing: 4px; padding: 6px 18px; }
    .disc-sub { font-size: 12px; }
    .disc-corner { width: 40px; height: 40px; }
    .disc-corner-tl,
    .disc-corner-tr { top: 20px; }
    .disc-corner-bl,
    .disc-corner-br { bottom: 20px; }
    .disc-corner-tl,
    .disc-corner-bl { left: 20px; }
    .disc-corner-tr,
    .disc-corner-br { right: 20px; }
    .disc-corner::before { width: 20px; }
    .disc-corner::after { height: 20px; }
    .disc-float-tag { font-size: 11px; padding: 6px 12px; }
    .disc-cta-text { padding: 15px 28px; font-size: 10px; }
    .disc-cta-arrow { width: 48px; height: 48px; }
}


/* ============================================
   QUICK SHOP MODAL
   ============================================ */

/* Overlay */
.qs-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    visibility: hidden;
    pointer-events: none;
    transition: background 0.45s cubic-bezier(0.76, 0, 0.24, 1),
                backdrop-filter 0.45s,
                visibility 0.45s;
    padding: 30px;
}

.qs-overlay.active {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    visibility: visible;
    pointer-events: auto;
}

/* Modal */
.qs-modal {
    position: relative;
    background: var(--color-white);
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.5s var(--ease-expo),
                opacity 0.4s ease;
}

.qs-overlay.active .qs-modal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Close button */
.qs-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--color-gray-500);
    transition: color 0.25s, transform 0.25s var(--ease-expo);
}

.qs-close:hover {
    color: var(--color-black);
    transform: rotate(90deg);
}

/* Body layout */
.qs-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
}

/* ---- GALLERY ---- */
.qs-gallery {
    background: var(--color-gray-50);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.qs-gallery-main {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    min-height: 0;
    overflow: hidden;
}

.qs-main-img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-expo), opacity 0.3s;
    cursor: zoom-in;
}

.qs-main-img:hover {
    transform: scale(1.04);
}

.qs-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    background: var(--color-black);
    padding: 6px 14px;
}

/* Thumbnails */
.qs-gallery-thumbs {
    display: flex;
    gap: 3px;
    padding: 0 30px 20px;
    flex-shrink: 0;
}

.qs-thumb {
    flex: 1;
    height: 3px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    background: var(--color-gray-200);
    transition: background 0.3s;
    border-radius: 1.5px;
}

.qs-thumb.active {
    background: var(--color-black);
}

.qs-thumb:hover {
    background: var(--color-gray-400);
}

.qs-thumb.active:hover {
    background: var(--color-black);
}

/* Thumbnail images are hidden (lines only) */
.qs-thumb img {
    display: none;
}

/* ---- DETAILS ---- */
.qs-details {
    display: flex;
    flex-direction: column;
    padding: 36px 36px 30px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.qs-details::-webkit-scrollbar {
    width: 3px;
}

.qs-details::-webkit-scrollbar-thumb {
    background: var(--color-gray-300);
}

.qs-details-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qs-brand {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-gray-500);
}

.qs-product-name {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-black);
    line-height: 1.3;
    margin: 0;
}

.qs-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.qs-price-old {
    font-size: 14px;
    color: var(--color-gray-400);
    text-decoration: line-through;
}

.qs-price-now {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

.qs-discount-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c0392b;
    background: #fdf0ef;
    padding: 3px 8px;
}

/* Rating */
.qs-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qs-stars {
    display: flex;
    gap: 1px;
    color: var(--color-black);
}

.qs-review-count {
    font-size: 11px;
    color: var(--color-gray-500);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

/* Divider */
.qs-divider {
    height: 1px;
    background: var(--color-gray-100);
    margin: 20px 0;
}

/* Option groups */
.qs-option-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.qs-inline-notice {
    display: none;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 18px;
    padding: 13px 14px;
    border: 1px solid transparent;
    font-size: 12px;
    line-height: 1.5;
}

.qs-inline-notice.is-visible {
    display: flex;
}

.qs-inline-notice__icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    flex: 0 0 18px;
    position: relative;
    margin-top: 1px;
}

.qs-inline-notice__icon::before,
.qs-inline-notice__icon::after {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    background: currentColor;
    transform-origin: center;
}

.qs-inline-notice.is-warning {
    background: #fff8e8;
    border-color: #f0d59a;
    color: #8a6512;
}

.qs-inline-notice.is-warning .qs-inline-notice__icon {
    background: #e1ac2f;
    color: #fff;
}

.qs-inline-notice.is-warning .qs-inline-notice__icon::before {
    width: 2px;
    height: 7px;
    transform: translate(-50%, -70%);
}

.qs-inline-notice.is-warning .qs-inline-notice__icon::after {
    width: 2px;
    height: 2px;
    transform: translate(-50%, 120%);
}

.qs-inline-notice.is-error {
    background: #fff1ef;
    border-color: #efc0bb;
    color: #992d22;
}

.qs-inline-notice.is-error .qs-inline-notice__icon,
.qs-inline-notice.is-success .qs-inline-notice__icon {
    color: #fff;
}

.qs-inline-notice.is-error .qs-inline-notice__icon {
    background: #c44332;
}

.qs-inline-notice.is-error .qs-inline-notice__icon::before,
.qs-inline-notice.is-error .qs-inline-notice__icon::after {
    width: 9px;
    height: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.qs-inline-notice.is-error .qs-inline-notice__icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.qs-inline-notice.is-success {
    background: #eef8f1;
    border-color: #b9dec4;
    color: #1f6c3a;
}

.qs-inline-notice.is-success .qs-inline-notice__icon {
    background: #2f8d53;
}

.qs-inline-notice.is-success .qs-inline-notice__icon::before {
    width: 4px;
    height: 2px;
    transform: translate(-115%, 25%) rotate(45deg);
}

.qs-inline-notice.is-success .qs-inline-notice__icon::after {
    width: 8px;
    height: 2px;
    transform: translate(-18%, -15%) rotate(-45deg);
}

.qs-option-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-gray-600);
}

.qs-option-label strong {
    color: var(--color-black);
    font-weight: 600;
    margin-left: 6px;
}

.qs-size-guide-link {
    font-size: 11px;
    color: var(--color-gray-500);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.qs-size-guide-link:hover {
    color: var(--color-black);
    opacity: 1;
}

/* Color options */
.qs-color-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.qs-related-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qs-related-color {
    width: 44px;
    height: 56px;
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
    display: block;
    background: var(--color-gray-50);
    transition: border-color 0.25s, transform 0.25s var(--ease-expo), box-shadow 0.25s var(--ease-expo);
}

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

.qs-related-color:hover {
    border-color: var(--color-black);
    transform: translateY(-2px);
}

.qs-related-color.active {
    border-color: var(--color-black);
    box-shadow: 0 0 0 1px var(--color-black) inset;
}

.qs-varyas-dot {
    cursor: pointer;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, outline-color 0.2s ease;
}

.qs-varyas-dot:hover {
    transform: translateY(-1px);
}

.qs-varyas-dot.active {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

.qs-color-swatch {
    width: 44px;
    height: 44px;
    border: 2px solid transparent;
    padding: 2px;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s var(--ease-expo);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.qs-color-swatch.active {
    border-color: var(--color-black);
}

.qs-color-swatch:hover {
    transform: translateY(-2px);
}

.qs-color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* For solid color fallback */
.qs-color-swatch-solid {
    width: 44px;
    height: 44px;
    border: 2px solid transparent;
    padding: 2px;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s var(--ease-expo);
    position: relative;
    flex-shrink: 0;
}

.qs-color-swatch-solid.active {
    border-color: var(--color-black);
}

.qs-color-swatch-solid:hover {
    transform: translateY(-2px);
}

.qs-color-swatch-inner {
    width: 100%;
    height: 100%;
    display: block;
}

/* Size options */
.qs-size-options {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.qs-size-btn {
    min-width: 52px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-200);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-black);
    background: var(--color-white);
    cursor: pointer;
    padding: 0 14px;
    transition: all 0.25s var(--ease-expo);
    position: relative;
}

.qs-size-btn:hover:not(:disabled):not(.active) {
    border-color: var(--color-black);
}

.qs-size-btn.active {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* Low stock size */
.qs-size-low {
    border-color: #e8c34a;
}

.qs-size-stock {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #b8941e;
    white-space: nowrap;
    margin-top: 1px;
}

.qs-size-btn.active .qs-size-stock {
    color: rgba(255,255,255,0.7);
}

/* Sold out size */
.qs-size-out {
    color: var(--color-gray-300);
    border-color: var(--color-gray-100);
    cursor: not-allowed;
    position: relative;
    background: var(--color-gray-50);
}

.qs-size-out::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 4px;
    right: 4px;
    height: 1px;
    background: var(--color-gray-300);
    transform: rotate(-12deg);
}

/* Action row */
.qs-action-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

/* Quantity */
.qs-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-gray-200);
    flex-shrink: 0;
}

.qs-qty-btn {
    width: 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-gray-600);
    transition: color 0.2s, background 0.2s;
}

.qs-qty-btn:hover {
    color: var(--color-black);
    background: var(--color-gray-50);
}

.qs-qty-val {
    font-size: 13px;
    font-weight: 600;
    min-width: 28px;
    text-align: center;
    color: var(--color-black);
}

/* Add to bag */
.qs-add-bag {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-black);
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    height: 46px;
    transition: background 0.3s, transform 0.2s var(--ease-expo);
}

.qs-add-bag:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.qs-add-bag svg {
    stroke: var(--color-white);
}

/* Wishlist — görsel sağ üstü, kapat butonunun hemen altında */
.qs-gallery-wish {
    position: absolute;
    top: 64px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    color: var(--color-gray-400);
    z-index: 5;
    transition: color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-expo);
    border: none;
    cursor: pointer;
}

.qs-gallery-wish:hover {
    color: var(--color-black);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    transform: scale(1.08);
}

.qs-gallery-wish.active {
    color: #c0392b;
}

.qs-gallery-wish.active svg {
    fill: #c0392b;
    stroke: #c0392b;
}

/* Shipping info */
.qs-shipping {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--color-gray-100);
    background: var(--color-gray-50);
}

.qs-shipping-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}

.qs-shipping-row + .qs-shipping-row {
    border-top: 1px solid var(--color-gray-100);
}

.qs-shipping-row svg {
    flex-shrink: 0;
    stroke: var(--color-gray-500);
}

.qs-shipping-row div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.qs-shipping-row strong {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: 0.3px;
}

.qs-shipping-row span {
    font-size: 11px;
    color: var(--color-gray-500);
}

/* View full product link */
.qs-view-full {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-gray-500);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s, gap 0.3s var(--ease-expo);
    align-self: flex-start;
}

.qs-view-full:hover {
    color: var(--color-black);
    gap: 10px;
    opacity: 1;
}


/* ---- QUICK SHOP RESPONSIVE ---- */
@media (max-width: 768px) {
  @media (max-width: 768px) {
      .qs-overlay {
          padding: 0;
          align-items: flex-end;
      }

      .qs-modal {
          max-width: 100%;
          max-height: 95vh;
          border-radius: 16px 16px 0 0;
          transform: translateY(100%);
      }

      .qs-overlay.active .qs-modal {
          transform: translateY(0);
      }

      .qs-body {
          grid-template-columns: 1fr;
          overflow-y: auto;
          max-height: 95vh;
          -webkit-overflow-scrolling: touch;
      }

      /* Gallery — image starts from very top, vertical layout */
      .qs-gallery {
          position: relative;
          overflow: hidden;
      }

      .qs-gallery-main {
          padding: 0;
          aspect-ratio: 3/4;
          align-items: flex-start;
          justify-content: center;
      }

      .qs-main-img {
          width: 100%;
          height: 100%;
          max-height: none;
          object-fit: cover;
          object-position: top center;
          border-radius: 16px 16px 0 0;
      }

      .qs-main-img:hover {
          transform: none;
      }

      /* Line indicators on mobile */
      .qs-gallery-thumbs {
          position: absolute;
          bottom: 16px;
          left: 20px;
          right: 20px;
          padding: 0;
          gap: 4px;
          z-index: 5;
      }

      .qs-thumb {
          height: 2.5px;
          background: rgba(255, 255, 255, 0.4);
          border-radius: 2px;
          backdrop-filter: blur(2px);
          -webkit-backdrop-filter: blur(2px);
      }

      .qs-thumb.active {
          background: rgba(255, 255, 255, 0.95);
      }

      .qs-thumb:hover {
          background: rgba(255, 255, 255, 0.6);
      }

      .qs-thumb.active:hover {
          background: rgba(255, 255, 255, 0.95);
      }

      .qs-badge {
          top: 16px;
          left: 16px;
      }

      /* Details */
      .qs-details {
          padding: 24px 20px 40px;
          overflow-y: visible;
      }

      .qs-close {
          top: 12px;
          right: 12px;
          background: rgba(255, 255, 255, 0.85);
          backdrop-filter: blur(6px);
          -webkit-backdrop-filter: blur(6px);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
          border-radius: 50%;
          color: var(--color-black);
      }

      .qs-product-name {
          font-size: 18px;
      }

      .qs-action-row {
          flex-wrap: wrap;
      }

      .qs-add-bag {
          order: -1;
          flex-basis: 100%;
      }

      .qs-qty {
          flex: 1;
      }

      /* Mobilde kapat butonu top:12px + 40px yükseklik + 8px boşluk = 60px */
      .qs-gallery-wish {
          top: 60px;
          right: 12px;
          background: rgba(255,255,255,0.9);
          backdrop-filter: blur(6px);
          -webkit-backdrop-filter: blur(6px);
      }
  }
}


/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-white);
    box-shadow: 0 -4px 40px rgba(0,0,0,0.08), 0 -1px 0 rgba(0,0,0,0.04);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 22px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.cookie-icon-wrap {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-200);
    flex-shrink: 0;
    color: var(--color-black);
}

.cookie-text {
    min-width: 0;
}

.cookie-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-black);
    margin: 0 0 3px;
    text-transform: uppercase;
}

.cookie-desc {
    font-size: 12px;
    color: var(--color-gray-600);
    margin: 0;
    line-height: 1.5;
}

.cookie-desc a {
    color: var(--color-black);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-desc a:hover {
    opacity: 1;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 13px 22px;
    cursor: pointer;
    border: none;
    transition: all 0.25s var(--ease-expo);
    white-space: nowrap;
    text-transform: uppercase;
}

.cookie-btn-settings {
    background: transparent;
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-600);
}

.cookie-btn-settings:hover {
    border-color: var(--color-black);
    color: var(--color-black);
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-600);
}

.cookie-btn-reject:hover {
    border-color: var(--color-black);
    color: var(--color-black);
}

.cookie-btn-accept {
    background: var(--color-black);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background: #222;
    transform: translateY(-1px);
}

/* Settings panel */
.cookie-settings-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-expo);
    border-top: 0 solid var(--color-gray-200);
}

.cookie-settings-panel.open {
    max-height: 400px;
    border-top-width: 1px;
}

.cookie-settings-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 50px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.cookie-setting-row:last-of-type {
    border-bottom: none;
}

.cookie-setting-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cookie-setting-info strong {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

.cookie-setting-info span {
    font-size: 11px;
    color: var(--color-gray-500);
}

/* Toggle switch */
.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-toggle input {
    display: none;
}

.cookie-toggle-slider {
    width: 40px;
    height: 22px;
    background: var(--color-gray-200);
    border-radius: 11px;
    position: relative;
    transition: background 0.3s;
}

.cookie-toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    transition: transform 0.3s var(--ease-expo);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--color-black);
}

.cookie-toggle input:checked + .cookie-toggle-slider::after {
    transform: translateX(18px);
}

.cookie-toggle-disabled {
    cursor: default;
    opacity: 0.5;
}

.cookie-toggle-label {
    font-size: 10px;
    color: var(--color-gray-500);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 8px;
}

.cookie-btn-save {
    background: var(--color-black);
    color: var(--color-white);
}

.cookie-btn-save:hover {
    background: #222;
    transform: translateY(-1px);
}

/* Cookie responsive */
@media (max-width: 1024px) {
    .cookie-inner {
        padding: 20px 40px;
    }
    .cookie-settings-inner {
        padding: 20px 40px 24px;
    }
}

@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 16px;
        gap: 16px;
    }

    .cookie-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-icon-wrap {
        width: 36px;
        height: 36px;
    }

    .cookie-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .cookie-btn-accept {
        grid-column: 1 / -1;
        text-align: center;
    }

    .cookie-btn {
        padding: 12px 16px;
        font-size: 9px;
        text-align: center;
    }

    .cookie-settings-inner {
        padding: 16px 20px 20px;
    }

    .cookie-setting-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-settings-actions {
        justify-content: stretch;
    }

    .cookie-btn-save {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .search-container {
        width: calc(100% - 34px);
        padding-top: 96px;
    }

    .search-top input {
        font-size: 25px;
        letter-spacing: 0.04em;
    }

    .search-result-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 14px;
        padding: 16px;
    }

    .search-result-img {
        width: 76px;
        height: 96px;
    }

    .search-result-name {
        font-size: 13px;
        letter-spacing: 0.06em;
    }

    .search-result-state,
    .search-result-empty,
    .search-see-all {
        padding-left: 16px;
        padding-right: 16px;
    }

    .search-see-all a {
        width: 100%;
        min-width: 0;
    }
}


/* ============================================
   ŞIKLIK REHBERİ (BLOG) — .hb-*
   ============================================ */
.hb-section {
    width: 100%;
    padding: 100px 0 110px;
    background: var(--color-gray-50, #fafafa);
    overflow: hidden;
}
.hb-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
}

/* --- Header --- */
.hb-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.hb-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hb-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gray-500);
    text-transform: uppercase;
}
.hb-title {
    font-size: 32px;
    font-weight: 200;
    letter-spacing: 6px;
    line-height: 1.1;
    color: var(--color-black);
    margin: 0;
}
.hb-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-black);
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.35s var(--ease-expo, cubic-bezier(0.16,1,0.3,1));
}
.hb-all-link:hover { gap: 16px; }
.hb-all-link svg { flex-shrink: 0; transition: transform 0.3s; }
.hb-all-link:hover svg { transform: translateX(2px); }

/* --- Grid: Sol büyük + sağ üç küçük --- */
.hb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--color-gray-200, #e5e5e5);
    background: var(--color-white);
}

/* --- Ana Kart (sol) --- */
.hb-main-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-right: 1px solid var(--color-gray-200, #e5e5e5);
    transition: background 0.3s;
}
.hb-main-card:hover { background: var(--color-gray-50, #fafafa); }
.hb-main-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-gray-100, #f0f0f0);
}
.hb-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top !important;
    transform-origin: center top;
    transition: transform 0.7s var(--ease-expo, cubic-bezier(0.16,1,0.3,1));
}
.hb-main-card:hover .hb-main-img img { transform: scale(1.04); }
.hb-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.03) 100%);
    pointer-events: none;
}
.hb-main-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100, #f0f0f0);
    color: var(--color-gray-300);
}
.hb-main-content {
    padding: 32px 36px 36px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hb-main-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.hb-main-date {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-gray-500);
    text-transform: uppercase;
}
.hb-main-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-gray-400);
}
.hb-main-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-black);
    text-transform: uppercase;
}
.hb-main-title {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.35;
    color: var(--color-black);
    margin: 0 0 12px;
}
.hb-main-excerpt {
    font-size: 13px;
    color: var(--color-gray-500);
    line-height: 1.8;
    margin: 0 0 auto;
    padding-bottom: 20px;
}
.hb-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-black);
    text-transform: uppercase;
    transition: gap 0.3s var(--ease-expo, cubic-bezier(0.16,1,0.3,1));
}
.hb-main-card:hover .hb-read-more { gap: 14px; }

/* --- Yan Kartlar (sağ, 3 adet üst üste) --- */
.hb-side-cards {
    display: flex;
    flex-direction: column;
}
.hb-side-card {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--color-gray-200, #e5e5e5);
    flex: 1;
    min-height: 0;
    transition: background 0.3s;
}
.hb-side-card:last-child { border-bottom: none; }
.hb-side-card:hover { background: var(--color-gray-50, #fafafa); }
.hb-side-img {
    width: 180px;
    min-width: 180px;
    overflow: hidden;
    background: var(--color-gray-100, #f0f0f0);
    flex-shrink: 0;
}
.hb-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top !important;
    transform-origin: center top;
    transition: transform 0.6s var(--ease-expo, cubic-bezier(0.16,1,0.3,1));
}
.hb-side-card:hover .hb-side-img img { transform: scale(1.06); }
.hb-side-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-300);
}
.hb-side-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 28px;
    flex: 1;
    min-width: 0;
}
.hb-side-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.hb-side-date {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-gray-500);
    text-transform: uppercase;
}
.hb-side-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-gray-400);
}
.hb-side-cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-black);
    text-transform: uppercase;
}
.hb-side-title {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.45;
    color: var(--color-black);
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hb-side-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gray-500);
    text-transform: uppercase;
    transition: color 0.2s, gap 0.3s;
}
.hb-side-card:hover .hb-side-link { color: var(--color-black); gap: 12px; }

/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
    .hb-section { padding: 70px 0 80px; }
    .hb-container { padding: 0 32px; }
    .hb-header { margin-bottom: 36px; }
    .hb-title { font-size: 26px; letter-spacing: 4px; }
    .hb-side-img { width: 140px; min-width: 140px; }
    .hb-side-info { padding: 16px 20px; }
    .hb-side-title { font-size: 14px; }
    .hb-main-content { padding: 24px 28px 28px; }
    .hb-main-title { font-size: 18px; }
}

/* --- Mobil (768px) --- */
@media (max-width: 768px) {
    .hb-section { padding: 56px 0 64px; }
    .hb-container { padding: 0 20px; }
    .hb-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
    .hb-title { font-size: 22px; letter-spacing: 3px; }
    .hb-grid {
        grid-template-columns: 1fr;
    }
    .hb-main-card { border-right: none; border-bottom: 1px solid var(--color-gray-200, #e5e5e5); }
    .hb-main-img { aspect-ratio: 16 / 9; }
    .hb-main-content { padding: 20px 24px 24px; }
    .hb-main-title { font-size: 17px; }
    .hb-main-excerpt { font-size: 12px; }
    .hb-side-card { flex-direction: row; }
    .hb-side-img { width: 110px; min-width: 110px; }
    .hb-side-info { padding: 14px 16px; }
    .hb-side-title { font-size: 13px; -webkit-line-clamp: 2; }
    .hb-side-meta { margin-bottom: 6px; }
}

/* --- Küçük mobil (480px) --- */
@media (max-width: 480px) {
    .hb-section { padding: 44px 0 50px; }
    .hb-main-img { aspect-ratio: 4 / 3; }
    .hb-side-img { width: 90px; min-width: 90px; }
    .hb-side-info { padding: 12px 14px; }
    .hb-side-title { font-size: 12px; }
    .hb-side-link { font-size: 8px; }
}


/* --- GLOBAL RESPONSIVE --- */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero-content h1 { font-size: 32px; letter-spacing: 2px; }
    .hero-content p { font-size: 13px; }
    .cta-button { padding: 14px 35px; font-size: 10px; }
}
