@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --black: #050403;
    --surface: #14100a;
    --surface-2: #1c160d;
    --line: rgba(224,184,74,0.14);
    --white: #f5efe0;
    --gray: #a89b7d;
    --gold: #e0b84a;
    --gold-dim: #c9962f;
    --gold-soft: rgba(224,184,74,0.1);
}

body {
    background: radial-gradient(ellipse at 20% 0%, #1a1408, var(--black) 55%);
    color: var(--white);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
.hidden { display: none !important; }
img { display: block; max-width: 100%; }

h1, h2, h3, .font-display { font-family: "Playfair Display", serif; }

.gold-text {
    background: linear-gradient(120deg, var(--white), var(--gold), var(--white));
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: goldShift 6s linear infinite;
}
@keyframes goldShift { to { background-position: 200% center; } }

/* =========================================
   LOADER
========================================= */

.store-loader {
    position: fixed; inset: 0; z-index: 9998;
    background: var(--black);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 22px;
    animation: loaderHide 0.7s ease 1.3s forwards;
}
.loader-logo { width: 140px; opacity: 0; animation: fadeIn 0.6s ease 0.15s forwards; }
.loader-logo img { width: 100%; filter: brightness(0) invert(1); }
.loader-line { width: 190px; height: 1px; background: rgba(224,184,74,0.15); overflow: hidden; }
.loader-line span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); animation: loaderProgress 1s ease 0.3s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes loaderProgress { to { width: 100%; } }
@keyframes loaderHide { to { opacity: 0; visibility: hidden; } }

/* =========================================
   NAVBAR
========================================= */

.store-navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: 82px;
    padding: 0 5vw;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(5,4,3,0.72);
    backdrop-filter: blur(16px);
    z-index: 1000;
    transition: height 0.3s ease, background 0.3s ease;
}
.store-navbar.scrolled { height: 66px; background: rgba(5,4,3,0.94); }

.store-logo { width: 128px; display: flex; align-items: center; }
.store-logo img { width: 100%; max-height: 48px; object-fit: contain; filter: brightness(0) invert(1); }

.store-nav-links { display: flex; align-items: center; gap: 34px; }
.store-nav-links a {
    position: relative; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    color: var(--gray); transition: color 0.3s ease;
}
.store-nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px;
    background: var(--gold); transition: width 0.3s ease;
}
.store-nav-links a:hover, .store-nav-links a.active { color: var(--white); }
.store-nav-links a:hover::after, .store-nav-links a.active::after { width: 100%; }

.store-actions { display: flex; align-items: center; gap: 12px; }
.account-button, .cart-button {
    min-height: 40px; padding: 0 15px;
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--line); background: transparent;
    font-size: 10px; font-weight: 700; letter-spacing: 1px; cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.account-button:hover { border-color: rgba(224,184,74,0.4); transform: translateY(-2px); }
.account-icon { color: var(--gold); font-size: 12px; }

.cart-button { border-color: var(--gold); color: var(--gold); position: relative; }
.cart-button:hover { background: linear-gradient(120deg, var(--gold-dim), var(--gold)); color: var(--black); transform: translateY(-2px); }
.cart-count {
    min-width: 17px; height: 17px; padding: 0 4px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--gold); color: var(--black);
    font-size: 9px; font-weight: 800;
}
.cart-button:hover .cart-count { background: var(--black); color: var(--gold); }

/* =========================================
   HERO — tam ekran görsel zemin
========================================= */

.store-hero {
    min-height: 92vh; padding: 150px 8vw 80px;
    display: flex; align-items: flex-end; position: relative;
    overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-media-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(5,4,3,0.35) 0%, rgba(5,4,3,0.25) 45%, var(--black) 96%),
        linear-gradient(90deg, rgba(5,4,3,0.75) 0%, rgba(5,4,3,0.15) 55%);
}

.hero-content { max-width: 740px; position: relative; z-index: 2; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px;
    font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--gold);
    opacity: 0; animation: rise 0.8s ease 0.3s forwards;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: dotPulse 2s infinite; }
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(224,184,74,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(224,184,74,0); }
}

.hero-content h1 {
    font-weight: 700; font-size: clamp(48px, 6.4vw, 86px); line-height: 1.08;
    text-shadow: 0 10px 40px rgba(0,0,0,0.5);
    opacity: 0; animation: rise 0.9s ease 0.42s forwards;
}

.hero-content p {
    max-width: 440px; margin-top: 28px; font-size: 16px; line-height: 1.85; color: var(--gray);
    opacity: 0; animation: rise 0.9s ease 0.54s forwards;
}

.hero-buttons { margin-top: 38px; opacity: 0; animation: rise 0.9s ease 0.66s forwards; }
.primary-button {
    display: inline-flex; align-items: center; gap: 26px;
    min-height: 56px; padding: 0 26px;
    background: linear-gradient(120deg, var(--gold-dim), var(--gold));
    color: var(--black); font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
    box-shadow: 0 20px 50px rgba(224,184,74,0.18);
    transition: transform 0.3s ease;
}
.primary-button b { font-size: 17px; font-weight: 400; }
.primary-button:hover { transform: translateY(-4px); }

@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   PAGE HEADER (products.html, campaigns.html)
========================================= */

.page-header { padding: 150px 8vw 60px; position: relative; }
.page-header .hero-eyebrow { opacity: 1; animation: none; }
.page-header h1 { opacity: 1; animation: none; font-weight: 700; font-size: clamp(40px, 5.4vw, 72px); line-height: 1.1; }
.page-header p { opacity: 1; animation: none; margin-top: 20px; max-width: 480px; color: var(--gray); font-size: 15px; line-height: 1.8; }

/* =========================================
   FILMSTRIP — kayan görsel şeridi
========================================= */

.filmstrip-section { overflow: hidden; background: var(--black); padding: 4px 0; }
.filmstrip-track {
    width: max-content; display: flex; align-items: center; gap: 4px;
    animation: filmstripMove 34s linear infinite;
}
.filmstrip-item { width: 190px; height: 130px; flex-shrink: 0; overflow: hidden; }
.filmstrip-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.9); transition: filter 0.4s ease; }
.filmstrip-item:hover img { filter: saturate(1.1) brightness(1); }
@keyframes filmstripMove { to { transform: translateX(-50%); } }

/* =========================================
   MARQUEE
========================================= */

.store-marquee { padding: 18px 0; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; animation: marqueeMove 22s linear infinite; white-space: nowrap; }
.marquee-track span { font-family: "Playfair Display", serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; }
.marquee-track i { color: var(--gold); font-style: normal; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* =========================================
   KATEGORİ KARTLARI
========================================= */

.category-section { padding: 110px 8vw 40px; }
.category-heading { max-width: 560px; margin-bottom: 46px; }
.category-heading h2 { margin-top: 14px; font-weight: 700; font-size: clamp(32px, 4vw, 54px); line-height: 1.08; }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.category-card {
    position: relative; display: block; height: 420px; overflow: hidden;
    border: 1px solid var(--line);
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.category-card:hover img { transform: scale(1.08); }

.category-card-overlay {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
    padding: 26px; background: linear-gradient(0deg, rgba(5,4,3,0.85) 0%, rgba(5,4,3,0.05) 55%);
}
.category-card-overlay h3 { font-size: 22px; font-weight: 600; }
.category-card-overlay span { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--gold); opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.3s ease; }
.category-card:hover .category-card-overlay span { opacity: 1; transform: translateY(0); }

/* =========================================
   SHOP
========================================= */

.shop-section { padding: 120px 8vw 100px; }
.shop-section.no-pad-top { padding-top: 40px; }

.shop-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 56px; flex-wrap: wrap; }
.section-number { display: block; margin-bottom: 8px; font-size: 11px; color: var(--gold); font-weight: 700; }
.section-eyebrow { font-size: 10px; letter-spacing: 2px; color: var(--gray); margin-bottom: 14px; text-transform: uppercase; }
.shop-header h2 { font-weight: 700; font-size: clamp(34px, 4.4vw, 60px); line-height: 1.05; }

.shop-search {
    height: 46px; min-width: 260px;
    display: flex; align-items: center; gap: 10px;
    padding: 0 16px; border: 1px solid var(--line); background: var(--surface);
}
.shop-search span { color: var(--gray); font-size: 18px; }
.shop-search input { width: 100%; border: none; outline: none; background: transparent; color: var(--white); font-size: 14px; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.product-card {
    background: linear-gradient(160deg, rgba(224,184,74,0.05), rgba(0,0,0,0.3));
    border: 1px solid var(--line);
    display: flex; flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 0; transform: translateY(30px);
}
.product-card.in-view { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.product-card:hover { transform: translateY(-6px); border-color: rgba(224,184,74,0.4); box-shadow: 0 25px 60px rgba(224,184,74,0.1); }

.product-image-wrap {
    position: relative; height: 320px; overflow: hidden;
    background: linear-gradient(150deg, var(--surface-2), var(--black));
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
}
.product-image-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.06); }

.product-badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    padding: 6px 10px; background: linear-gradient(120deg, var(--gold-dim), var(--gold));
    color: var(--black); font-size: 9px; font-weight: 800; letter-spacing: 1px;
}

.product-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-brand { font-size: 10px; letter-spacing: 1px; color: var(--gray); }
.product-name { font-family: "Playfair Display", serif; font-size: 17px; font-weight: 600; line-height: 1.3; min-height: 40px; }

.product-price-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { display: flex; flex-direction: column; }
.product-price .original { font-size: 11px; color: var(--gray); text-decoration: line-through; }
.product-price .current { font-size: 16px; font-weight: 800; color: var(--gold); }

.add-to-cart-btn {
    width: 38px; height: 38px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gold); background: transparent; color: var(--gold);
    font-size: 18px; cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.add-to-cart-btn:hover { background: linear-gradient(120deg, var(--gold-dim), var(--gold)); color: var(--black); transform: scale(1.06); }
.add-to-cart-btn.added { background: linear-gradient(120deg, var(--gold-dim), var(--gold)); color: var(--black); }
.add-to-cart-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.shop-loading, .shop-empty { padding: 80px 0; display: flex; flex-direction: column; align-items: center; gap: 16px; color: var(--gray); }
.loader { width: 30px; height: 30px; border-radius: 50%; border: 3px solid rgba(224,184,74,0.15); border-top-color: var(--gold); animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================
   CAMPAIGN BAND — görsel zemin
========================================= */

.campaign-section {
    position: relative; overflow: hidden; min-height: 420px; padding: 90px 8vw;
    display: flex; align-items: center; border-top: 1px solid var(--line);
}
.campaign-media { position: absolute; inset: 0; z-index: 0; }
.campaign-media img { width: 100%; height: 100%; object-fit: cover; }
.campaign-media-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(5,4,3,0.92) 10%, rgba(18,14,7,0.55) 55%, rgba(30,21,9,0.35) 100%);
}
.campaign-content { position: relative; z-index: 2; }
.campaign-content > span { font-size: 11px; letter-spacing: 2px; color: var(--gold); }
.campaign-content h2 { margin-top: 20px; font-weight: 700; font-size: clamp(36px, 5.2vw, 72px); line-height: 1.05; }
.campaign-content h2 strong { margin-top: 20px; font-weight: 700; font-size: clamp(36px, 5.2vw, 72px); line-height: 1.05; }
.campaign-content p { max-width: 380px; margin-top: 20px; color: var(--gray); line-height: 1.8; }
.campaign-number {
    position: absolute; right: 4vw; bottom: -30px; z-index: 1;
    font-family: "Playfair Display", serif; font-size: clamp(120px, 18vw, 280px); font-weight: 800;
    color: rgba(224,184,74,0.05);
}

/* =========================================
   EDİTORYAL GALERİ (LOOKBOOK)
========================================= */

.lookbook-section { padding: 100px 8vw 40px; }
.lookbook-heading { max-width: 560px; margin-bottom: 46px; }
.lookbook-heading h2 { margin-top: 14px; font-weight: 700; font-size: clamp(32px, 4vw, 54px); line-height: 1.08; }

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
}
.lookbook-item { overflow: hidden; border: 1px solid var(--line); }
.lookbook-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.lookbook-item:hover img { transform: scale(1.05); }

.lb-tall { grid-row: span 2; }
.lb-wide { grid-column: span 2; }

/* =========================================
   BENEFITS — görselli kartlar
========================================= */

.benefits-section { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-card { border-right: 1px solid var(--line); transition: background 0.3s ease; }
.benefit-card:last-child { border-right: none; }
.benefit-card:hover { background: var(--surface); }

.benefit-card-media { height: 200px; overflow: hidden; }
.benefit-card-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); transition: transform 0.6s ease; }
.benefit-card:hover .benefit-card-media img { transform: scale(1.05); }

.benefit-card h3 { margin: 32px 4vw 0; font-size: 21px; line-height: 1.3; font-weight: 700; }
.benefit-card p { max-width: 260px; margin: 18px 4vw 40px; font-size: 13px; line-height: 1.8; color: var(--gray); }

/* =========================================
   FOOTER
========================================= */

.store-footer { padding: 80px 8vw 30px; background: #030201; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-brand img { width: 140px; max-height: 56px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 280px; margin-top: 20px; color: var(--gray); font-size: 13px; line-height: 1.8; }
.footer-column { display: flex; flex-direction: column; gap: 12px; }
.footer-column > span { margin-bottom: 8px; font-size: 10px; letter-spacing: 2px; color: var(--gold); }
.footer-column a { font-size: 11px; letter-spacing: 0.5px; color: var(--gray); transition: color 0.3s ease; }
.footer-column a:hover { color: var(--white); }
.footer-bottom {
    padding-top: 20px; border-top: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 10px; letter-spacing: 1px; color: #5a5044; flex-wrap: wrap; gap: 10px;
}

/* =========================================
   SEPET (CART DRAWER)
========================================= */

.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 1400; opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease; }
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(420px, 92vw);
    background: var(--surface); border-left: 1px solid var(--line); z-index: 1500;
    display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.cart-drawer.active { transform: translateX(0); }

.cart-drawer-header { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-header h3 { font-size: 19px; font-weight: 700; }
.cart-close { width: 32px; height: 32px; border: none; background: transparent; color: var(--white); font-size: 22px; cursor: pointer; }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--gray); display: flex; flex-direction: column; gap: 14px; }
.cart-empty a { color: var(--gold); font-size: 13px; font-weight: 700; }

.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 62px; height: 62px; object-fit: cover; background: var(--surface-2); flex-shrink: 0; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cart-item-info strong { font-size: 13px; font-weight: 700; }
.cart-item-info span { font-size: 12px; color: var(--gold); }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.cart-item-qty button { width: 22px; height: 22px; border: 1px solid var(--line); background: transparent; color: var(--white); cursor: pointer; font-size: 13px; }
.cart-item-remove { align-self: flex-start; background: none; border: none; color: var(--gray); font-size: 16px; cursor: pointer; }
.cart-item-remove:hover { color: #ff7272; }

.cart-drawer-footer { padding: 20px 24px; border-top: 1px solid var(--line); }

.cart-coupon-row { display: flex; gap: 8px; margin-bottom: 8px; }
.cart-coupon-row input { flex: 1; background: var(--black); border: 1px solid var(--line); padding: 10px 12px; color: var(--white); outline: none; font-size: 13px; text-transform: uppercase; }
.cart-coupon-row input:focus { border-color: var(--gold); }
.cart-coupon-row button { padding: 0 16px; border: 1px solid var(--gold); background: transparent; color: var(--gold); font-size: 11px; font-weight: 700; cursor: pointer; transition: background 0.3s ease, color 0.3s ease; }
.cart-coupon-row button:hover { background: var(--gold); color: var(--black); }

.coupon-feedback { min-height: 16px; margin-bottom: 12px; font-size: 11px; }
.coupon-feedback.error { color: #ff7272; }
.coupon-feedback.success { color: #7ee0a8; }

.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 13px; color: var(--gray); }
.cart-total-row:last-of-type { margin-bottom: 16px; }
.cart-total-row strong { color: var(--gold); font-size: 18px; }
.discount-row span:last-child { color: #7ee0a8; }

.checkout-button {
    width: 100%; min-height: 52px; border: none;
    background: linear-gradient(120deg, var(--gold-dim), var(--gold));
    color: var(--black); font-size: 12px; font-weight: 800; letter-spacing: 1px; cursor: pointer;
    box-shadow: 0 15px 40px rgba(224,184,74,0.15);
    transition: transform 0.3s ease;
}
.checkout-button:hover { transform: translateY(-2px); }
.checkout-button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* =========================================
   CHECKOUT MODAL
========================================= */

.modal-overlay {
    position: fixed; inset: 0; z-index: 1600; background: rgba(0,0,0,0.75);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.checkout-modal { width: min(480px, 100%); max-height: 90vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--line); padding: 30px; }
.checkout-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.checkout-modal-header h3 { font-size: 20px; font-weight: 700; }

.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; letter-spacing: 1px; color: var(--gray); }
.form-group input, .form-group textarea { background: var(--black); border: 1px solid var(--line); padding: 12px 14px; color: var(--white); outline: none; transition: border-color 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }

.checkout-message { min-height: 20px; margin-bottom: 14px; font-size: 12px; }
.checkout-message.error { color: #ff7272; }
.checkout-message.success { color: #7ee0a8; }

.checkout-success { text-align: center; padding: 10px 0; }
.checkout-success-icon {
    width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%;
    background: rgba(126,224,168,0.12); border: 1px solid rgba(126,224,168,0.4);
    display: flex; align-items: center; justify-content: center; font-size: 24px; color: #7ee0a8;
}
.checkout-success h4 { font-size: 18px; margin-bottom: 12px; font-weight: 700; }
.checkout-success p { color: var(--gray); font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
.checkout-success strong { color: var(--white); }
.checkout-contact-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; margin-top: 10px; border: 1px solid var(--gold); color: var(--gold);
    font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
}
.checkout-contact-btn:hover { background: var(--gold); color: var(--black); }
.checkout-contact-btn.whatsapp { border-color: #25d366; color: #25d366; }
.checkout-contact-btn.whatsapp:hover { background: #25d366; color: #0a0a0a; }

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .category-card { height: 340px; }
    .lookbook-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .lb-tall { grid-row: span 2; }
    .lb-wide { grid-column: span 2; }
}
@media (max-width: 900px) {
    .store-nav-links { display: none; }
    .footer-main { grid-template-columns: 1fr; gap: 40px; }
    .category-grid { grid-template-columns: 1fr; }
    .category-card { height: 300px; }
    .benefits-section { grid-template-columns: 1fr; }
    .benefit-card { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
    .store-navbar { padding: 0 20px; }
    .store-hero, .page-header, .shop-section, .campaign-section, .category-section, .lookbook-section { padding-left: 20px; padding-right: 20px; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-image-wrap { height: 190px; }
    .shop-header { flex-direction: column; align-items: flex-start; }
    .shop-search { width: 100%; }
    .filmstrip-item { width: 130px; height: 90px; }
    .lookbook-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .lb-tall, .lb-wide { grid-row: span 1; grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.brand-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 40px;
}

.brand-filter-btn {
    padding: 10px 18px;
    border: 1px solid rgba(224,184,74,0.25);
    background: transparent;
    color: #f5efe0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-filter-btn:hover {
    border-color: #e0b84a;
    color: #e0b84a;
}

.brand-filter-btn.active {
    background: linear-gradient(120deg, #c9962f, #e0b84a);
    color: #050403;
    border-color: #e0b84a;
}

/* =========================================
   ÖDEME YÖNTEMİ SEÇİMİ
========================================= */

.payment-method-options { display: flex; flex-direction: column; gap: 10px; }

.payment-method-option {
    display: flex; align-items: center; gap: 12px;
    padding: 14px; border: 1px solid var(--line); background: var(--black);
    cursor: pointer; transition: border-color 0.3s ease, background 0.3s ease;
}
.payment-method-option:hover { border-color: rgba(224,184,74,0.4); }
.payment-method-option:has(input:checked) { border-color: var(--gold); background: var(--gold-soft); }

.payment-method-option input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }

.payment-method-label { display: flex; flex-direction: column; gap: 3px; }
.payment-method-label strong { font-size: 13px; font-weight: 700; color: var(--white); }
.payment-method-label small { font-size: 11px; color: var(--gray); line-height: 1.5; }

.bank-info-box {
    margin-top: 14px; padding: 16px; border: 1px solid var(--line); background: var(--surface-2);
}
.bank-info-box p { font-size: 12px; line-height: 1.9; color: var(--gray); }
.bank-info-box strong { color: var(--gold); }


/* =========================================
   ÖDEME YÖNTEMİ SEÇİMİ
========================================= */

.payment-method-options { display: flex; flex-direction: column; gap: 10px; }

.payment-method-option {
    display: flex; align-items: center; gap: 12px;
    padding: 14px; border: 1px solid var(--line); background: var(--black);
    cursor: pointer; transition: border-color 0.3s ease, background 0.3s ease;
}
.payment-method-option:hover { border-color: rgba(224,184,74,0.4); }
.payment-method-option:has(input:checked) { border-color: var(--gold); background: var(--gold-soft); }

.payment-method-option input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }

.payment-method-label { display: flex; flex-direction: column; gap: 3px; }
.payment-method-label strong { font-size: 13px; font-weight: 700; color: var(--white); }
.payment-method-label small { font-size: 11px; color: var(--gray); line-height: 1.5; }

.payment-method-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.soon-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.bank-info-box {
    margin-top: 14px; padding: 16px; border: 1px solid var(--line); background: var(--surface-2);
}
.bank-info-box p { font-size: 12px; line-height: 1.9; color: var(--gray); }
.bank-info-box strong { color: var(--gold); }

.free-shipping { color: #7ee0a8 !important; font-weight: 700; }

.product-card { cursor: pointer; }

.wholesale-promo {
    padding: 60px 8vw;
    background: linear-gradient(160deg, rgba(224,184,74,0.08), rgba(0,0,0,0.3));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: center;
}

.wholesale-promo-content {
    max-width: 560px;
    text-align: center;
}

.wholesale-promo-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 16px 0;
}

.wholesale-promo-content p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.wholesale-promo-content .primary-button {
    display: inline-flex;
}

@media (max-width: 700px) {
    .wholesale-promo { padding: 40px 24px; }
}

/* =========================================
   DESTEK WIDGET'I
========================================= */

.support-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(224,184,74,0.4);
    z-index: 999;
    transition: transform 0.2s ease;
}
.support-bubble:hover { transform: scale(1.08); }

.support-panel {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 340px;
    max-width: calc(100vw - 48px);
    max-height: 480px;
    background: var(--black);
    border: 1px solid var(--line);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.support-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: var(--gold);
    color: var(--black);
    font-weight: 800;
    font-size: 13px;
}
.support-close { background: none; border: none; font-size: 20px; color: var(--black); cursor: pointer; line-height: 1; }

.support-panel-body {
    padding: 18px;
    overflow-y: auto;
    flex: 1;
}

.support-intro { color: var(--gray); font-size: 13px; margin-bottom: 14px; }

.support-faq-list { display: flex; flex-direction: column; gap: 8px; }

.support-faq-item {
    text-align: left;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: var(--surface-2);
    color: var(--white);
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.support-faq-item:hover { border-color: var(--gold); }

.support-back-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 12px;
    cursor: pointer;
    margin-bottom: 14px;
    padding: 0;
}

.support-answer-title { color: var(--white); font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.support-answer-text { color: var(--gray); font-size: 13px; line-height: 1.8; }

.support-panel-footer { padding: 14px 18px; border-top: 1px solid var(--line); }
.support-callback-btn {
    width: 100%;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}
.support-callback-btn:hover { background: var(--gold-soft); }

.support-callback-form { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.support-callback-form input {
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--surface-2);
    color: var(--white);
    font-size: 13px;
}
.support-form-message { font-size: 11px; }
.support-form-message.error { color: #ff7272; }
.support-submit-btn {
    background: var(--gold);
    border: none;
    color: var(--black);
    padding: 12px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.support-success { text-align: center; padding: 20px 0; }
.support-success-icon { font-size: 32px; color: #7ee0a8; margin-bottom: 10px; }
.support-success p { color: var(--gray); font-size: 13px; }

@media (max-width: 480px) {
    .support-panel { right: 12px; bottom: 84px; width: calc(100vw - 24px); }
    .support-bubble { right: 16px; bottom: 16px; }
}