/* ============================================================
   LUXE ATÖLYE — Corporate Luxury Design System
   Inspired by Mejuri, Missoma, Cuyana, Aurate
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #111;
    background: #fff;
    overflow-x: hidden;
    font-feature-settings: "ss01", "kern";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

:root {
    --black: #0a0a0a;
    --ink: #1a1a1a;
    --text: #2a2a2a;
    --text-light: #6b6b6b;
    --text-mute: #9a9a9a;
    --border: #e8e6e1;
    --border-strong: #d4d1ca;
    --bg: #ffffff;
    --bg-soft: #faf8f4;
    --bg-cream: #f5f1ea;
    --gold: #a07d3e;
    --gold-dark: #7d5f2c;
    --gold-soft: #c9a96b;
    --success: #4a7c59;
    --error: #b54545;

    /* Typography */
    --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

    --container: 1320px;
    --container-narrow: 920px;
    --header-h: 76px;
    --topbar-h: 36px;

    --radius: 2px;
    --radius-md: 4px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
    --shadow: 0 4px 24px rgba(0,0,0,.06);
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -.015em;
    color: var(--ink);
    line-height: 1.18;
    font-variation-settings: "opsz" 36, "SOFT" 50;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-variation-settings: "opsz" 96, "SOFT" 50; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-variation-settings: "opsz" 72, "SOFT" 50; }
h3 { font-size: 1.5rem; font-variation-settings: "opsz" 48, "SOFT" 50; }
h4 { font-size: 1.15rem; font-variation-settings: "opsz" 36, "SOFT" 50; }

.eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-light);
}

p { color: var(--text); }
small { font-size: 13px; color: var(--text-light); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }

/* === ICON SYSTEM (Lucide) === */
.ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    line-height: 0;
}
.ico svg {
    width: 100%;
    height: 100%;
    display: block;
    /* stroke ve fill SVG'nin kendi attribute'larından gelir */
}
.ico-sm { width: 16px; height: 16px; }
.ico-lg { width: 24px; height: 24px; }
.ico-xl { width: 32px; height: 32px; }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans); font-size: 13px; font-weight: 500;
    letter-spacing: .08em; text-transform: uppercase;
    text-decoration: none;
    background: var(--ink); color: #fff;
    border: 1px solid var(--ink); border-radius: var(--radius);
    cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn:hover { background: var(--black); border-color: var(--black); transform: translateY(-1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; padding: 12px 16px; }
.btn-ghost:hover { background: var(--bg-soft); transform: none; }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-sm { padding: 10px 18px; font-size: 11px; }
.btn-lg { padding: 18px 36px; font-size: 14px; }
.btn-block { width: 100%; }
.link-u { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.link-u:hover { color: var(--gold); }

/* === FORMS === */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
    display: block; font-size: 11px; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 8px;
}
.form-input, input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="url"], input[type="search"], input[type="number"], input[type="date"], select, textarea {
    width: 100%; padding: 13px 16px; font-size: 14px;
    font-family: var(--font-sans); background: #fff; color: var(--ink);
    border: 1px solid var(--border-strong); border-radius: var(--radius);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-input:focus, input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(10,10,10,.06);
}
textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.checkbox-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; cursor: pointer; }
.checkbox-row input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--ink); cursor: pointer; }
.checkbox-row span { font-size: 14px; color: var(--text); }

/* ============================================================
   TOPBAR — minimal announcement strip
   ============================================================ */
.topbar {
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    height: 38px;
    display: flex;
    align-items: center;
    letter-spacing: .02em;
}
.topbar-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    width: 100%;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
}
.topbar-right { justify-content: flex-end; }
.topbar-left a, .topbar-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.85);
    font-size: 11.5px;
    letter-spacing: .04em;
    transition: color .15s ease;
}
.topbar-left a:hover, .topbar-right a:hover { color: #fff; }
.topbar-left .ico, .topbar-right .ico { color: var(--gold-soft); }
.topbar-center {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,.95);
    letter-spacing: .05em;
}

/* ============================================================
   HEADER — two-tier modern layout
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.04); }

/* Brand Row (logo + actions) */
.header-brand-row {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.header-brand-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

/* Left — Search */
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
    width: 100%;
    max-width: 340px;
}
.search-wrap {
    flex: 1;
    position: relative;
}
.search-form {
    display: flex;
    align-items: center;
    background: var(--bg-soft);
    border: 1px solid transparent;
    border-radius: 28px;
    padding: 0 8px 0 14px;
    height: 42px;
    transition: all .2s ease;
    position: relative;
}
.search-form:focus-within {
    background: #fff;
    border-color: var(--border-strong);
    box-shadow: 0 4px 16px rgba(10,10,10,.06);
}
.search-form .search-icon {
    color: var(--text-light);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}
.search-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 8px;
    font-size: 14px;
    color: var(--ink);
    height: 100%;
    min-width: 0;
}
.search-form input:focus { outline: none; box-shadow: none; }
.search-form input::placeholder { color: var(--text-mute); }
.search-form input::-webkit-search-decoration,
.search-form input::-webkit-search-cancel-button,
.search-form input::-webkit-search-results-button,
.search-form input::-webkit-search-results-decoration { display: none; }
.search-clear {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all .15s;
    flex-shrink: 0;
}
.search-clear:hover { background: var(--ink); color: #fff; }
.search-clear[hidden] { display: none; }

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(10,10,10,.12);
    z-index: 110;
    max-height: 70vh;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.search-dropdown[hidden] { display: none; }
.search-dropdown.mobile {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    margin-top: 0;
    max-height: none;
}

.search-state {
    padding: 24px;
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
}
.search-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-top-color: var(--ink);
    border-radius: 50%;
    animation: searchSpin .6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}
@keyframes searchSpin { to { transform: rotate(360deg); } }

.search-section-title {
    padding: 14px 18px 8px;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 500;
}

.search-category-list {
    padding: 0 8px 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.search-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    background: var(--bg-cream);
    color: var(--ink);
    border-radius: 14px;
    text-decoration: none;
    transition: all .15s;
}
.search-category-pill:hover {
    background: var(--ink);
    color: #fff;
}

.search-result {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--ink);
    transition: background .12s;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.search-result:last-child { border-bottom: none; }
.search-result:hover, .search-result.active {
    background: var(--bg-cream);
}
.search-result-img {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--bg-soft);
    object-fit: cover;
    border-radius: 4px;
}
.search-result-body {
    flex: 1;
    min-width: 0;
}
.search-result-cat {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
}
.search-result-name {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 3px;
}
.search-result-name mark {
    background: rgba(160,125,62,.15);
    color: var(--ink);
    font-weight: 600;
    padding: 0;
}
.search-result-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 13px;
}
.search-result-price .current {
    font-weight: 600;
    color: var(--ink);
}
.search-result-price .old {
    font-size: 11.5px;
    color: var(--text-mute);
    text-decoration: line-through;
}
.search-result-stock-out {
    font-size: 10.5px;
    color: var(--error);
    letter-spacing: .05em;
}

.search-footer {
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
    border-radius: 0 0 8px 8px;
}
.search-see-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    transition: color .15s;
}
.search-see-all:hover { color: var(--gold-dark); }
.search-see-all-count {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
}

/* Mobile search wrap */
.mobile-search-wrap {
    border-bottom: 1px solid var(--border);
}
.mobile-search-wrap .mobile-search {
    border-bottom: none;
}

/* Center — Brand Logo */
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--ink);
    text-decoration: none;
}
.brand-name {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1;
    color: var(--ink);
    font-variation-settings: "opsz" 96, "SOFT" 50;
}
.brand-tagline {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 6px;
}

/* Right — Account / Wishlist / Cart */
.header-right {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-self: end;
}
.header-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    min-width: 44px;
    height: 44px;
    color: var(--ink);
    text-decoration: none;
    border-radius: 22px;
    transition: background .15s ease, color .15s ease;
    font-size: 13px;
}
.header-icon-btn::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: transparent;
    transition: background .2s ease;
    z-index: 0;
}
.header-icon-btn:hover::before { background: var(--bg-cream); }
.header-icon-btn .ico,
.header-icon-btn .header-icon-label {
    position: relative;
    z-index: 1;
}
.header-icon-btn .ico {
    width: 22px;
    height: 22px;
}
.header-icon-btn:active .ico {
    transform: scale(.92);
    transition: transform .1s;
}
.header-icon-label {
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .02em;
    padding-right: 6px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.header-account {
    padding-left: 12px;
    padding-right: 14px;
}
.header-account::before {
    inset: 4px;
    border-radius: 22px;
}
.header-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
    z-index: 2;
    border: 2px solid #fff;
    letter-spacing: 0;
}
.header-cart-badge[hidden] { display: none; }

/* Nav Row (categories) */
.header-nav-row {
    background: #fff;
}
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav li { position: relative; }
.main-nav a {
    display: inline-block;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--text);
    text-decoration: none;
    transition: color .15s ease;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transition: transform .25s ease;
    transform-origin: center;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.nav-highlight {
    color: var(--gold-dark);
    font-weight: 600;
}
.main-nav a.nav-highlight::after { background: var(--gold); }

/* Mobile menu toggle — desktop'ta gizli */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--ink);
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 320px;
    max-width: 88vw;
    background: #fff;
    z-index: 200;
    transition: left .3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-drawer.open { left: 0; }
.mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.mobile-drawer-title {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--ink);
}
.mobile-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    padding: 4px;
}
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}
.mobile-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 4px 0;
}
.mobile-search input:focus { outline: none; box-shadow: none; }
.mobile-search .ico { color: var(--text-light); }
.mobile-nav {
    flex: 1;
    padding: 8px 0;
}
.mobile-nav a {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    transition: background .15s;
    border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.mobile-drawer-foot {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}
.mobile-drawer-contact {
    margin-top: 16px;
    text-align: center;
}
.mobile-drawer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
}

.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 199;
}
.backdrop.show {
    opacity: 1;
    pointer-events: all;
}


/* === HERO === */
.hero {
    position: relative;
    height: clamp(560px, 82vh, 780px);
    background: var(--bg-cream);
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.1) 75%),
        linear-gradient(to top, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 50%);
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 64px;
    max-width: 700px;
    color: #fff;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: var(--gold-soft);
    font-weight: 500;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 6.5vw, 5rem);
    color: #fff;
    line-height: 1.02;
    margin-bottom: 22px;
    font-weight: 500;
    letter-spacing: -.015em;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    text-shadow: 0 2px 24px rgba(0,0,0,.18);
}
.hero-subtitle {
    font-size: 18px;
    line-height: 1.55;
    max-width: 500px;
    margin-bottom: 36px;
    color: rgba(255,255,255,.92);
    text-shadow: 0 1px 12px rgba(0,0,0,.15);
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: all .25s ease;
    border-radius: 2px;
    box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.hero-cta:hover {
    background: var(--gold);
    color: #fff;
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(160,125,62,.4);
}
.hero-cta .ico { width: 16px; height: 16px; transition: transform .25s; }
.hero-cta:hover .ico { transform: translateX(2px); }

.hero-nav { position: absolute; bottom: 32px; left: 64px; z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 32px; height: 2px; background: rgba(255,255,255,.4); cursor: pointer; transition: background .2s; border: none; padding: 0; }
.hero-dot.active { background: #fff; }
.hero-arrows { position: absolute; right: 32px; bottom: 32px; z-index: 3; display: flex; gap: 8px; }
.hero-arrow { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.4); color: #fff; display: flex; align-items: center; justify-content: center; transition: all .2s; background: transparent; }
.hero-arrow:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ============================================================
   TRUST BAR — modern, breathable
   ============================================================ */
.trust-bar {
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    position: relative;
}
.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 1px;
    background: var(--gold);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 56px 0;
    gap: 24px;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    border-right: none;
    position: relative;
    transition: transform .3s ease;
}
.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 56px;
    background: var(--border);
}
.trust-item:hover {
    transform: translateY(-3px);
}

.trust-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--ink);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.trust-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 0;
}
.trust-item:hover .trust-icon-wrap {
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 30px rgba(160,125,62,.25);
}
.trust-item:hover .trust-icon-wrap::before {
    opacity: 1;
}
.trust-icon-wrap .ico {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 1;
    transition: transform .35s ease;
}
.trust-item:hover .trust-icon-wrap .ico {
    transform: scale(1.05);
}

.trust-item-content {
    line-height: 1.4;
}
.trust-item-title {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -.005em;
    font-variation-settings: "opsz" 36, "SOFT" 50;
}
.trust-item-text {
    font-size: 12.5px;
    color: var(--text-light);
    letter-spacing: .02em;
    line-height: 1.5;
}

/* === SECTION HEAD === */
.section-head { text-align: center; margin-bottom: 56px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--text-light); font-size: 15px; }

/* === CATEGORY GRID === */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card { position: relative; aspect-ratio: 4/5; background: var(--bg-cream); overflow: hidden; display: block; transition: transform .3s ease; }
.category-card:hover { transform: translateY(-2px); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.category-card:hover img { transform: scale(1.05); }
.category-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%); }
.category-card-content { position: absolute; bottom: 32px; left: 32px; right: 32px; z-index: 2; color: #fff; }
.category-card-content h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.category-card-content span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .9; display: inline-flex; align-items: center; gap: 8px; }

/* ============================================================
   PRODUCT GRID & CARD — modern, refined
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 24px;
}

.product-card {
    position: relative;
    background: transparent;
    transition: transform .35s ease;
}

/* THUMB */
.product-thumb-wrap {
    position: relative;
    margin-bottom: 16px;
}
.product-thumb {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1.2;
    background: var(--bg-cream);
    overflow: hidden;
    border-radius: 2px;
}
.product-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.25,.46,.45,.94), opacity .3s ease;
}
.product-card:hover .product-thumb-img {
    transform: scale(1.05);
}
.product-card.is-out .product-thumb-img {
    opacity: 0.55;
}

/* BADGE — tek, sade, sol üstte */
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 2px;
    line-height: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.product-badge--sale {
    background: var(--ink);
    color: #fff;
}
.product-badge--new {
    background: var(--gold);
    color: #fff;
}
.product-badge--best {
    background: rgba(255,255,255,.95);
    color: var(--ink);
    border: 1px solid var(--ink);
}
.product-badge--out {
    background: rgba(255,255,255,.95);
    color: var(--text-light);
    border: 1px solid var(--border-strong);
    letter-spacing: .15em;
}

/* WISHLIST — sağ üst, her zaman görünür ama subtle */
.product-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(-4px);
}
.product-card:hover .product-wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}
.product-wishlist-btn:hover {
    background: var(--ink);
    color: #fff;
    transform: scale(1.06);
}
.product-wishlist-btn.active {
    background: var(--gold);
    color: #fff;
    opacity: 1;
    transform: translateY(0);
}
.product-wishlist-btn .ico {
    width: 16px;
    height: 16px;
}
.product-wishlist-btn.active .ico svg {
    fill: currentColor;
}

/* QUICK-ADD — slide-up from bottom, only on hover */
.product-quick-add {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--ink);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    transform: translateY(12px);
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
}
.product-quick-add:hover {
    background: var(--gold);
}
.product-card:hover .product-quick-add {
    opacity: 1;
    transform: translateY(0);
}
.product-quick-add .ico { width: 15px; height: 15px; }

/* INFO */
.product-info {
    padding: 0 2px;
}
.product-category {
    display: inline-block;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
    text-decoration: none;
    transition: color .15s;
}
.product-category:hover { color: var(--gold); }

.product-name {
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: -.005em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color .15s;
}
.product-name a:hover { color: var(--gold); }

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 11px;
    color: var(--text-light);
}
.product-rating .stars {
    color: var(--gold);
    letter-spacing: 1px;
    font-size: 12px;
}
.product-rating .rating-count {
    font-size: 11px;
    color: var(--text-mute);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--font-sans);
}
.product-price .price-current,
.product-price .price-new {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.01em;
}
.product-price .price-new {
    color: var(--error);
}
.product-price .price-old {
    font-size: 13px;
    color: var(--text-mute);
    text-decoration: line-through;
    font-weight: 400;
    letter-spacing: -.01em;
}

/* Mobile - quick-add ve wishlist görünür olsun (hover yok) */
@media (hover: none) {
    .product-quick-add,
    .product-wishlist-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === EDITORIAL === */
.editorial { display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: var(--bg-cream); overflow: hidden; min-height: 480px; }
.editorial-image { height: 100%; background-size: cover; background-position: center; min-height: 480px; }
.editorial-content { padding: 80px 64px; }
.editorial-content .eyebrow { margin-bottom: 16px; display: block; }
.editorial-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.editorial-content p { color: var(--text); margin-bottom: 32px; max-width: 480px; }

/* === BREADCRUMB === */
.breadcrumb { padding: 20px 0; font-size: 12px; letter-spacing: .04em; color: var(--text-light); border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { margin: 0 10px; color: var(--text-mute); }
.breadcrumb .current { color: var(--ink); }

/* === PAGE HEAD === */
.page-head { padding: 56px 0 40px; text-align: center; border-bottom: 1px solid var(--border); }
.page-head h1 { margin-bottom: 12px; }
.page-head p { color: var(--text-light); max-width: 580px; margin: 0 auto; }

/* ============================================================
   SHOP LAYOUT — filter sidebar + product grid
   ============================================================ */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    padding: 32px 0 80px;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    align-self: start;
}
.shop-main {
    min-width: 0;
}

/* Filter sidebar inner */
.filter-sidebar-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.filter-sidebar-head h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--ink);
    margin: 0;
    font-weight: 500;
    letter-spacing: -.005em;
}
.filter-clear {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: color .15s;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 1px;
}
.filter-clear:hover { color: var(--error); border-color: var(--error); }

.filter-form { }

.filter-block {
    border-bottom: 1px solid var(--border);
}
.filter-block summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
}
.filter-block summary::-webkit-details-marker { display: none; }
.filter-block summary .ico {
    color: var(--text-light);
    transition: transform .25s ease;
}
.filter-block[open] summary .ico {
    transform: rotate(180deg);
}
.filter-block-body {
    padding: 0 0 18px;
}

/* Filtre checkbox/radio */
.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--text);
    transition: color .12s;
}
.filter-check:hover { color: var(--ink); }
.filter-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--ink);
    cursor: pointer;
    flex-shrink: 0;
}
.filter-check span { line-height: 1.3; }
.filter-check input:checked + span {
    color: var(--ink);
    font-weight: 600;
}
.filter-check--clear {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
    color: var(--text-light);
    font-size: 12.5px;
}
.filter-check--clear span { font-style: italic; }

/* Fiyat aralığı input'ları */
.price-range-inputs {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 12px;
}
.price-input-wrap {
    flex: 1;
    position: relative;
}
.price-input-wrap label {
    display: block;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 500;
}
.price-input-wrap input {
    width: 100%;
    padding: 9px 28px 9px 12px;
    border: 1px solid var(--border-strong);
    background: #fff;
    font-size: 13px;
    color: var(--ink);
    font-family: var(--font-sans);
    border-radius: 2px;
}
.price-input-wrap input:focus {
    outline: none;
    border-color: var(--ink);
}
.price-input-suffix {
    position: absolute;
    right: 10px;
    bottom: 9px;
    font-size: 13px;
    color: var(--text-light);
    pointer-events: none;
}
.price-range-sep {
    color: var(--text-mute);
    padding-bottom: 8px;
    font-size: 14px;
}
.filter-hint {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
}

.filter-apply-btn {
    margin: 16px 0 24px;
    font-size: 12px !important;
    padding: 11px 20px !important;
    letter-spacing: .12em !important;
}

/* Filtre kategorileri (alt blok) */
.filter-block--static {
    border-bottom: none;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
}
.filter-block--static h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 14px 0 12px;
}
.filter-categories {
    display: flex;
    flex-direction: column;
}
.filter-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--text);
    text-decoration: none;
    transition: color .12s, padding-left .15s;
}
.filter-category-link:hover {
    color: var(--ink);
    padding-left: 4px;
}
.filter-category-link.active {
    color: var(--ink);
    font-weight: 600;
}
.filter-category-link em {
    font-style: normal;
    font-size: 11px;
    color: var(--text-mute);
    font-weight: 400;
}

/* Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    flex-wrap: wrap;
}
.shop-toolbar .result-count {
    font-size: 13px;
    color: var(--text-light);
}
.shop-toolbar .result-count strong {
    color: var(--ink);
    font-weight: 600;
}
.shop-sort-form {
    display: flex;
    gap: 8px;
    align-items: center;
}
.shop-sort-form label {
    margin: 0;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}
.shop-sort-form select {
    padding: 8px 32px 8px 12px;
    font-size: 13px;
    width: auto;
    border: 1px solid var(--border-strong);
    background: #fff;
    color: var(--ink);
    border-radius: 2px;
    cursor: pointer;
    font-family: var(--font-sans);
}
.shop-sort-form select:focus { outline: none; border-color: var(--ink); }

/* Aktif filtre çipleri */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 12px;
    color: var(--ink);
    text-decoration: none;
    transition: all .15s;
}
.filter-chip:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.filter-chip span {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1;
}
.filter-chip:hover span { color: #fff; }

/* Mobile filter toggle */
.filter-mobile-toggle {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--border-strong);
    color: var(--ink);
    font-size: 12.5px;
    letter-spacing: .04em;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    font-family: var(--font-sans);
}
.filter-mobile-toggle:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.filter-mobile-toggle .ico { width: 15px; height: 15px; }

/* Empty state (filtreli) */
.shop-empty {
    text-align: center;
    padding: 80px 24px;
    max-width: 480px;
    margin: 0 auto;
}
.shop-empty .ico {
    width: 48px;
    height: 48px;
    color: var(--text-mute);
    margin-bottom: 20px;
}
.shop-empty h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--ink);
    margin: 0 0 10px;
    font-weight: 500;
}
.shop-empty p {
    color: var(--text-light);
    margin: 0 0 24px;
    line-height: 1.55;
}

/* === PAGINATION === */
.pagination { display: flex; justify-content: center; gap: 4px; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text); border: 1px solid var(--border); transition: all .15s; text-decoration: none; border-radius: 2px; }
.pagination a:hover { border-color: var(--ink); color: var(--ink); }
.pagination .active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* QTY BOX (paylaşılan - urun, sepet) */
.qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
}
.qty-box button {
    width: 44px;
    height: 54px;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: background .15s;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.qty-box button:hover { background: var(--bg-cream); }
.qty-box input {
    width: 50px;
    height: 54px;
    border: none;
    text-align: center;
    font-weight: 600;
    background: #fff;
    padding: 0;
    font-size: 14px;
    color: var(--ink);
    -moz-appearance: textfield;
}
.qty-box input::-webkit-outer-spin-button,
.qty-box input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-box input:focus { outline: none; box-shadow: none; }

/* ============================================================
   PRODUCT DETAIL (pd-*)
   ============================================================ */
.pd { padding: 32px 0 80px; }
.pd-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: start;
}

/* GALLERY */
.pd-gallery {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 16px;
    align-self: start;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.pd-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 600px;
    overflow-y: auto;
}
.pd-thumb {
    width: 88px;
    height: 88px;
    background: var(--bg-cream);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .2s ease;
    overflow: hidden;
    padding: 0;
    border-radius: 2px;
}
.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .2s;
}
.pd-thumb:hover { border-color: var(--border-strong); }
.pd-thumb:hover img { opacity: 0.92; }
.pd-thumb.active { border-color: var(--ink); }

.pd-gallery-main {
    position: relative;
    aspect-ratio: 1 / 1.2;
    background: var(--bg-cream);
    overflow: hidden;
    border-radius: 2px;
    cursor: zoom-in;
}
.pd-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s ease;
    display: block;
}
.pd-zoom-pane {
    position: absolute;
    inset: 0;
    background-size: 200%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity .25s ease;
    z-index: 2;
    pointer-events: none;
}
.pd-gallery-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 2px;
    line-height: 1;
}
.pd-gallery-badge--sale { background: var(--ink); color: #fff; }
.pd-gallery-badge--new { background: var(--gold); color: #fff; }

.pd-zoom-btn {
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all .2s;
    color: var(--ink);
}
.pd-zoom-btn:hover { background: var(--ink); color: #fff; }

/* INFO STICKY */
.pd-info {
    padding-top: 4px;
}
.pd-info-sticky {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.pd-category {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration: none;
    margin-bottom: 14px;
    transition: color .15s;
}
.pd-category:hover { color: var(--gold); }

.pd-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.12;
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: -.015em;
    color: var(--ink);
    font-variation-settings: "opsz" 72, "SOFT" 50;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 13px;
    color: var(--text-light);
}
.pd-stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }
.pd-rating-text strong { color: var(--ink); font-weight: 600; margin-right: 6px; }
.pd-rating-text a { color: var(--text-light); text-decoration: underline; text-underline-offset: 3px; }
.pd-rating-text a:hover { color: var(--ink); }

.pd-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.pd-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}
.pd-price-current,
.pd-price-new {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    color: var(--ink);
    font-weight: 500;
    font-variation-settings: "opsz" 48;
    line-height: 1;
}
.pd-price-new { color: var(--error); }
.pd-price-old {
    font-size: 18px;
    color: var(--text-mute);
    text-decoration: line-through;
    font-weight: 400;
}
.pd-price-save {
    background: var(--gold);
    color: #fff;
    font-size: 10.5px;
    padding: 5px 9px;
    letter-spacing: .12em;
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    line-height: 1;
    align-self: center;
}
.pd-sku {
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--text-light);
    text-transform: uppercase;
}

.pd-shortdesc {
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 15px;
}

/* STOCK STATUS */
.pd-stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 12.5px;
    border-radius: 4px;
    margin-bottom: 22px;
    letter-spacing: .02em;
}
.pd-stock-in {
    background: rgba(74,124,89,.08);
    color: var(--success);
}
.pd-stock-low {
    background: rgba(160,125,62,.1);
    color: var(--gold-dark);
}
.pd-stock-out {
    background: rgba(181,69,69,.08);
    color: var(--error);
}
.pd-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-low 1.6s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-low {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .55; }
}

/* OPTIONS (size chips) */
.pd-options {
    margin-bottom: 24px;
}
.pd-option-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}
.pd-option-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pd-option-chip {
    min-width: 48px;
    height: 40px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid var(--border-strong);
    color: var(--ink);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s ease;
    border-radius: 2px;
}
.pd-option-chip:hover { border-color: var(--ink); }
.pd-option-chip.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

/* PURCHASE */
.pd-purchase {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}
.pd-qty {
    flex-shrink: 0;
}
.pd-add-to-cart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    height: 54px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.pd-add-to-cart .ico { width: 16px; height: 16px; }

/* SECONDARY ACTIONS */
.pd-secondary-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}
.pd-icon-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    transition: all .15s;
}
.pd-icon-action:hover {
    border-color: var(--ink);
    color: var(--ink);
}
.pd-icon-action.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.pd-icon-action.active .ico svg {
    fill: currentColor;
}

/* TRUST STRIP */
.pd-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    padding: 22px;
    background: var(--bg-soft);
    border-radius: 4px;
    margin-bottom: 24px;
}
.pd-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.35;
}
.pd-trust-item .ico {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--gold-dark);
    margin-top: 1px;
}
.pd-trust-item strong {
    display: block;
    font-size: 13px;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 2px;
}
.pd-trust-item small {
    font-size: 11.5px;
    color: var(--text-light);
}

/* SHARE */
.pd-share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.pd-share-label {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-right: 4px;
}
.pd-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
}
.pd-share-btn:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* ACCORDION */
.pd-accordion {
    margin-top: 80px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.pd-accordion-item {
    border-bottom: 1px solid var(--border);
}
.pd-accordion-item:first-child {
    border-top: 1px solid var(--border);
}
.pd-accordion-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 4px;
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -.005em;
    transition: color .15s;
    font-variation-settings: "opsz" 36, "SOFT" 50;
}
.pd-accordion-item summary::-webkit-details-marker { display: none; }
.pd-accordion-item summary:hover { color: var(--gold-dark); }
.pd-accordion-item summary .ico {
    transition: transform .25s ease;
}
.pd-accordion-item[open] summary .ico {
    transform: rotate(180deg);
}
.pd-accordion-body {
    padding: 4px 4px 32px;
    line-height: 1.8;
    color: var(--text);
    font-size: 14.5px;
}
.pd-accordion-body p { margin-bottom: 12px; }
.pd-accordion-body p:last-child { margin-bottom: 0; }

/* SPECS */
.pd-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}
.pd-specs > div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
}
.pd-specs dt {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-light);
}
.pd-specs dd {
    font-size: 14px;
    color: var(--ink);
    text-align: right;
}
.pd-specs dd a { color: var(--gold-dark); }

/* REVIEWS */
.pd-reviews-summary {
    padding: 24px;
    background: var(--bg-soft);
    border-radius: 4px;
    margin-bottom: 32px;
}
.pd-reviews-avg {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.pd-stars-lg {
    color: var(--gold);
    font-size: 28px;
    letter-spacing: 4px;
}
.pd-reviews-avg strong {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--ink);
    font-weight: 500;
}
.pd-reviews-avg small {
    color: var(--text-light);
    font-size: 13px;
}

.pd-reviews-list {
    margin-bottom: 32px;
}
.pd-review {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.pd-review:last-child { border-bottom: none; }
.pd-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
}
.pd-review-head strong { font-size: 14px; color: var(--ink); }
.pd-review small {
    display: block;
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: .04em;
    margin-bottom: 8px;
}
.pd-review p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* REVIEW FORM */
.pd-review-form-wrap summary {
    cursor: pointer;
    padding: 10px 18px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    list-style: none;
}
.pd-review-form-wrap summary::-webkit-details-marker { display: none; }
.pd-review-form {
    margin-top: 24px;
    padding: 24px;
    background: var(--bg-soft);
    border-radius: 4px;
}
.pd-rate-input {
    display: inline-flex;
    gap: 6px;
}
.pd-rate-star {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--border-strong);
    font-size: 26px;
    line-height: 1;
    padding: 0;
    transition: color .15s;
}
.pd-rate-star.active,
.pd-rate-star.hover {
    color: var(--gold);
}

/* MOBILE BAR */
.pd-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(0,0,0,.08);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    align-items: center;
    gap: 12px;
}
.pd-mobile-bar-info {
    flex: 1;
    min-width: 0;
}
.pd-mobile-bar-name {
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.pd-mobile-bar-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.pd-mobile-bar-price strong {
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--ink);
    font-weight: 600;
}
.pd-mobile-bar-price s {
    font-size: 12px;
    color: var(--text-mute);
}
.pd-mobile-bar-cta {
    height: 46px;
    padding: 0 20px;
    font-size: 12px;
    letter-spacing: .12em;
    flex-shrink: 0;
}

/* LIGHTBOX */
.pd-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.pd-lightbox[hidden] { display: none; }
.pd-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}
.pd-lightbox-close,
.pd-lightbox-nav {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.pd-lightbox-close:hover,
.pd-lightbox-nav:hover { background: rgba(255,255,255,.28); }
.pd-lightbox-close { top: 24px; right: 24px; }
.pd-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.pd-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.pd-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 13px;
    letter-spacing: .15em;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .pd-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pd-gallery {
        position: static;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pd-gallery-thumbs {
        flex-direction: row;
        order: 2;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
    }
    .pd-thumb {
        width: 68px;
        height: 68px;
        flex-shrink: 0;
    }
    .pd-gallery-main { order: 1; }
    .pd-info-sticky { position: static; }
    .pd-title { font-size: 1.8rem; }
    .pd-price-current,
    .pd-price-new { font-size: 1.8rem; }
    .pd-trust { grid-template-columns: 1fr; }
    .pd-secondary-actions { grid-template-columns: 1fr; }
    .pd-specs { grid-template-columns: 1fr; }
    .pd-accordion { margin-top: 48px; }

    .pd-mobile-bar { display: flex; }
    body { padding-bottom: 84px; } /* mobil bar için yer aç */

    .pd-lightbox { padding: 16px; }
    .pd-lightbox-close { top: 12px; right: 12px; }
    .pd-lightbox-prev { left: 8px; }
    .pd-lightbox-next { right: 8px; }
}

/* ============================================================
   CART — modern, editorial
   ============================================================ */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    padding: 40px 0 80px;
    align-items: start;
}

/* Cart items — flex satırlar, tablo değil */
.cart-items {
    border-top: 1px solid var(--border);
}
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    transition: opacity .2s ease;
}
.cart-item-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: var(--bg-cream);
    border-radius: 2px;
    overflow: hidden;
    display: block;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.cart-item-img:hover img { transform: scale(1.04); }

.cart-item-info {
    min-width: 0;
}
.cart-item-info h4 {
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.35;
}
.cart-item-info h4 a {
    color: var(--ink);
    text-decoration: none;
    transition: color .15s;
}
.cart-item-info h4 a:hover { color: var(--gold-dark); }
.cart-item-sku {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: .08em;
    margin-bottom: 6px;
}
.cart-item-unit {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}
.cart-item-remove {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    color: var(--text-light);
    cursor: pointer;
    transition: color .15s;
    font-family: inherit;
}
.cart-item-remove .ico { width: 13px; height: 13px; }
.cart-item-remove:hover {
    color: var(--error);
}

.cart-item-qty {
    flex-shrink: 0;
}

.cart-item-total {
    text-align: right;
    flex-shrink: 0;
}
.cart-item-line-total {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.cart-continue-link {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 2px;
    transition: all .15s;
}
.cart-continue-link:hover {
    color: var(--ink);
    border-color: var(--ink);
}

/* Cart summary sidebar */
.cart-summary {
    background: var(--bg-cream);
    padding: 32px;
    height: fit-content;
    position: sticky;
    top: calc(var(--header-h) + 20px);
    border-radius: 2px;
}
.cart-summary h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    font-weight: 500;
    font-variation-settings: "opsz" 36, "SOFT" 50;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
}
.summary-row.total {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 16px 0;
    margin-top: 12px;
    border-top: 1px solid var(--border);
    color: var(--ink);
}

.cart-coupon-form {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.cart-coupon-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border-strong);
    background: #fff;
    font-size: 13px;
    color: var(--ink);
    border-radius: 2px;
}
.cart-coupon-form input:focus { outline: none; border-color: var(--ink); }

.cart-coupon-applied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid var(--gold);
    font-size: 13px;
    color: var(--ink);
    border-radius: 2px;
}
.cart-coupon-applied a {
    color: var(--error);
    font-size: 12px;
    text-decoration: none;
}
.cart-coupon-applied a:hover { text-decoration: underline; }

/* Shipping progress bar */
.shipping-bar {
    background: #fff;
    border: 1px solid var(--border);
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--text);
    border-radius: 2px;
    line-height: 1.5;
}
.shipping-bar strong { color: var(--ink); }
.shipping-bar-progress {
    height: 3px;
    background: var(--border);
    margin-top: 12px;
    overflow: hidden;
    border-radius: 2px;
}
.shipping-bar-progress span {
    display: block;
    height: 100%;
    background: var(--gold);
    transition: width .5s ease;
}
.shipping-bar--success {
    background: rgba(74,124,89,.06);
    border-color: rgba(74,124,89,.3);
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 8px;
}
.shipping-bar--success .ico { color: var(--success); }

/* Trust strip in summary */
.cart-trust {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
}
.cart-trust > div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.cart-trust > div:last-child { margin-bottom: 0; }
.cart-trust .ico { color: var(--gold-dark); flex-shrink: 0; }

/* Empty state */
.cart-empty {
    text-align: center;
    padding: 100px 24px;
    max-width: 480px;
    margin: 0 auto;
}
.cart-empty-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--gold-dark);
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.cart-empty-icon .ico { width: 36px; height: 36px; }
.cart-empty h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin: 0 0 12px;
    color: var(--ink);
    font-weight: 500;
}
.cart-empty p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Wishlist empty */
.wishlist-empty {
    text-align: center;
    padding: 100px 24px;
    max-width: 480px;
    margin: 0 auto;
}
.wishlist-empty-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--gold-dark);
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.wishlist-empty-icon .ico { width: 36px; height: 36px; }
.wishlist-empty h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 0 0 12px;
    color: var(--ink);
    font-weight: 500;
}
.wishlist-empty p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ============================================================
   AUTH PAGES — editorial, split layout
   ============================================================ */
.auth-page {
    padding: 56px 0 80px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #fff 60%);
    min-height: calc(100vh - var(--header-h) - 200px);
}
.auth-page--single {
    background: var(--bg-cream);
}

.auth-wrap {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.auth-page--single .auth-wrap {
    grid-template-columns: 1fr;
    max-width: 480px;
}

/* Sol taraf: tanıtım */
.auth-side {
    padding: 24px 0;
}
.auth-side .eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
    font-weight: 600;
}
.auth-side h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 16px;
    font-weight: 500;
    letter-spacing: -.015em;
    font-variation-settings: "opsz" 96, "SOFT" 50;
}
.auth-side > p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0 0 32px;
    max-width: 480px;
}

.auth-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.auth-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: var(--ink);
}
.auth-perk .ico {
    width: 18px;
    height: 18px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

/* Sağ kart */
.auth-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(10,10,10,.03);
}
.auth-card--center {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.auth-head {
    margin-bottom: 28px;
}
.auth-card--center .auth-head {
    text-align: center;
}
.auth-head .eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
    font-weight: 600;
}
.auth-head h1,
.auth-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 8px;
    font-weight: 500;
    letter-spacing: -.01em;
    font-variation-settings: "opsz" 64, "SOFT" 50;
}
.auth-head p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}

.auth-form .form-group {
    margin-bottom: 18px;
}
.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.auth-form label {
    display: block;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}
.auth-form label small {
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-mute);
    font-weight: 400;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="tel"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border-strong);
    background: #fff;
    font-size: 14.5px;
    color: var(--ink);
    transition: all .15s;
    border-radius: 2px;
    font-family: var(--font-sans);
}
.auth-form input:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(10,10,10,.04);
}

/* Şifre göster/gizle */
.auth-password-wrap {
    position: relative;
}
.auth-password-wrap input {
    padding-right: 44px !important;
}
.auth-password-toggle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-light);
    transition: color .15s;
}
.auth-password-toggle:hover { color: var(--ink); }
.auth-password-toggle .ico { width: 16px; height: 16px; }

/* Password strength */
.auth-password-strength {
    font-size: 11px;
    letter-spacing: .08em;
    margin-top: 6px;
    color: var(--text-mute);
}
.auth-password-strength--weak { color: var(--error); }
.auth-password-strength--medium { color: #b8901c; }
.auth-password-strength--strong { color: var(--success); }

/* Remember + Forgot satırı */
.auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 24px;
    font-size: 13px;
}
.auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--ink);
}
.auth-remember input {
    width: 16px;
    height: 16px;
    accent-color: var(--ink);
    cursor: pointer;
}
.auth-forgot {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color .15s;
}
.auth-forgot:hover {
    color: var(--ink);
    text-decoration: underline;
}

/* Checkbox satırları (kayıt sözleşme + bülten) */
.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 12px;
}
.auth-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--ink);
    flex-shrink: 0;
    cursor: pointer;
}
.auth-checkbox a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.auth-foot {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-light);
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.auth-foot a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 1px;
    font-weight: 600;
    margin-left: 4px;
}

/* Success / error icon (şifremi unuttum sayfaları için) */
.auth-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    color: var(--gold-dark);
}
.auth-success-icon .ico {
    width: 36px;
    height: 36px;
}
.auth-success-icon--success {
    background: rgba(74,124,89,.1);
    color: var(--success);
}
.auth-success-icon--error {
    background: rgba(181,69,69,.1);
    color: var(--error);
}

/* ============================================================
   END AUTH
   ============================================================ */

/* ============================================================
   ACCOUNT PAGE (acc-*) — editorial, corporate
   ============================================================ */

/* HEADER */
.acc-head {
    padding: 56px 0 44px;
    border-bottom: 1px solid var(--border);
}
.acc-head .eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 14px;
    font-weight: 600;
}
.acc-head-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.1;
    margin: 0 0 12px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -.015em;
    font-variation-settings: "opsz" 96, "SOFT" 50;
}
.acc-head-sub {
    font-size: 14.5px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    max-width: 640px;
}

/* LAYOUT */
.acc-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    padding: 48px 0 80px;
}

/* SIDEBAR */
.acc-sidebar {
    align-self: start;
    position: sticky;
    top: calc(var(--header-h) + 32px);
}
.acc-nav {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}
.acc-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2px;
    font-size: 13.5px;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color .15s ease, padding-left .2s ease;
    position: relative;
    letter-spacing: .01em;
}
.acc-nav-link:hover {
    color: var(--ink);
    padding-left: 6px;
}
.acc-nav-link.active {
    color: var(--ink);
    font-weight: 600;
}
.acc-nav-link.active::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    background: var(--gold);
}
.acc-nav-link em {
    font-style: normal;
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: .04em;
    font-weight: 400;
}
.acc-nav-link.active em {
    color: var(--gold-dark);
    font-weight: 500;
}
.acc-nav-logout {
    margin-top: 24px;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.acc-nav-logout:hover {
    color: var(--error);
}

/* MAIN */
.acc-main {
    min-width: 0;
}
.acc-section {
    margin-bottom: 56px;
}
.acc-section:last-child {
    margin-bottom: 0;
}
.acc-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
    line-height: 1.2;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -.01em;
    margin: 0 0 24px;
    font-variation-settings: "opsz" 48, "SOFT" 50;
}
.acc-section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--ink);
    font-weight: 500;
    margin: 0;
    letter-spacing: -.005em;
    font-variation-settings: "opsz" 36, "SOFT" 50;
}
.acc-section-intro {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.65;
    margin: -16px 0 32px;
    max-width: 600px;
}
.acc-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.acc-section-head .acc-section-title {
    margin: 0;
}

.acc-link {
    display: inline-flex;
    align-items: center;
    font-size: 12.5px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: all .15s;
}
.acc-link:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* SUMMARY (overview stats) */
.acc-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.acc-summary-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 110px;
    padding: 24px 24px;
    border-right: 1px solid var(--border);
}
.acc-summary-item:first-child {
    padding-left: 0;
}
.acc-summary-item:last-child {
    border-right: none;
    padding-right: 0;
}
.acc-summary-label {
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.3;
}
.acc-summary-value {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.01em;
    font-variation-settings: "opsz" 48, "SOFT" 50;
    font-variant-numeric: tabular-nums lining-nums;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* ORDERS */
.acc-orders {
    display: flex;
    flex-direction: column;
}
.acc-order {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-decoration: none;
    color: var(--ink);
    transition: padding .2s ease;
}
.acc-order:last-child {
    border-bottom: 1px solid var(--border);
}
.acc-order:hover {
    padding-left: 8px;
    padding-right: 8px;
}
.acc-order-thumbs {
    display: flex;
    gap: 6px;
}
.acc-order-thumbs img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    background: var(--bg-cream);
    border-radius: 2px;
}
.acc-order-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.acc-order-num {
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: .01em;
}
.acc-order-date {
    font-size: 12.5px;
    color: var(--text-light);
}
.acc-order-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}
.acc-order-total {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 500;
}

/* STATUS */
.acc-status {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding-left: 14px;
}
.acc-status::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-mute);
}
.acc-status--pending::before { background: #d4a437; }
.acc-status--processing::before { background: #4a7ca5; }
.acc-status--shipped::before { background: #5e84b8; }
.acc-status--delivered::before { background: var(--success); }
.acc-status--cancelled::before { background: var(--error); }
.acc-status--refunded::before { background: #948877; }
.acc-status--partially_refunded::before { background: #b8810f; }
.acc-status--pending { color: #856404; }
.acc-status--processing { color: #2c5985; }
.acc-status--shipped { color: #3a6594; }
.acc-status--delivered { color: var(--success); }
.acc-status--cancelled { color: var(--error); }
.acc-status--refunded { color: #5a4f44; }
.acc-status--partially_refunded { color: #b8810f; }
.acc-status--lg {
    font-size: 11.5px;
    padding-left: 18px;
    letter-spacing: .2em;
}
.acc-status--lg::before {
    width: 9px;
    height: 9px;
}

/* ORDER DETAIL */
.acc-back-link {
    display: inline-block;
    font-size: 12.5px;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color .15s;
    letter-spacing: .02em;
}
.acc-back-link:hover {
    color: var(--ink);
}
.acc-order-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.acc-order-head .eyebrow {
    display: block;
    font-size: 10.5px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
    font-weight: 600;
}
.acc-order-head .acc-section-title {
    margin: 0 0 8px;
}
.acc-order-head-date {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.acc-tracking {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}
.acc-tracking-label {
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
    flex-shrink: 0;
}
.acc-tracking-num {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--ink);
    letter-spacing: .06em;
    font-weight: 600;
}

.acc-h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--ink);
    font-weight: 500;
    margin: 32px 0 16px;
    font-variation-settings: "opsz" 36, "SOFT" 50;
}

.acc-items {
    border-top: 1px solid var(--border);
}
.acc-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.acc-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    background: var(--bg-cream);
    border-radius: 2px;
}
.acc-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.acc-item-name {
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    transition: color .15s;
}
a.acc-item-name:hover {
    color: var(--gold-dark);
}
.acc-item-meta {
    font-size: 12.5px;
    color: var(--text-light);
}
.acc-item-total {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--ink);
    font-weight: 500;
}

.acc-summary-block {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    max-width: 380px;
    margin-left: auto;
}
.acc-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
}
.acc-summary-row--discount {
    color: var(--success);
}
.acc-summary-row--total {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--ink);
    font-weight: 500;
}

.acc-address-readonly {
    padding: 18px 22px;
    background: var(--bg-cream);
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text);
    border-radius: 2px;
}

/* ADDRESSES */
.acc-addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.acc-address {
    position: relative;
    padding: 26px 28px;
    border: 1px solid var(--border);
    background: #fff;
    transition: border-color .2s;
    display: flex;
    flex-direction: column;
}
.acc-address:hover {
    border-color: var(--border-strong);
}
.acc-address.is-default {
    border-color: var(--ink);
}
.acc-address-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.acc-address-title {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: .01em;
}
.acc-address-badge {
    display: inline-block;
    font-size: 9.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    padding-left: 12px;
    position: relative;
}
.acc-address-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.acc-address-body {
    flex: 1;
    margin-bottom: 18px;
}
.acc-address-body strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 8px;
    font-weight: 600;
}
.acc-address-body p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text);
    margin: 0 0 4px;
}
.acc-address-actions {
    display: flex;
    gap: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.acc-address-actions a {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .15s;
}
.acc-address-actions a:hover {
    color: var(--ink);
}
.acc-address-delete:hover {
    color: var(--error) !important;
}

/* FORMS */
.acc-form {
    max-width: 560px;
}
.acc-form--narrow {
    max-width: 420px;
}
.acc-form--wide {
    max-width: 720px;
}
.acc-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.acc-form .form-group {
    margin-bottom: 20px;
}
.acc-form label {
    display: block;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}
.acc-form input[type="text"],
.acc-form input[type="email"],
.acc-form input[type="tel"],
.acc-form input[type="password"],
.acc-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    background: #fff;
    font-size: 14px;
    color: var(--ink);
    transition: border-color .15s;
    border-radius: 2px;
    font-family: var(--font-sans);
}
.acc-form input:focus,
.acc-form textarea:focus {
    outline: none;
    border-color: var(--ink);
}
.acc-form input:disabled {
    background: var(--bg-cream);
    color: var(--text-light);
    cursor: not-allowed;
}
.acc-form textarea {
    resize: vertical;
    line-height: 1.5;
}
.acc-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--ink);
}
.acc-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--ink);
    cursor: pointer;
}
.acc-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* EMPTY */
.acc-empty {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.acc-empty p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 0 16px;
    line-height: 1.6;
}

/* GLOBAL STATUS BADGES (admin + others) */
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 2px;
    font-weight: 600;
}
.status-pending { background: #fff8e6; color: #856404; }
.status-processing { background: #e6f0ff; color: #0c5460; }
.status-shipped { background: #e6f4ff; color: #1a4f87; }
.status-delivered { background: rgba(74,124,89,.12); color: var(--success); }
.status-cancelled { background: #fbf0f0; color: var(--error); }

/* ============================================================
   END ACCOUNT
   ============================================================ */

/* ============================================================
   CHECKOUT (odeme.php) — editorial, kurumsal
   ============================================================ */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    padding: 32px 0 80px;
    align-items: start;
}

.checkout-main {
    min-width: 0;
}

.checkout-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 2px;
    margin-bottom: 20px;
}
.checkout-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--border);
}
.checkout-section-head h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 0;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -.005em;
    font-variation-settings: "opsz" 36, "SOFT" 50;
}
.checkout-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}
.checkout-section-body {
    padding: 28px;
}

.checkout-guest-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-cream);
    border-radius: 2px;
    margin-bottom: 24px;
    font-size: 13.5px;
}
.checkout-guest-notice a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 1px;
    font-weight: 600;
}

/* Adres kart seçimi */
.checkout-saved-addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.checkout-address-card {
    position: relative;
    display: block;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 2px;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
}
.checkout-address-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.checkout-address-card:hover {
    border-color: var(--border-strong);
}
.checkout-address-card.selected {
    border-color: var(--ink);
    background: var(--bg-cream);
}
.checkout-address-card.selected::before {
    content: '';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ink);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--ink);
}
.checkout-address-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
    padding-right: 28px;
}
.checkout-address-card-head strong {
    font-family: var(--font-serif);
    font-size: 14.5px;
    color: var(--ink);
    font-weight: 500;
}
.checkout-address-default {
    font-size: 9.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
}
.checkout-address-name {
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 6px;
    font-weight: 500;
}
.checkout-address-text,
.checkout-address-phone {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.55;
}
.checkout-address-phone {
    margin-top: 4px;
}
.checkout-address-new .checkout-address-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    height: 100%;
    min-height: 80px;
}
.checkout-address-new strong {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 4px;
}
.checkout-address-new span {
    font-size: 12px;
    color: var(--text-light);
}

.checkout-new-address {
    padding: 20px 0 0;
    border-top: 1px dashed var(--border);
    margin-top: 4px;
}

/* Ödeme yöntemi kartları */
.checkout-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.checkout-payment-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid var(--border);
    border-radius: 2px;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
}
.checkout-payment-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.checkout-payment-card:hover {
    border-color: var(--border-strong);
}
.checkout-payment-card.selected {
    border-color: var(--ink);
    background: var(--bg-cream);
}
.checkout-payment-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}
.checkout-payment-card.selected .checkout-payment-icon {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.checkout-payment-icon .ico { width: 22px; height: 22px; }
.checkout-payment-body {
    flex: 1;
    min-width: 0;
}
.checkout-payment-body strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 3px;
    font-weight: 500;
}
.checkout-payment-body small {
    display: block;
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.5;
}
.checkout-payment-cards {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.checkout-payment-cards span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 3px 6px;
    background: #f5f5f5;
    color: #666;
    border-radius: 2px;
    border: 1px solid #e5e5e5;
}

/* Sözleşme checkbox */
.checkout-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--ink);
    line-height: 1.5;
}
.checkout-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--ink);
    flex-shrink: 0;
    cursor: pointer;
}
.checkout-checkbox a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkout-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.checkout-back {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    transition: color .15s;
}
.checkout-back:hover { color: var(--ink); }
.btn-lg {
    padding: 16px 32px;
    font-size: 14px;
    letter-spacing: .04em;
    font-weight: 600;
}

/* Sipariş özeti sidebar */
.checkout-summary {
    background: var(--bg-cream);
    padding: 28px;
    border-radius: 2px;
    position: sticky;
    top: calc(var(--header-h) + 20px);
    height: fit-content;
}
.checkout-summary h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    font-weight: 500;
    font-variation-settings: "opsz" 36, "SOFT" 50;
}

.checkout-summary-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 4px;
}
.checkout-summary-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 12px;
    align-items: center;
}
.checkout-summary-thumb {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}
.checkout-summary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    background: #fff;
}
.checkout-summary-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    border: 2px solid var(--bg-cream);
}
.checkout-summary-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.checkout-summary-info strong {
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.checkout-summary-info small {
    font-size: 11px;
    color: var(--text-light);
}
.checkout-summary-price {
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.checkout-summary-totals {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.checkout-trust {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
}
.checkout-trust > div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.checkout-trust .ico { color: var(--gold-dark); flex-shrink: 0; }

/* ============================================================
   ORDER COMPLETE / FAIL PAGES (siparis-tamam.php, odeme-sonuc.php)
   ============================================================ */
.order-complete {
    padding: 60px 0 100px;
}
.order-complete-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.order-complete-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.order-complete-icon--success {
    background: rgba(74,124,89,.1);
    color: var(--success);
}
.order-complete-icon--pending {
    background: rgba(212,164,55,.15);
    color: #b8901c;
}
.order-complete-icon--error {
    background: rgba(181,69,69,.1);
    color: var(--error);
}
.order-complete-icon .ico { width: 44px; height: 44px; }
.order-complete-head .eyebrow {
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
    font-weight: 600;
    display: block;
}
.order-complete-head h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: var(--ink);
    margin: 0 0 12px;
    font-weight: 500;
    letter-spacing: -.015em;
    font-variation-settings: "opsz" 96, "SOFT" 50;
}
.order-complete-head p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.order-complete-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 2px;
    max-width: 720px;
    margin: 0 auto 24px;
}
.order-complete-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.order-complete-meta > div {
    border-right: 1px solid var(--border);
    padding-right: 24px;
}
.order-complete-meta > div:last-child {
    border-right: none;
    padding-right: 0;
}
.order-complete-meta small {
    display: block;
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 500;
}
.order-complete-meta strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--ink);
    font-weight: 500;
}

/* Havale bilgileri kartı */
.order-bank-card {
    background: linear-gradient(135deg, rgba(212,164,55,.06) 0%, rgba(212,164,55,.02) 100%);
    border: 1px solid rgba(212,164,55,.3);
    padding: 0;
    border-radius: 2px;
    max-width: 720px;
    margin: 0 auto 24px;
}
.order-bank-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(212,164,55,.3);
    flex-wrap: wrap;
}
.order-bank-head h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--ink);
    margin: 0;
    font-weight: 500;
}
.order-bank-deadline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #b8901c;
    font-weight: 600;
}
.order-bank-body {
    padding: 24px 28px;
}
.order-bank-body pre {
    margin: 0 0 18px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--border);
    font-family: var(--font-sans);
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--ink);
    white-space: pre-wrap;
    word-break: break-all;
    border-radius: 2px;
}
.order-bank-note {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    padding: 12px 16px;
    background: rgba(255,255,255,.6);
    border-left: 3px solid var(--gold-dark);
    border-radius: 2px;
}
.order-bank-note code {
    display: inline-block;
    padding: 1px 6px;
    background: var(--ink);
    color: #fff;
    border-radius: 2px;
    font-size: 11.5px;
    font-family: monospace;
    user-select: all;
}

/* Sipariş kalemleri kartı */
.order-items-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 2px;
    max-width: 720px;
    margin: 0 auto 24px;
}
.order-items-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--ink);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}
.order-items-list {
    display: flex;
    flex-direction: column;
}
.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
}
.order-item-row:last-child { border-bottom: none; }
.order-item-info {
    flex: 1;
    min-width: 0;
}
.order-item-info a,
.order-item-info span {
    display: block;
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 3px;
}
.order-item-info a:hover { color: var(--gold-dark); }
.order-item-info small {
    font-size: 12px;
    color: var(--text-light);
}
.order-item-row strong {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--ink);
    font-weight: 500;
    flex-shrink: 0;
}

.order-totals {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Teslimat + iletişim grid */
.order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto 24px;
}
.order-info-block {
    background: #fff;
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 2px;
}
.order-info-block h4 {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0 0 12px;
    font-weight: 500;
}
.order-info-block p {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}
.order-info-block strong { color: var(--ink); }

.order-email-notice {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.order-email-notice em { font-style: normal; color: var(--ink); }

.order-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.order-fail-help {
    max-width: 640px;
    margin: 0 auto 40px;
    padding: 28px;
    background: var(--bg-cream);
    border-radius: 2px;
}
.order-fail-help h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--ink);
    margin: 0 0 14px;
    font-weight: 500;
}
.order-fail-help ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.order-fail-help li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.55;
}
.order-fail-help li::before {
    content: '·';
    position: absolute;
    left: 8px;
    top: -2px;
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
}
.order-fail-help p {
    margin-top: 16px;
    font-size: 13.5px;
    color: var(--text);
}
.order-fail-help a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* PayTR iframe */
.paytr-iframe-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
}



/* ============================================================
   NEWSLETTER HERO — açık tema, premium, davet edici
   ============================================================ */
.newsletter-hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #ede5d3 100%);
    color: var(--ink);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}
.newsletter-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(160,125,62,.15) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(160,125,62,.08) 0%, transparent 65%);
    pointer-events: none;
}
.newsletter-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.newsletter-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
    font-weight: 600;
}
.newsletter-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    margin: 0 0 18px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -.015em;
    font-variation-settings: "opsz" 72, "SOFT" 50;
}
.newsletter-headline em {
    font-style: italic;
    color: var(--gold-dark);
    font-weight: 400;
}
.newsletter-subline {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
    max-width: 480px;
}
.newsletter-subline strong {
    color: var(--gold-dark);
    font-weight: 700;
}

.newsletter-form-lux {
    width: 100%;
}
.newsletter-input-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    padding: 6px 6px 6px 18px;
    transition: all .2s;
    box-shadow: 0 2px 12px rgba(10,10,10,.04);
}
.newsletter-input-wrap:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(160,125,62,.12), 0 4px 18px rgba(10,10,10,.06);
}
.newsletter-input-wrap > .ico {
    color: var(--gold-dark);
    margin-right: 12px;
    flex-shrink: 0;
}
.newsletter-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--ink);
    padding: 14px 0;
    font-size: 14px;
    min-width: 0;
}
.newsletter-input-wrap input::placeholder { color: var(--text-mute); }
.newsletter-input-wrap input:focus { outline: none; box-shadow: none; }
.newsletter-input-wrap button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 13px 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
}
.newsletter-input-wrap button:hover {
    background: var(--gold-dark);
    transform: translateX(2px);
}
.newsletter-input-wrap button .ico { width: 14px; height: 14px; }
.newsletter-disclaimer {
    display: block;
    margin-top: 14px;
    font-size: 11.5px;
    color: var(--text-light);
    letter-spacing: .01em;
}
.newsletter-disclaimer a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.newsletter-disclaimer a:hover { color: var(--gold); }

/* ============================================================
   FOOTER — açık tema, krem zemin
   ============================================================ */
.footer {
    background: #faf7f0;
    color: var(--text);
    padding: 80px 0 0;
    position: relative;
    margin-top: 0;
    border-top: 1px solid var(--border);
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 56px;
}

/* Marka kolonu */
.footer-brand {
    max-width: 380px;
}
.footer-logo {
    display: block;
    text-decoration: none;
    margin-bottom: 22px;
    line-height: 1.1;
}
.footer-logo-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -.01em;
    margin-bottom: 4px;
    font-variation-settings: "opsz" 96, "SOFT" 50;
}
.footer-logo-sub {
    display: block;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-dark);
}
.footer-about {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 26px;
}

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all .2s ease;
    background: #fff;
}
.footer-social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(160,125,62,.25);
}
.footer-social-btn .ico { width: 16px; height: 16px; }

/* Link kolonları */
.footer-col-title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0 0 22px;
    position: relative;
    padding-bottom: 14px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 1px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 11px;
}
.footer-links a {
    font-size: 13.5px;
    color: var(--text-light);
    text-decoration: none;
    transition: all .15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}
.footer-links a:hover {
    color: var(--ink);
    padding-left: 6px;
}
.footer-link-accent {
    color: var(--gold-dark) !important;
}
.footer-link-accent .ico { width: 14px; height: 14px; }
.footer-link-accent:hover { color: var(--gold) !important; }

/* İletişim kolonu */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.55;
}
.footer-contact-list .ico {
    width: 16px;
    height: 16px;
    color: var(--gold-dark);
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact-list a {
    color: var(--text);
    text-decoration: none;
    transition: color .15s;
}
.footer-contact-list a:hover { color: var(--gold-dark); }

/* Trust strip */
.footer-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 32px;
    padding: 28px 0;
    margin: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--text);
    letter-spacing: .02em;
}
.footer-trust-item .ico {
    width: 18px;
    height: 18px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

/* Bottom bar */
.footer-bottom {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    font-size: 12.5px;
    color: var(--text-light);
}
.footer-bottom strong { color: var(--ink); font-weight: 600; }

.footer-bottom-mid {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: center;
}
.footer-pay-label,
.footer-cargo-label {
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.footer-pay-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}
.pay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 26px;
    padding: 0 8px;
    background: #fff;
    border: 1px solid var(--border-strong);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
}
.pay-icon-text {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.footer-bottom-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-cargo-list {
    font-size: 12px;
    color: var(--text);
    letter-spacing: .03em;
}

/* ============================================================
   FOOTER CREDIT — webdanismani.com imzası
   ============================================================ */
.footer-credit {
    border-top: 1px solid var(--border);
    background: rgba(245,241,234,.6);
    padding: 16px 0;
}
.footer-credit-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    letter-spacing: .04em;
    color: var(--text-light);
    flex-wrap: wrap;
}
.footer-credit-inner .credit-label {
    color: var(--text-mute);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 10.5px;
    font-weight: 500;
}
.footer-credit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 3px;
    transition: all .2s ease;
    position: relative;
}
.footer-credit-link::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}
.footer-credit-link:hover {
    color: var(--gold-dark);
}
.footer-credit-link:hover::before {
    transform: scaleX(1);
}
.footer-credit-heart {
    color: var(--gold);
    display: inline-flex;
    animation: creditPulse 2s ease-in-out infinite;
}
.footer-credit-heart svg {
    fill: currentColor;
    width: 12px;
    height: 12px;
}
@keyframes creditPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.18); }
}

/* ============================================================
   WHATSAPP FLOAT — with pulse
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
    transition: transform .2s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.08);
}
.whatsapp-float .ico {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
}
.whatsapp-float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    opacity: .55;
    animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: .55; }
    100% { transform: scale(1.75); opacity: 0; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 92px;
    z-index: 89;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--border-strong);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    box-shadow: 0 4px 14px rgba(10,10,10,.1);
}
.back-to-top:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}
.back-to-top[hidden] {
    display: none;
}

/* ============================================================
   TOAST (stack)
   ============================================================ */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 380px;
    width: calc(100vw - 48px);
}
.toast-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 3px solid var(--ink);
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(10,10,10,.12);
    font-size: 13.5px;
    color: var(--ink);
    line-height: 1.45;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(20px);
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
}
.toast-item.toast-show {
    opacity: 1;
    transform: translateX(0);
}
.toast-item.toast-hide {
    opacity: 0;
    transform: translateX(20px);
}
.toast-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.toast-icon svg { width: 100%; height: 100%; }
.toast-msg {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}
.toast-close {
    background: none;
    border: none;
    color: var(--text-mute);
    cursor: pointer;
    padding: 0;
    width: 22px;
    height: 22px;
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    transition: color .15s;
}
.toast-close:hover { color: var(--ink); }

.toast-success { border-left-color: var(--success); }
.toast-success .toast-icon { color: var(--success); }
.toast-error { border-left-color: var(--error); }
.toast-error .toast-icon { color: var(--error); }
.toast-warning { border-left-color: #d4a437; }
.toast-warning .toast-icon { color: #b8901c; }
.toast-info { border-left-color: var(--gold-dark); }
.toast-info .toast-icon { color: var(--gold-dark); }

/* === ALERTS === */
.alert { padding: 14px 18px; margin-bottom: 20px; font-size: 14px; border-radius: 2px; border: 1px solid transparent; line-height: 1.5; }
.alert-success { background: rgba(74,124,89,.08); color: var(--success); border-color: rgba(74,124,89,.25); }
.alert-error { background: rgba(181,69,69,.08); color: var(--error); border-color: rgba(181,69,69,.2); }
.alert-warning { background: rgba(212,164,55,.1); color: #8a6a14; border-color: rgba(212,164,55,.3); }
.alert-info { background: var(--bg-cream); color: var(--text); border-color: var(--border-strong); }

/* ============================================================
   BUTTON LOADING (spinner)
   ============================================================ */
.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: btn-spin .7s linear infinite;
    vertical-align: -2px;
    margin-right: 6px;
    opacity: .8;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
.btn.is-loading {
    opacity: .85;
    cursor: progress;
    pointer-events: none;
}

/* ============================================================
   HEADER ACCOUNT DROPDOWN
   ============================================================ */
.header-account-wrap {
    position: relative;
}
.header-account-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 280px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 2px;
    box-shadow: 0 12px 36px rgba(10,10,10,.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .2s, transform .2s, visibility 0s linear .2s;
    z-index: 100;
    overflow: hidden;
}
.header-account-wrap:hover .header-account-dropdown,
.header-account-wrap:focus-within .header-account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}
.header-account-greeting {
    padding: 18px 22px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-cream);
}
.header-account-greeting small {
    display: block;
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 4px;
    font-weight: 600;
}
.header-account-greeting strong {
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--ink);
    font-weight: 500;
}
.header-account-cta {
    padding: 22px 22px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-cream);
    text-align: center;
}
.header-account-cta strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 4px;
    font-weight: 500;
}
.header-account-cta p {
    font-size: 12.5px;
    color: var(--text-light);
    margin: 0 0 14px;
    line-height: 1.45;
}
.header-account-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.header-account-cta-actions .btn { font-size: 12px; padding: 10px 16px; }

.header-account-menu { padding: 6px 0; }
.header-account-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    font-size: 13.5px;
    color: var(--text);
    text-decoration: none;
    transition: background .12s, color .12s;
}
.header-account-menu a:hover {
    background: var(--bg-cream);
    color: var(--ink);
}
.header-account-menu a .ico {
    width: 16px;
    height: 16px;
    color: var(--text-light);
    flex-shrink: 0;
}
.header-account-menu a:hover .ico { color: var(--gold-dark); }
.header-account-logout {
    border-top: 1px solid var(--border);
    margin-top: 4px;
    color: var(--text-light) !important;
}
.header-account-logout:hover { color: var(--error) !important; }
.header-account-logout:hover .ico { color: var(--error) !important; }

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    z-index: 90;
    box-shadow: 0 -2px 12px rgba(10,10,10,.04);
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.mbb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px 8px;
    font-size: 10px;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: .04em;
    transition: color .15s;
    position: relative;
}
.mbb-item:hover, .mbb-item.is-active { color: var(--ink); }
.mbb-item .ico { width: 20px; height: 20px; }
.mbb-icon-wrap {
    position: relative;
    display: inline-flex;
}
.mbb-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    background: var(--gold);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 1.5px solid #fff;
}

/* ============================================================
   BRAND STORY (anasayfa)
   ============================================================ */
.brand-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 32px 0;
}
.brand-story-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #f5f1ea 0%, #e8e1cf 100%);
    overflow: hidden;
    border-radius: 2px;
    position: relative;
}
.brand-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-story-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}
.brand-story-placeholder .ico {
    width: 80px;
    height: 80px;
    opacity: .35;
}
.brand-story-content .eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 14px;
    font-weight: 600;
}
.brand-story-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    color: var(--ink);
    margin: 0 0 20px;
    font-weight: 500;
    letter-spacing: -.015em;
    line-height: 1.15;
    font-variation-settings: "opsz" 96, "SOFT" 50;
}
.brand-story-content > p {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 32px;
}
.brand-story-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.brand-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.brand-stat strong {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1;
    font-variation-settings: "opsz" 48, "SOFT" 50;
    font-variant-numeric: tabular-nums;
}
.brand-stat span {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================================
   ORDER TRACKING (siparis-takip.php)
   ============================================================ */
.track-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    padding: 40px 0 80px;
    align-items: start;
}
.track-form-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 2px;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.track-hint {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 20px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.track-hint a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.track-result { min-width: 0; }

.track-info {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 2px;
}
.track-info h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--ink);
    margin: 0 0 24px;
    font-weight: 500;
}
.track-info-steps {
    list-style: none;
    counter-reset: track-step;
    padding: 0;
    margin: 0;
}
.track-info-steps li {
    counter-increment: track-step;
    position: relative;
    padding: 14px 0 14px 56px;
    border-bottom: 1px solid var(--border);
}
.track-info-steps li:last-child { border-bottom: none; padding-bottom: 0; }
.track-info-steps li::before {
    content: counter(track-step);
    position: absolute;
    left: 0;
    top: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--gold-dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
}
.track-info-steps li strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 4px;
    font-weight: 600;
}
.track-info-steps li span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.track-empty {
    text-align: center;
    padding: 60px 24px;
    background: var(--bg-cream);
    border-radius: 2px;
}
.track-empty-icon {
    display: inline-flex;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(181,69,69,.1);
    color: var(--error);
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.track-empty-icon .ico { width: 32px; height: 32px; }
.track-empty h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--ink);
    margin: 0 0 12px;
    font-weight: 500;
}
.track-empty p {
    color: var(--text-light);
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.55;
}

.track-order-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.track-order-head .eyebrow {
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
}
.track-order-head h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--ink);
    margin: 6px 0 4px;
    font-weight: 500;
}
.track-order-date {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}
.track-order-total { text-align: right; }
.track-order-total small {
    display: block;
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}
.track-order-total strong {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    color: var(--ink);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.track-timeline {
    display: flex;
    align-items: center;
    padding: 28px;
    background: var(--bg-cream);
    border-radius: 2px;
    margin-bottom: 32px;
    overflow-x: auto;
    gap: 0;
}
.track-step {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.track-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-mute);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.track-step.is-done .track-step-icon {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}
.track-step-icon .ico { width: 18px; height: 18px; }
.track-step-label {
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
}
.track-step.is-done .track-step-label {
    color: var(--ink);
    font-weight: 600;
}
.track-step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    min-width: 24px;
    margin-top: -22px;
    transition: background .3s;
}
.track-step-line.is-done { background: var(--success); }

.track-cargo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(160,125,62,.08) 0%, rgba(160,125,62,.02) 100%);
    border: 1px solid rgba(160,125,62,.2);
    border-radius: 2px;
    margin-bottom: 32px;
}
.track-cargo small {
    display: block;
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 500;
}
.track-cargo strong {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    letter-spacing: .04em;
    font-weight: 600;
    user-select: all;
}
.track-cargo .ico {
    color: var(--gold-dark);
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.track-h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--ink);
    margin: 32px 0 14px;
    font-weight: 500;
}
.track-items {
    border-top: 1px solid var(--border);
    margin-bottom: 24px;
}
.track-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.track-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    background: var(--bg-cream);
    border-radius: 2px;
}
.track-item-info { min-width: 0; }
.track-item-info a,
.track-item-info span {
    display: block;
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 3px;
}
.track-item-info a:hover { color: var(--gold-dark); }
.track-item-info small {
    font-size: 12px;
    color: var(--text-light);
}
.track-item strong {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--ink);
    font-weight: 500;
}
.track-totals {
    padding: 16px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 24px;
}
.track-address {
    background: var(--bg-cream);
    padding: 18px 22px;
    border-radius: 2px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.7;
}
.track-address strong {
    display: block;
    color: var(--ink);
    margin-bottom: 6px;
    font-weight: 600;
}
.track-address p { margin: 0; }

.track-cta {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-cream);
    border-radius: 2px;
    text-align: center;
}
.track-cta p {
    font-size: 14px;
    color: var(--text);
    margin: 0 0 16px;
    line-height: 1.55;
}

/* ============================================================
   404 PAGE — editorial
   ============================================================ */
.notfound {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #fff 50%);
}
.notfound-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
    padding: 0 24px;
}
.notfound-code {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(6rem, 14vw, 11rem);
    line-height: 1;
    color: var(--gold-dark);
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: -.04em;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    opacity: .92;
}
.notfound-hero .eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 18px;
    font-weight: 600;
}
.notfound-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin: 0 0 16px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -.015em;
    font-variation-settings: "opsz" 96, "SOFT" 50;
}
.notfound-hero > p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0 auto 32px;
    max-width: 540px;
}

.notfound-search {
    display: flex;
    gap: 8px;
    max-width: 520px;
    margin: 0 auto 24px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-strong);
    padding: 6px 6px 6px 16px;
    border-radius: 2px;
    transition: border-color .15s;
}
.notfound-search:focus-within { border-color: var(--ink); }
.notfound-search .ico { color: var(--text-light); flex-shrink: 0; }
.notfound-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 8px;
    font-size: 14.5px;
    color: var(--ink);
    font-family: var(--font-sans);
    outline: none;
}
.notfound-search button {
    margin: 0;
    flex-shrink: 0;
}

.notfound-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.notfound-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 16px;
    font-size: 13px;
    color: var(--text-light);
}
.notfound-links span {
    margin-right: 4px;
}
.notfound-links a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 1px;
    transition: all .15s;
}
.notfound-links a:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.notfound-suggested {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-hero {
    display: flex;
    gap: 12px;
    max-width: 720px;
    margin: 32px auto 24px;
    align-items: stretch;
}
.search-hero-input {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 2px;
    padding: 0 14px;
    transition: border-color .15s;
}
.search-hero-input:focus-within {
    border-color: var(--ink);
}
.search-hero-input .ico {
    color: var(--text-light);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}
.search-hero-input input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 12px;
    font-size: 15px;
    color: var(--ink);
    font-family: var(--font-sans);
    outline: none;
}
.search-hero-clear {
    color: var(--text-light);
    padding: 6px;
    transition: color .15s;
    flex-shrink: 0;
}
.search-hero-clear:hover { color: var(--ink); }

.search-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 720px;
    margin: 0 auto 32px;
    font-size: 13px;
}
.search-categories-label {
    color: var(--text-light);
    margin-right: 4px;
}
.search-category-chip {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid var(--border);
    color: var(--ink);
    text-decoration: none;
    border-radius: 14px;
    font-size: 12.5px;
    background: #fff;
    transition: all .15s;
}
.search-category-chip:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.search-empty {
    text-align: center;
    padding: 60px 24px 100px;
    max-width: 520px;
    margin: 0 auto;
}
.search-empty-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--text-light);
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.search-empty-icon .ico { width: 36px; height: 36px; }
.search-empty h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink);
    margin: 0 0 14px;
    font-weight: 500;
}
.search-empty > p {
    color: var(--text-light);
    margin: 0 0 16px;
    line-height: 1.6;
}
.search-empty ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 28px;
    text-align: left;
    max-width: 320px;
    display: inline-block;
}
.search-empty li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.55;
}
.search-empty li::before {
    content: '·';
    position: absolute;
    left: 8px;
    top: -3px;
    color: var(--gold);
    font-size: 22px;
    font-weight: 700;
}
.search-empty-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.search-suggestions {
    padding: 24px 0 80px;
}

/* ============================================================
   SALE HERO (indirimler.php)
   ============================================================ */
.sale-hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #ede5d3 100%);
    padding: 56px 0 48px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.sale-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(160,125,62,.16) 0%, transparent 70%);
    pointer-events: none;
}
.sale-hero .eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 14px;
    font-weight: 600;
    position: relative;
}
.sale-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 14px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -.02em;
    position: relative;
    font-variation-settings: "opsz" 96, "SOFT" 50;
}
.sale-hero > .container > p {
    font-size: 15.5px;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.6;
    position: relative;
}

.sale-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 28px;
    flex-wrap: wrap;
    position: relative;
}
.sale-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.sale-stat-value {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-dark);
    font-weight: 500;
    line-height: 1;
    font-variation-settings: "opsz" 48, "SOFT" 50;
    font-variant-numeric: tabular-nums;
}
.sale-stat-label {
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================================
   CMS PAGE (sayfa.php)
   ============================================================ */
.cms-head {
    padding: 40px 0 32px;
    border-bottom: 1px solid var(--border);
}
.cms-head .eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
    font-weight: 600;
}
.cms-head h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin: 0 0 10px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -.015em;
    font-variation-settings: "opsz" 96, "SOFT" 50;
}
.cms-head-meta {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.cms-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    padding: 48px 0 80px;
    align-items: start;
}

.cms-content {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text);
    max-width: 720px;
}
.cms-content h2 {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    color: var(--ink);
    margin: 40px 0 16px;
    font-weight: 500;
    letter-spacing: -.01em;
    font-variation-settings: "opsz" 48, "SOFT" 50;
}
.cms-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--ink);
    margin: 32px 0 12px;
    font-weight: 500;
}
.cms-content h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--ink);
    margin: 24px 0 10px;
    text-transform: uppercase;
}
.cms-content p {
    margin: 0 0 18px;
}
.cms-content a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.cms-content a:hover { color: var(--ink); }
.cms-content ul, .cms-content ol {
    margin: 0 0 20px;
    padding-left: 24px;
}
.cms-content li {
    margin-bottom: 6px;
    line-height: 1.7;
}
.cms-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 4px 0 4px 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
}
.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}
.cms-content th,
.cms-content td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.cms-content th {
    background: var(--bg-cream);
    font-weight: 600;
    color: var(--ink);
}
.cms-content img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 2px;
}
.cms-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}

/* Yan menü */
.cms-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.cms-aside-block {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.cms-aside-block:last-child {
    border-bottom: none;
}
.cms-aside-block h4 {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0 0 14px;
    font-weight: 600;
}
.cms-aside-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cms-aside-links li { margin-bottom: 4px; }
.cms-aside-links a {
    display: block;
    padding: 6px 0;
    font-size: 13.5px;
    color: var(--text);
    text-decoration: none;
    transition: color .12s, padding-left .15s;
}
.cms-aside-links a:hover {
    color: var(--ink);
    padding-left: 4px;
}

.cms-aside-contact {
    background: var(--bg-cream);
    padding: 22px 24px;
    border-radius: 2px;
    border-bottom: none !important;
}
.cms-aside-contact h4 {
    font-family: var(--font-serif);
    font-size: 15px;
    text-transform: none;
    letter-spacing: -.005em;
    margin-bottom: 8px;
    font-weight: 500;
}
.cms-aside-contact p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 14px;
    line-height: 1.5;
}
.cms-aside-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--ink);
    text-decoration: none;
    border-top: 1px solid var(--border);
    transition: color .15s;
}
.cms-aside-contact-link:first-of-type {
    border-top: 1px solid var(--border);
}
.cms-aside-contact-link:hover { color: var(--gold-dark); }
.cms-aside-contact-link .ico { color: var(--gold-dark); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
    .footer-brand { grid-column: 1 / -1; max-width: 100%; }
    .main-nav a { padding: 14px 12px; font-size: 12.5px; }
    .header-left { max-width: 280px; }
    .brand-name { font-size: 26px; }
    .acc-layout { grid-template-columns: 180px 1fr; gap: 40px; }
    .acc-summary { grid-template-columns: 1fr 1fr; }
    .acc-summary-item:nth-child(2) { border-right: none; }
    .acc-summary-item { padding-right: 24px; padding-left: 24px; }
    .acc-summary-item:nth-child(odd) { padding-left: 0; }
    .acc-summary-item:nth-child(even) { padding-right: 0; }
    .acc-addresses { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    /* Header - mobile */
    .header-brand-row { padding: 14px 0; }
    .header-brand-grid { grid-template-columns: auto 1fr auto; gap: 12px; }
    .header-left { max-width: none; width: auto; }
    .header-right { gap: 0; }
    .header-icon-btn {
        padding: 8px;
        min-width: 40px;
        height: 40px;
    }
    .header-icon-label { display: none; }
    .header-account {
        padding-left: 8px;
        padding-right: 8px;
    }
    .header-icon-btn .ico { width: 21px; height: 21px; }
    .header-cart-badge {
        top: 0;
        right: 0;
        min-width: 17px;
        height: 17px;
        font-size: 9.5px;
    }

    /* Mobile'da search form'u gizle */
    .search-form { display: none; }

    /* Menu toggle görünür */
    .menu-toggle { display: flex; }

    .brand-name { font-size: 22px; }
    .brand-tagline { font-size: 8px; letter-spacing: .28em; margin-top: 4px; }

    /* Nav row mobile'da gizli (drawer'da olacak) */
    .header-nav-row { display: none; }

    /* Topbar mobile'da sadece ortayı göster */
    .topbar { height: 34px; font-size: 11px; }
    .topbar-grid { grid-template-columns: 1fr; }
    .topbar-left, .topbar-right { display: none; }

    .hero-content { padding: 0 24px; }
    .hero-nav { left: 24px; }
    .hero-arrows { right: 24px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 40px 0; gap: 32px 16px; }
    .trust-item { padding: 0 8px; }
    .trust-item:nth-child(2)::after { display: none; }
    .trust-item:nth-child(odd)::after { display: none; }
    .trust-icon-wrap { width: 56px; height: 56px; margin-bottom: 14px; }
    .trust-icon-wrap .ico { width: 22px; height: 22px; }
    .trust-item-title { font-size: 15px; }
    .trust-item-text { font-size: 11.5px; }
    .category-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .editorial { grid-template-columns: 1fr; }
    .editorial-content { padding: 48px 24px; }
    .product-layout { grid-template-columns: 1fr; gap: 32px; }
    .gallery { grid-template-columns: 1fr; position: static; }
    .gallery-thumbs { flex-direction: row; overflow-x: auto; }
    .shop-layout, .cart-layout { grid-template-columns: 1fr; }
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,.4);
        z-index: 1000;
        padding: 0;
        display: none;
        overflow: hidden;
        align-self: stretch;
    }
    .shop-sidebar.mobile-open {
        display: block;
    }
    .shop-sidebar .filter-sidebar {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 85%;
        max-width: 360px;
        background: #fff;
        padding: 20px 24px 24px;
        overflow-y: auto;
        animation: slideInLeft .25s ease;
    }
    @keyframes slideInLeft {
        from { transform: translateX(-100%); }
        to { transform: translateX(0); }
    }
    body.filter-drawer-open { overflow: hidden; }
    .filter-mobile-toggle { display: inline-flex; }
    .checkout-layout { grid-template-columns: 1fr; gap: 24px; }
    .checkout-summary { position: static; }
    .checkout-section-body { padding: 20px; }
    .checkout-section-head { padding: 14px 20px; }
    .checkout-saved-addresses { grid-template-columns: 1fr; }
    .order-complete-meta { grid-template-columns: 1fr 1fr; gap: 16px; }
    .order-complete-meta > div { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
    .order-complete-meta > div:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
    .order-info-grid { grid-template-columns: 1fr; }
    .auth-wrap { grid-template-columns: 1fr; gap: 32px; }
    .auth-side { padding: 0; }
    .auth-card { padding: 28px 24px; }
    .cms-layout { grid-template-columns: 1fr; gap: 40px; }
    .cms-sidebar { position: static; }
    .sale-stats { gap: 28px; }
    .sale-stat-value { font-size: 1.5rem; }
    .search-hero { flex-direction: column; }

    /* Brand story responsive */
    .brand-story { grid-template-columns: 1fr; gap: 32px; }
    .brand-story-image { aspect-ratio: 4/3; max-height: 360px; }
    .brand-story-stats { gap: 24px; flex-wrap: wrap; }

    /* Track responsive */
    .track-layout { grid-template-columns: 1fr; gap: 32px; }
    .track-form-card { position: static; padding: 24px; }
    .track-order-head { flex-direction: column; }
    .track-order-total { text-align: left; }

    /* Header dropdown - mobilde gizli, drawer kullanılıyor */
    .header-account-dropdown { display: none; }

    /* Mobile bottom bar görünür */
    .mobile-bottom-bar { display: flex; }
    /* Bottom bar varken footer'a alt padding ekle */
    body { padding-bottom: 64px; }
    body.filter-drawer-open .mobile-bottom-bar { display: none; }

    /* Floating butonları mobile bar üstüne kaydır */
    .whatsapp-float { bottom: 84px !important; }
    .back-to-top { bottom: 84px !important; }

    /* Toast container mobilde tam genişlik */
    .toast-container {
        right: 12px;
        left: 12px;
        bottom: 84px; /* mobile bar üstüne */
        max-width: none;
        width: auto;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-areas:
            "img info"
            "qty total";
        gap: 16px;
        padding: 20px 0;
    }
    .cart-item-img { width: 80px; height: 80px; grid-area: img; }
    .cart-item-info { grid-area: info; }
    .cart-item-qty { grid-area: qty; }
    .cart-item-total { grid-area: total; text-align: right; align-self: center; }
    .shop-sidebar, .cart-summary { position: static; }

    /* Account responsive (mobile) */
    .acc-layout { grid-template-columns: 1fr; gap: 32px; padding: 32px 0 60px; }
    .acc-sidebar { position: static; }
    .acc-nav {
        flex-direction: row;
        overflow-x: auto;
        border-top: none;
        gap: 4px;
        padding-bottom: 8px;
        margin-bottom: 8px;
        scrollbar-width: thin;
    }
    .acc-nav-link {
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 13px;
        border-bottom: 1px solid var(--border);
        white-space: nowrap;
    }
    .acc-nav-link.active::before {
        left: 50%;
        top: auto;
        bottom: -1px;
        transform: translateX(-50%);
        width: 24px;
        height: 2px;
    }
    .acc-nav-logout {
        margin-top: 0;
        border-top: 1px solid var(--border);
    }
    .acc-summary { grid-template-columns: 1fr 1fr; }
    .acc-summary-item {
        padding: 22px 16px;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
    .acc-summary-item:nth-child(even) { border-right: none; }
    .acc-summary-item:nth-last-child(-n+2) { border-bottom: none; }
    .acc-summary-value { font-size: 1.5rem; }

    .acc-order { grid-template-columns: 1fr; gap: 16px; padding: 20px 0; }
    .acc-order-meta { justify-content: space-between; }
    .acc-order:hover { padding-left: 0; padding-right: 0; }

    .acc-addresses { grid-template-columns: 1fr; }
    .acc-item { grid-template-columns: 56px 1fr auto; gap: 14px; }
    .acc-item img { width: 56px; height: 56px; }
    .acc-summary-block { max-width: 100%; }

    .acc-form .form-row { grid-template-columns: 1fr; gap: 0; }

    .newsletter-hero { padding: 56px 0; }
    .newsletter-hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: left; }
    .newsletter-input-wrap {
        flex-direction: column;
        align-items: stretch;
        padding: 6px;
        gap: 6px;
    }
    .newsletter-input-wrap > .ico { display: none; }
    .newsletter-input-wrap input {
        padding: 14px 14px;
        text-align: center;
    }
    .newsletter-input-wrap button {
        justify-content: center;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-column: 1 / -1; }

    .footer-trust {
        grid-template-columns: 1fr 1fr;
        gap: 14px 24px;
        padding: 20px 0;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }
    .footer-bottom-mid { justify-self: center; flex-direction: column; }
    .footer-bottom-right { justify-self: center; }

    .back-to-top { display: none !important; }
}
@media (max-width: 560px) {
    .container, .container-narrow { padding: 0 16px; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
    .section { padding: 56px 0; }
    .attribute-list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .brand-name { font-size: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-trust { grid-template-columns: 1fr; }
    .newsletter-headline { font-size: 1.5rem; }
}

/* ============================================
   KDV / VAT - Bilgi Notları
   ============================================ */


/* Ürün detay sayfası KDV notu */
.pd-vat-note {
    margin-top: 6px;
    font-size: 12px;
    color: #948877;
    font-style: italic;
}

/* KDV bilgi notu - sade, sepet özetiyle uyumlu */
.summary-vat-note {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    font-size: 12px;
    color: #948877;
    line-height: 1.5;
    text-align: right;
}
.summary-vat-note strong {
    color: #1a1612;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    margin-left: 4px;
}

/* ============================================
   Sipariş Detay - Fatura Bilgileri Rozet
   ============================================ */
.order-billing-badge {
    display: inline-block;
    padding: 3px 9px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #f3efe7;
    color: #5a4f44;
    border-radius: 12px;
    margin-bottom: 6px;
    border: 1px solid rgba(164, 117, 54, 0.2);
}


/* ============================================
   STOK BİLDİRİMİ - Premium "Haber Ver" Kartı
   ============================================ */
.sn-card {
    margin-top: 16px;
    padding: 24px 26px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sn-card.sn-card-success {
    border-color: rgba(46, 122, 46, 0.2);
    background: linear-gradient(180deg, #f7fdf4 0%, #ffffff 100%);
}

/* Status row top */
.sn-status-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 11px;
    font-weight: 600;
    color: #948877;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.sn-status-row.sn-status-success {
    color: #2c7a2c;
}
.sn-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4a572;
    position: relative;
    flex-shrink: 0;
}
.sn-status-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: #c4a572;
    opacity: 0.3;
    animation: snPulse 2s infinite;
}
.sn-status-dot.is-on {
    background: #2c7a2c;
}
.sn-status-dot.is-on::before {
    background: #2c7a2c;
}
@keyframes snPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0; }
}

/* Form section */
.sn-form-head {
    margin-bottom: 18px;
}
.sn-form-title {
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #1a1612;
    letter-spacing: -0.3px;
    line-height: 1.25;
}
.sn-form-sub {
    margin: 0;
    font-size: 13.5px;
    color: #5a4f44;
    line-height: 1.6;
}

/* Form fields */
.sn-field-group {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}
.sn-field {
    display: flex;
    flex-direction: column;
}
.sn-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: #4a4036;
    letter-spacing: 0.4px;
}
.sn-optional {
    color: #948877;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    font-size: 11px;
}
.sn-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 14px;
    color: #1a1612;
    background: #ffffff;
    font-family: inherit;
    transition: all 0.18s ease;
    box-sizing: border-box;
}
.sn-input::placeholder {
    color: #b8b0a3;
}
.sn-input:focus {
    outline: none;
    border-color: #a47536;
    box-shadow: 0 0 0 3px rgba(164, 117, 54, 0.12);
}
.sn-input:hover:not(:focus) {
    border-color: rgba(0, 0, 0, 0.18);
}

/* Submit button */
.sn-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #1a1612;
    color: #ffffff;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
.sn-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}
.sn-submit-btn:hover:not(:disabled) {
    background: #2d2620;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26, 22, 18, 0.2);
}
.sn-submit-btn:hover:not(:disabled)::before {
    left: 100%;
}
.sn-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}
.sn-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.sn-submit-btn svg {
    flex-shrink: 0;
}
.sn-btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.sn-spinner {
    animation: snSpin 0.8s linear infinite;
}
@keyframes snSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Result */
.sn-result {
    margin-top: 12px;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.sn-result.is-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.sn-result svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Privacy note */
.sn-privacy {
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 11.5px;
    color: #948877;
    line-height: 1.5;
}
.sn-privacy svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #b8b0a3;
}

/* Success state */
.sn-success-state {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.sn-success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f9ec 0%, #e0f5d6 100%);
    color: #2c7a2c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid rgba(46, 122, 46, 0.2);
    animation: snSuccessIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes snSuccessIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.sn-success-content {
    flex: 1;
    min-width: 0;
}
.sn-success-title {
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 19px;
    font-weight: 500;
    color: #1a1612;
    line-height: 1.3;
}
.sn-success-desc {
    font-size: 13px;
    color: #5a4f44;
    line-height: 1.6;
}
.sn-success-desc strong {
    color: #1a1612;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 540px) {
    .sn-card {
        padding: 20px 18px;
    }
    .sn-form-title {
        font-size: 19px;
    }
    .sn-success-state {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ============================================
   HESABIM - İade Cardları
   ============================================ */
.acc-return-card {
    margin-top: 20px;
    padding: 18px 20px;
    background: linear-gradient(180deg, #faf7f1 0%, #fff 100%);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
}
.acc-return-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.acc-return-eyebrow {
    font-size: 10.5px;
    color: #a47536;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3px;
}
.acc-return-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    color: #1a1612;
    font-weight: 500;
}
.acc-return-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid;
    white-space: nowrap;
}
.acc-return-body {
    font-size: 13px;
    color: #5a4f44;
    margin-bottom: 10px;
}
.acc-return-body strong { color: #a47536; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; }
.acc-return-link {
    font-size: 13px;
    color: #a47536;
    text-decoration: none;
    font-weight: 500;
}
.acc-return-link:hover { text-decoration: underline; }

.acc-return-cta {
    margin-top: 20px;
    padding: 18px 22px;
    background: #f0f9ec;
    border: 1px solid #c6e8b8;
    border-left: 3px solid #2c7a2c;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.acc-return-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    color: #1a1612;
    font-weight: 500;
    margin-bottom: 4px;
}
.acc-return-cta-desc {
    font-size: 13px;
    color: #4a4036;
    line-height: 1.5;
}
.acc-return-cta-desc strong { color: #2c7a2c; }
.acc-return-btn {
    padding: 11px 22px;
    background: #1a1612;
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.acc-return-btn:hover { background: #2d2620; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,22,18,0.2); }

/* Hesabım - Fatura indir butonu */
.acc-actions-row {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.acc-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: #fff;
    color: #1a1612;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.acc-action-btn:hover {
    border-color: #a47536;
    background: #faf3e3;
    color: #a47536;
    transform: translateY(-1px);
}

/* Hesabım - Fatura henüz hazırlanmadı */
.acc-invoice-pending {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    background: #fff8e6;
    border: 1px solid #f0d68b;
    border-left: 3px solid #d4a73a;
    border-radius: 10px;
    width: 100%;
}
.acc-invoice-pending-icon { font-size: 22px; flex-shrink: 0; }
.acc-invoice-pending strong { display: block; font-size: 13.5px; color: #1a1612; margin-bottom: 2px; }
.acc-invoice-pending small { font-size: 12px; color: #5a4f44; display: block; line-height: 1.45; }

/* ============================================
   HESABIM - Sipariş Timeline (müşteri)
   ============================================ */
.acc-timeline-card {
    margin-top: 24px;
    padding: 20px 22px;
    background: linear-gradient(180deg, #faf7f1 0%, #fff 100%);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
}
.acc-timeline-card .acc-h3 {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    color: #1a1612;
    font-weight: 500;
}

.acc-timeline {
    position: relative;
    padding-left: 4px;
}
.acc-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: rgba(0,0,0,0.08);
    z-index: 0;
}
.acc-tl-row {
    display: flex;
    gap: 14px;
    padding: 8px 0;
    position: relative;
    z-index: 1;
}
.acc-tl-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    font-size: 14px;
}
.acc-tl-body {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}
.acc-tl-title {
    font-size: 14px;
    color: #1a1612;
    font-weight: 500;
    margin-bottom: 3px;
    line-height: 1.4;
}
.acc-tl-desc {
    font-size: 12.5px;
    color: #5a4f44;
    line-height: 1.5;
    margin-bottom: 4px;
}
.acc-tl-time {
    font-size: 11.5px;
    color: #948877;
    font-family: monospace;
}

/* ============================================
   GELİŞMİŞ YORUM SİSTEMİ (urun.php)
   ============================================ */

/* Özet kartı: ortalama + dağılım barları */
.rv-summary {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: center;
    padding: 24px 28px;
    background: linear-gradient(180deg, #faf7f1 0%, #fff 100%);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    margin-bottom: 22px;
}
.rv-summary-left {
    text-align: center;
    padding-right: 28px;
    border-right: 1px solid rgba(0,0,0,0.08);
}
.rv-avg-big {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px;
    line-height: 1;
    color: #1a1612;
    font-weight: 500;
    margin-bottom: 6px;
}
.rv-stars-lg {
    color: #d4a73a;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.rv-count {
    font-size: 12px;
    color: #948877;
    letter-spacing: 0.3px;
}

.rv-summary-right {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rv-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}
.rv-bar-label {
    width: 30px;
    color: #5a4f44;
    font-weight: 600;
}
.rv-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(0,0,0,0.06);
    border-radius: 4px;
    overflow: hidden;
}
.rv-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4a73a 0%, #a47536 100%);
    border-radius: 4px;
    transition: width 0.4s ease;
}
.rv-bar-count {
    width: 32px;
    text-align: right;
    color: #948877;
    font-size: 12px;
    font-family: monospace;
}

/* Sıralama */
.rv-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.rv-sort-label {
    font-size: 12px;
    color: #948877;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.rv-sort-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.rv-chip {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 18px;
    font-size: 12.5px;
    color: #5a4f44;
    text-decoration: none;
    transition: all 0.2s ease;
}
.rv-chip:hover {
    border-color: #a47536;
    color: #a47536;
}
.rv-chip.is-on {
    background: #1a1612;
    border-color: #1a1612;
    color: #fff;
}

/* Yorum listesi */
.rv-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}
.rv-item {
    position: relative;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
}
.rv-item.is-featured {
    border-color: #e8d4a8;
    background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
    border-left: 3px solid #d4a73a;
}
.rv-featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10.5px;
    color: #a47536;
    background: #faf3e3;
    border: 1px solid #e8d4a8;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.rv-item-head {
    margin-bottom: 12px;
}
.rv-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rv-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a47536 0%, #d4a73a 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    flex-shrink: 0;
}
.rv-author-name {
    font-size: 14.5px;
    color: #1a1612;
    font-weight: 600;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.rv-verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10.5px;
    color: #2c7a2c;
    background: #f0f9ec;
    border: 1px solid #c6e8b8;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.rv-verified-pill .ico { width: 11px; height: 11px; }
.rv-author-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}
.rv-stars-sm {
    color: #d4a73a;
    letter-spacing: 1px;
}
.rv-time {
    color: #948877;
}

.rv-comment {
    font-size: 14px;
    line-height: 1.65;
    color: #4a4036;
    margin: 10px 0;
}

.rv-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 100px));
    gap: 8px;
    margin: 12px 0;
}
.rv-img {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rv-img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.rv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rv-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(0,0,0,0.08);
    flex-wrap: wrap;
}
.rv-helpful-label {
    font-size: 12.5px;
    color: #948877;
    margin-right: 4px;
}
.rv-vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 16px;
    font-size: 13px;
    color: #5a4f44;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.rv-vote-btn:hover {
    border-color: #a47536;
    background: #faf3e3;
}
.rv-vote-btn.is-voted {
    background: #f0f9ec;
    border-color: #c6e8b8;
    color: #2c7a2c;
    font-weight: 600;
}
.rv-vote-btn.is-voted-no {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
    font-weight: 600;
}
.rv-vote-count {
    font-family: monospace;
    font-size: 12px;
    min-width: 12px;
}

@media (max-width: 700px) {
    .rv-summary { grid-template-columns: 1fr; gap: 18px; padding: 20px 18px; }
    .rv-summary-left { padding-right: 0; padding-bottom: 18px; border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .rv-avg-big { font-size: 44px; }
    .rv-item { padding: 16px 18px; }
}

/* ============================================
   WISHLIST PAYLAŞIMI - Favorilerim sayfası
   ============================================ */
.wl-share-card {
    margin-bottom: 32px;
    padding: 26px 28px;
    background: linear-gradient(180deg, #faf7f1 0%, #fff 100%);
    border: 1px solid rgba(0,0,0,0.08);
    border-left: 4px solid #a47536;
    border-radius: 14px;
}
.wl-share-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.wl-share-icon, .wl-share-icon-on {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wl-share-icon {
    background: #faf3e3;
    border: 1px solid #e8d4a8;
    color: #a47536;
}
.wl-share-icon-on {
    background: #f0f9ec;
    border: 1px solid #c6e8b8;
    color: #2c7a2c;
}
.wl-share-head h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: #1a1612;
    margin: 0 0 4px;
}
.wl-share-head p {
    margin: 0;
    color: #5a4f44;
    font-size: 13.5px;
    line-height: 1.55;
}

.wl-share-link {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}
.wl-share-link input {
    flex: 1;
    padding: 11px 14px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    background: #fff;
    font-family: monospace;
    font-size: 12.5px;
    color: #4a4036;
    min-width: 0;
}
.wl-share-link input:focus { outline: none; border-color: #a47536; }
.wl-share-link .btn {
    flex-shrink: 0;
    white-space: nowrap;
}
.wl-share-link .btn.is-copied {
    background: #2c7a2c;
    border-color: #2c7a2c;
}

.wl-share-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.wl-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    color: #4a4036;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.wl-social-btn:hover { transform: translateY(-1px); }
.wl-social-btn.wl-wa:hover { border-color: #25d366; color: #25d366; background: #f0fdf4; }
.wl-social-btn.wl-em:hover { border-color: #a47536; color: #a47536; background: #faf3e3; }

.wl-share-customize {
    margin-bottom: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}
.wl-share-customize summary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #a47536;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 0;
    list-style: none;
}
.wl-share-customize summary::-webkit-details-marker { display: none; }
.wl-share-customize[open] summary { color: #1a1612; margin-bottom: 14px; }

.wl-share-form .form-group { margin-bottom: 14px; }
.wl-share-form input,
.wl-share-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    font-family: inherit;
    font-size: 13.5px;
    color: #1a1612;
    background: #fff;
}
.wl-share-form input:focus,
.wl-share-form textarea:focus {
    outline: none;
    border-color: #a47536;
}
.wl-share-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 12.5px;
    color: #5a4f44;
    font-weight: 500;
}

.wl-share-actions {
    display: flex;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(0,0,0,0.1);
    flex-wrap: wrap;
}
.wl-link-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 0;
    color: #948877;
    font-size: 12px;
    cursor: pointer;
    font-family: inherit;
    padding: 4px 0;
    transition: color 0.2s;
}
.wl-link-action:hover { color: #a47536; }
.wl-link-action.wl-link-danger:hover { color: #991b1b; }

@media (max-width: 600px) {
    .wl-share-card { padding: 20px 18px; }
    .wl-share-link { flex-direction: column; }
    .wl-share-link .btn { width: 100%; }
}

/* ============================================
   YENİDEN SİPARİŞ (Reorder)
   ============================================ */

/* Sipariş listesi - container reorder buton ile beraber */
.acc-orders .acc-order {
    position: relative;
    display: block;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: all 0.2s ease;
}
.acc-orders .acc-order:hover {
    border-color: rgba(164, 117, 54, 0.3);
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.acc-order-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
}
.acc-order-actions {
    padding: 0 18px 14px;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    border-top: 1px dashed rgba(0,0,0,0.07);
    padding-top: 12px;
    margin-top: 4px;
}
.acc-order-reorder {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    color: #4a4036;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.acc-order-reorder:hover {
    border-color: #a47536;
    background: #faf3e3;
    color: #a47536;
    transform: translateY(-1px);
}

/* Primary CTA (Sipariş Detay'da büyük buton) */
.acc-action-primary {
    background: linear-gradient(135deg, #a47536 0%, #c08e44 100%) !important;
    color: #fff !important;
    border-color: #a47536 !important;
}
.acc-action-primary:hover {
    background: linear-gradient(135deg, #8d6228 0%, #a47536 100%) !important;
    color: #fff !important;
    border-color: #8d6228 !important;
    box-shadow: 0 4px 16px rgba(164, 117, 54, 0.3);
}

/* Sipariş ürün satırı - sağdaki aksiyon kolonu */
.acc-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    margin-bottom: 8px;
}
.acc-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}
.acc-item-reorder {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px 10px;
    background: #faf3e3;
    border: 1px solid #e8d4a8;
    border-radius: 6px;
    color: #a47536;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 500;
    transition: all 0.18s ease;
    white-space: nowrap;
}
.acc-item-reorder:hover {
    background: #a47536;
    color: #fff;
    border-color: #a47536;
}

@media (max-width: 600px) {
    .acc-order-link { flex-wrap: wrap; }
    .acc-order-meta { width: 100%; justify-content: space-between; }
    .acc-item-actions { flex-direction: row; align-items: center; }
}

/* ============================================
   ÜRÜN KARŞILAŞTIRMA
   ============================================ */

/* Product card - actions group (heart + compare) */
.product-actions-top {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}
.product-actions-top .product-wishlist-btn,
.product-compare-btn {
    position: static;
    margin: 0;
}
.product-compare-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5a4f44;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}
.product-compare-btn:hover {
    background: #fff;
    color: #a47536;
    transform: scale(1.05);
}
.product-compare-btn.active {
    background: #a47536;
    color: #fff;
    border-color: #a47536;
}

/* Floating compare bar */
.cmp-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(26, 22, 18, 0.97);
    color: #fff;
    border-top: 2px solid #a47536;
    box-shadow: 0 -8px 28px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    animation: cmpBarSlide 0.4s ease-out;
}
@keyframes cmpBarSlide {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.cmp-bar-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    flex-wrap: wrap;
}
.cmp-bar-thumbs {
    display: flex;
    gap: 8px;
}
.cmp-bar-thumb {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}
.cmp-bar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cmp-bar-thumb-empty {
    background: rgba(255,255,255,0.04);
    border-style: dashed;
}
.cmp-bar-x {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(0,0,0,0.65);
    color: #fff;
    border: 0;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.cmp-bar-x:hover { background: #991b1b; }

.cmp-bar-text {
    color: rgba(255,255,255,0.8);
    font-size: 13.5px;
    flex: 1;
    min-width: 130px;
}
.cmp-bar-text strong { color: #d4a73a; font-size: 16px; }

.cmp-bar-actions { display: flex; gap: 10px; align-items: center; }
.cmp-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: #fff;
}
.cmp-bar-btn-primary {
    background: #a47536;
    border-color: #a47536;
    color: #fff;
}
.cmp-bar-btn-primary:hover {
    background: #c08e44;
    border-color: #c08e44;
    color: #fff;
}
.cmp-bar-close {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.08);
    border: 0;
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}
.cmp-bar-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* Karşılaştırma sayfası */
.cmp-empty {
    text-align: center;
    padding: 80px 20px;
}
.cmp-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #faf3e3;
    color: #a47536;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.cmp-empty h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    color: #1a1612;
    margin: 0 0 10px;
}
.cmp-empty p {
    color: #5a4f44;
    max-width: 420px;
    margin: 0 auto 20px;
    line-height: 1.55;
}

.cmp-tip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #faf3e3;
    border: 1px solid #e8d4a8;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: #4a4036;
}
.cmp-tip a { color: #a47536; font-weight: 600; text-decoration: none; }

.cmp-actions-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}
.cmp-clear-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #948877;
    text-decoration: none;
    font-size: 12.5px;
    padding: 5px 0;
}
.cmp-clear-link:hover { color: #991b1b; }

.cmp-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
}
.cmp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}
.cmp-table th,
.cmp-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    vertical-align: middle;
    text-align: center;
}
.cmp-table tbody tr:nth-child(odd) td:not(.cmp-row-label) {
    background: #faf7f1;
}
.cmp-row-label {
    text-align: left !important;
    background: #fff !important;
    font-size: 12.5px;
    color: #948877;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 160px;
    min-width: 130px;
    position: sticky;
    left: 0;
    z-index: 2;
}

/* Ürün başlık hücresi */
.cmp-product-cell {
    position: relative;
    padding: 24px 16px !important;
    min-width: 200px;
    background: linear-gradient(180deg, #fff 0%, #faf7f1 100%) !important;
    border-bottom: 2px solid #a47536 !important;
}
.cmp-remove {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    color: #948877;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.cmp-remove:hover { background: #991b1b; color: #fff; }

.cmp-product-link { text-decoration: none; color: inherit; display: block; }
.cmp-product-img {
    width: 110px;
    height: 110px;
    margin: 0 auto 10px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
}
.cmp-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cmp-product-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    color: #1a1612;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 42px;
}
.cmp-product-price {
    margin-bottom: 12px;
}
.cmp-price-old {
    text-decoration: line-through;
    color: #948877;
    font-size: 12px;
    margin-right: 6px;
}
.cmp-price-now {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    color: #a47536;
    font-weight: 600;
}
.cmp-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: #1a1612;
    color: #fff;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.2s;
}
.cmp-cart-btn:hover { background: #a47536; }
.cmp-out-of-stock {
    padding: 8px 16px;
    background: rgba(0,0,0,0.04);
    color: #948877;
    border-radius: 8px;
    font-size: 12px;
}

/* Boş slot */
.cmp-empty-slot {
    background: rgba(0,0,0,0.02) !important;
    border: 1px dashed rgba(0,0,0,0.1) !important;
}
.cmp-add-more {
    display: block;
    padding: 30px 10px;
    text-decoration: none;
    color: #948877;
    text-align: center;
    transition: color 0.2s;
}
.cmp-add-more:hover { color: #a47536; }
.cmp-add-icon {
    font-size: 28px;
    margin-bottom: 4px;
    font-weight: 300;
}
.cmp-cell { font-size: 13.5px; color: #4a4036; }
.cmp-cell-empty { background: rgba(0,0,0,0.02); }
.cmp-mono { font-family: monospace; font-size: 12px; }
.cmp-desc-cell { font-size: 12.5px; line-height: 1.5; max-width: 260px; }

.cmp-price-cell { position: relative; }
.cmp-price-cell.cmp-best {
    background: #f0f9ec !important;
}
.cmp-price-cell.cmp-best strong { color: #2c7a2c; font-size: 15px; }
.cmp-price-old-inline {
    display: block;
    text-decoration: line-through;
    color: #948877;
    font-size: 11px;
    margin-bottom: 2px;
}
.cmp-best-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    background: #2c7a2c;
    color: #fff;
    border-radius: 10px;
    font-size: 9.5px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cmp-stock-on { color: #2c7a2c; font-weight: 500; }
.cmp-stock-low { color: #b8810f; font-weight: 500; }
.cmp-stock-out { color: #991b1b; }

.cmp-rating { line-height: 1.3; }
.cmp-stars { color: #d4a73a; font-size: 14px; letter-spacing: 1px; }
.cmp-rating-meta { display: block; font-size: 11px; color: #948877; }

.cmp-detail-btn {
    display: inline-block;
    padding: 6px 14px;
    background: transparent;
    color: #a47536;
    border: 1px solid #a47536;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
}
.cmp-detail-btn:hover { background: #a47536; color: #fff; }

@media (max-width: 700px) {
    .cmp-bar-inner { gap: 10px; }
    .cmp-bar-thumb { width: 42px; height: 42px; }
    .cmp-bar-text { font-size: 12px; min-width: 100px; }
    .cmp-bar-btn { padding: 9px 16px; font-size: 13px; }
}

/* Compare bar varsa back-to-top butonu yukarı taşı */
.cmp-bar ~ .back-to-top,
body:has(.cmp-bar) .back-to-top { bottom: 110px; }

/* ============================================
   SOCIAL PROOF
   ============================================ */

/* Ürün sayfası rozetleri */
.pd-social-proof {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0 16px;
}
.pd-sp-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: #4a4036;
    line-height: 1.4;
    width: fit-content;
    max-width: 100%;
}
.pd-sp-item strong { color: #1a1612; font-weight: 600; }
.pd-sp-viewers {
    background: #f0ecff;
    border: 1px solid #d4c5fb;
    color: #5b3fc4;
}
.pd-sp-viewers strong { color: #5b3fc4; }
.pd-sp-sold {
    background: #f0f9ec;
    border: 1px solid #c6e8b8;
    color: #2c7a2c;
}
.pd-sp-sold strong { color: #2c7a2c; }

.pd-sp-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5b3fc4;
    flex-shrink: 0;
    animation: spPulse 1.8s infinite;
    box-shadow: 0 0 0 0 rgba(91, 63, 196, 0.7);
}
@keyframes spPulse {
    0%   { box-shadow: 0 0 0 0   rgba(91, 63, 196, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(91, 63, 196, 0); }
    100% { box-shadow: 0 0 0 0   rgba(91, 63, 196, 0); }
}

/* Toast — Sol alt köşede pop-up */
.sp-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 85;
    max-width: 340px;
    width: calc(100% - 48px);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    transform: translateX(-120%) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.sp-toast.is-on {
    transform: translateX(0) translateY(0);
    opacity: 1;
    visibility: visible;
}
.sp-toast-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.sp-toast-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #faf7f1;
    border: 1px solid rgba(0,0,0,0.06);
}
.sp-toast-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sp-toast-body { flex: 1; min-width: 0; padding-right: 18px; }
.sp-toast-msg {
    font-size: 13px;
    color: #4a4036;
    line-height: 1.4;
    margin-bottom: 3px;
}
.sp-toast-msg strong {
    color: #1a1612;
    font-weight: 600;
}
.sp-toast-product {
    color: #948877;
    font-size: 12.5px;
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
}
.sp-toast-time {
    font-size: 11px;
    color: #a47536;
    letter-spacing: 0.3px;
    font-weight: 500;
}
.sp-toast-close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 22px;
    height: 22px;
    border: 0;
    background: rgba(0,0,0,0.04);
    border-radius: 50%;
    color: #948877;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sp-toast-close:hover {
    background: rgba(0,0,0,0.1);
    color: #1a1612;
}

/* Altın aksent şerit sol kenar */
.sp-toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #d4a73a 0%, #a47536 100%);
}

/* Compare bar + sp-toast birlikte: çakışma yok, biri sol biri tam alt */
.cmp-bar ~ .sp-toast,
body:has(.cmp-bar) .sp-toast { bottom: 110px; }

@media (max-width: 600px) {
    .sp-toast {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
    }
    .cmp-bar ~ .sp-toast,
    body:has(.cmp-bar) .sp-toast { bottom: 100px; }
}

/* ============================================
   MOBILE CART UX — Sticky CTA + Swipe + Mobile bar
   ============================================ */

/* ===== ÜRÜN SAYFASI - Mobile sticky CTA bar ===== */
.pd-mobile-cta {
    display: none; /* sadece mobile'da gözükür */
}

@media (max-width: 768px) {
    .pd-mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 80;
        background: #fff;
        border-top: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0));
        gap: 12px;
        align-items: center;
        transform: translateY(120%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .pd-mobile-cta.is-on {
        transform: translateY(0);
    }
    .pd-mobile-cta-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
    }
    .pd-mobile-cta-price {
        display: flex;
        align-items: baseline;
        gap: 6px;
        flex-wrap: wrap;
    }
    .pd-mobile-cta-price strong {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 22px;
        color: #a47536;
        font-weight: 600;
        line-height: 1;
    }
    .pd-mobile-cta-old {
        font-size: 12px;
        color: #948877;
        text-decoration: line-through;
    }
    .pd-mobile-cta-meta {
        font-size: 11.5px;
        color: #948877;
    }
    .pd-mobile-cta-stock { color: #2c7a2c; font-weight: 500; }
    .pd-mobile-cta-low { color: #b8810f; font-weight: 600; }
    .pd-mobile-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 14px 22px;
        background: linear-gradient(135deg, #1a1612 0%, #2d2620 100%);
        color: #fff;
        border: 0;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 600;
        font-family: inherit;
        cursor: pointer;
        white-space: nowrap;
        transition: transform 0.15s;
        flex-shrink: 0;
    }
    .pd-mobile-cta-btn:active {
        transform: scale(0.96);
    }

    /* Mobile CTA varsa - back to top yukarı kayar */
    body:has(.pd-mobile-cta.is-on) .back-to-top {
        bottom: 90px;
    }

    /* Compare bar + mobile CTA aynı anda - mobile cta üstte */
    body:has(.cmp-bar) .pd-mobile-cta { bottom: 88px; }
}

/* ===== SEPET - Swipe to remove ===== */
.cart-item-swipe {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
}
.cart-item-swipe .cart-item {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    background: #fff;
    will-change: transform;
}
.cart-item-swipe-action {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(135deg, #991b1b 0%, #b91c1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    border-radius: 0 12px 12px 0;
}
.cart-swipe-remove-btn {
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0;
}
.cart-swipe-remove-btn span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.cart-swipe-remove-btn svg {
    width: 22px;
    height: 22px;
}

/* Sadece mobile'da swipe aktif görünür — desktop'ta swipe-action gizle */
@media (min-width: 769px) {
    .cart-item-swipe-action { display: none; }
    .cart-item-swipe { overflow: visible; }
}

@media (max-width: 768px) {
    /* Mobile'da sıralı dokunma alanı için kaldır butonu satır içindeyse daha az belirsin */
    .cart-item-remove {
        font-size: 11px !important;
        opacity: 0.65;
    }
    /* Swipe ipucu — ilk satıra subtle gradient */
    .cart-item-swipe:first-child::after {
        content: '← sola kaydır';
        position: absolute;
        bottom: 6px;
        right: 8px;
        font-size: 9.5px;
        color: rgba(0,0,0,0.3);
        pointer-events: none;
        z-index: 2;
        letter-spacing: 0.4px;
    }
}

/* ===== SEPET - Mobile bottom checkout bar ===== */
.cart-mobile-bar {
    display: none;
}

@media (max-width: 768px) {
    .cart-mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 80;
        background: #fff;
        border-top: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0));
        gap: 12px;
        align-items: center;
        transition: transform 0.3s ease;
    }
    .cart-mobile-bar.is-hidden {
        transform: translateY(110%);
    }
    .cart-mobile-bar-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .cart-mobile-bar-total {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 22px;
        font-weight: 600;
        color: #a47536;
        line-height: 1;
    }
    .cart-mobile-bar-count {
        font-size: 11.5px;
        color: #948877;
    }
    .cart-mobile-bar-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 14px 22px;
        background: linear-gradient(135deg, #a47536 0%, #c08e44 100%);
        color: #fff;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: transform 0.15s;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .cart-mobile-bar-btn:active { transform: scale(0.96); }

    /* Mobile bar açıkken bottom padding gerekli */
    body:has(.cart-mobile-bar:not(.is-hidden)) { padding-bottom: 80px; }
}

/* Daha büyük qty butonları mobile */
@media (max-width: 600px) {
    .qty-box button {
        min-width: 44px;
        min-height: 44px;
    }
    .qty-box input {
        min-height: 44px;
        font-size: 16px; /* iOS zoom önler */
    }
}

/* Toast action button */
.toast-action {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: inherit;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.toast-action:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* ============================================
   QUICK VIEW MODAL — Hızlı Bakış
   ============================================ */

/* Ürün kartı üzeri hızlı bakış butonu */
.product-quick-view {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%) scale(0.85);
    background: rgba(26, 22, 18, 0.92);
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    z-index: 2;
    white-space: nowrap;
    font-family: inherit;
}
.product-card:hover .product-quick-view {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    bottom: 50%;
}
.product-quick-view:hover {
    background: #a47536;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Mobile'de hover yok - kalp/karşılaştırın yanına ekle */
@media (max-width: 768px) {
    .product-quick-view {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 7px 14px;
        font-size: 11.5px;
        background: rgba(255, 255, 255, 0.95);
        color: #1a1612;
        border: 1px solid rgba(0,0,0,0.08);
        margin-top: 8px;
        display: none; /* Mobile'de kart hover yok, ikon farklı yere koyacağız */
    }
}

/* Modal overlay */
.qv-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(26, 22, 18, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    overflow-y: auto;
}
.qv-overlay.is-on {
    opacity: 1;
    visibility: visible;
}
body.qv-locked { overflow: hidden; }

.qv-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 920px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 28px 80px rgba(0,0,0,0.3);
    transform: scale(0.92) translateY(20px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    position: relative;
}
.qv-overlay.is-on .qv-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Loading */
.qv-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.qv-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(164, 117, 54, 0.2);
    border-top-color: #a47536;
    border-radius: 50%;
    animation: qvSpin 0.9s linear infinite;
}
@keyframes qvSpin { to { transform: rotate(360deg); } }

.qv-error {
    padding: 60px 30px;
    text-align: center;
    color: #5a4f44;
}

/* Modal içerik */
.qv-modal-inner { position: relative; padding: 0; }
.qv-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0,0,0,0.08);
    color: #1a1612;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(6px);
}
.qv-close:hover {
    background: #1a1612;
    color: #fff;
    transform: rotate(90deg);
}

.qv-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Sol — Galeri */
.qv-gallery {
    padding: 30px;
    background: linear-gradient(180deg, #faf7f1 0%, #fff 100%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.qv-main-img-wrap {
    position: relative;
    aspect-ratio: 1;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.qv-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.qv-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 1;
    text-transform: uppercase;
}
.qv-badge-sale { background: #991b1b; color: #fff; }
.qv-badge-new { background: #1a1612; color: #fff; }
.qv-badge-best { background: linear-gradient(135deg, #a47536 0%, #d4a73a 100%); color: #fff; }
.qv-badge-out { background: #6b7280; color: #fff; right: 14px; left: auto; }

.qv-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.qv-thumb {
    aspect-ratio: 1;
    background: #fff;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}
.qv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.qv-thumb:hover { border-color: #a47536; }
.qv-thumb.active { border-color: #a47536; box-shadow: 0 0 0 3px rgba(164, 117, 54, 0.15); }

/* Sağ — Bilgi */
.qv-info {
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.qv-category {
    font-size: 11px;
    font-weight: 600;
    color: #a47536;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
}
.qv-category:hover { text-decoration: underline; }
.qv-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1612;
    line-height: 1.15;
    margin: 0;
}

.qv-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #5a4f44; }
.qv-stars { color: #d4a73a; font-size: 16px; letter-spacing: 1.5px; }
.qv-rating-meta { color: #948877; font-size: 12.5px; }

.qv-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    padding: 6px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin: 4px 0;
}
.qv-price-old {
    text-decoration: line-through;
    color: #948877;
    font-size: 14px;
}
.qv-price-now {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    color: #a47536;
    font-weight: 600;
    line-height: 1;
}
.qv-saved {
    font-size: 11.5px;
    color: #2c7a2c;
    background: #f0f9ec;
    border: 1px solid #c6e8b8;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.qv-stock-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 500;
    width: fit-content;
}
.qv-stock-in {
    background: #f0f9ec;
    color: #2c7a2c;
    border: 1px solid #c6e8b8;
}
.qv-stock-low {
    background: #fff8e6;
    color: #b8810f;
    border: 1px solid #f0d68b;
}
.qv-stock-out {
    background: rgba(0,0,0,0.04);
    color: #948877;
    border: 1px solid rgba(0,0,0,0.08);
}
.qv-stock-low strong { color: #1a1612; }
.qv-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b8810f;
    animation: qvPulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(184, 129, 15, 0.6);
}
@keyframes qvPulse {
    0%   { box-shadow: 0 0 0 0 rgba(184, 129, 15, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(184, 129, 15, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 129, 15, 0); }
}

.qv-short-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #4a4036;
    padding: 4px 0;
}

.qv-options { display: flex; flex-direction: column; gap: 8px; }
.qv-options-label {
    font-size: 11.5px;
    font-weight: 600;
    color: #1a1612;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.qv-option-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.qv-chip {
    padding: 8px 16px;
    background: #fff;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #1a1612;
    font-family: inherit;
    transition: all 0.18s;
}
.qv-chip:hover { border-color: #a47536; }
.qv-chip.active {
    background: #1a1612;
    color: #fff;
    border-color: #1a1612;
}

/* Buy Row */
.qv-buy-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.qv-qty {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    overflow: hidden;
}
.qv-qty-btn {
    width: 42px;
    height: 48px;
    background: none;
    border: 0;
    color: #1a1612;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.qv-qty-btn:hover { background: rgba(0,0,0,0.04); }
.qv-qty input {
    width: 50px;
    height: 48px;
    border: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #1a1612;
    background: transparent;
    font-family: inherit;
    -moz-appearance: textfield;
}
.qv-qty input::-webkit-outer-spin-button,
.qv-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qv-add-cart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    background: linear-gradient(135deg, #1a1612 0%, #2d2620 100%);
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.3px;
    transition: all 0.2s;
}
.qv-add-cart:hover {
    background: linear-gradient(135deg, #a47536 0%, #c08e44 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(164, 117, 54, 0.3);
}
.qv-add-cart.is-success {
    background: #2c7a2c !important;
    transform: scale(1.02);
}
.qv-add-cart:disabled { cursor: not-allowed; opacity: 0.8; }

.qv-out-of-stock-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    color: #5a4f44;
    font-size: 13px;
    line-height: 1.5;
}

.qv-actions-row {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}
.qv-detail-link {
    color: #a47536;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}
.qv-detail-link:hover { color: #1a1612; }

/* MOBILE — Bottom drawer */
@media (max-width: 768px) {
    .qv-overlay {
        padding: 0;
        align-items: flex-end;
    }
    .qv-modal {
        max-height: 92vh;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        opacity: 1;
        animation: none;
    }
    .qv-overlay.is-on .qv-modal {
        transform: translateY(0);
    }
    .qv-layout {
        grid-template-columns: 1fr;
    }
    .qv-gallery {
        padding: 24px 20px 16px;
    }
    .qv-info {
        padding: 22px 20px 32px;
    }
    .qv-title { font-size: 22px; }
    .qv-price-now { font-size: 26px; }
    .qv-buy-row { position: sticky; bottom: 0; background: #fff; padding: 14px 0 0; margin: 0 -20px -32px; padding: 14px 20px calc(20px + env(safe-area-inset-bottom, 0)); border-top: 1px solid rgba(0,0,0,0.06); }

    /* Hover overlay yerine kart-üzeri eye ikon */
    .product-quick-view {
        display: inline-flex;
        position: absolute;
        top: 12px;
        left: 12px;
        bottom: auto;
        right: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 36px;
        height: 36px;
        padding: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        color: #1a1612;
        border: 1px solid rgba(0,0,0,0.06);
        backdrop-filter: blur(8px);
        margin: 0;
        z-index: 3;
    }
    .product-quick-view span {
        display: none;
    }
}

/* ============================================
   CROSS-SELL — İlgili Ürünler Bölümü
   ============================================ */
.cs-section {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, transparent 0%, #faf7f1 50%, transparent 100%);
    margin-top: 40px;
}
.cs-head {
    text-align: center;
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.cs-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #a47536;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
}
.cs-eyebrow::before,
.cs-eyebrow::after {
    content: '';
    display: inline-block;
    width: 26px;
    height: 1px;
    background: #a47536;
    vertical-align: middle;
    margin: 0 12px;
}
.cs-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: #1a1612;
    margin: 0 0 8px;
    line-height: 1.15;
}
.cs-sub {
    color: #5a4f44;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.cs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .cs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .cs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cs-section { padding: 40px 0 30px; margin-top: 20px; }
    .cs-title { font-size: 24px; }
    .cs-eyebrow::before,
    .cs-eyebrow::after { width: 16px; margin: 0 8px; }
}

/* ============================================
   WEB PUSH NOTIFICATIONS — Prompt Bar
   ============================================ */
.pwn-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 86;
    max-width: 380px;
    width: calc(100% - 48px);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateX(120%) translateY(20px);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.pwn-bar.is-on {
    transform: translateX(0) translateY(0);
    opacity: 1;
}
.pwn-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a47536 0%, #d4a73a 100%);
    border-radius: 14px 14px 0 0;
}
.pwn-icon {
    font-size: 24px;
    line-height: 1;
    position: absolute;
    top: 14px;
    left: 18px;
}
.pwn-body {
    padding-left: 38px;
    padding-top: 2px;
}
.pwn-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a1612;
    margin-bottom: 4px;
}
.pwn-text {
    font-size: 12.5px;
    color: #5a4f44;
    line-height: 1.5;
}
.pwn-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
.pwn-btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 0;
    font-family: inherit;
    transition: all 0.2s;
}
.pwn-btn-primary {
    background: linear-gradient(135deg, #a47536 0%, #c08e44 100%);
    color: #fff;
}
.pwn-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(164, 117, 54, 0.3); }
.pwn-btn-ghost {
    background: transparent;
    color: #948877;
    border: 1px solid rgba(0,0,0,0.12);
}
.pwn-btn-ghost:hover { color: #1a1612; background: rgba(0,0,0,0.04); }

@media (max-width: 600px) {
    .pwn-bar { right: 12px; left: 12px; bottom: 12px; width: auto; max-width: none; }
}

/* Header Push Button */
.header-push {
    position: relative;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}
.header-push svg {
    pointer-events: none; /* SVG'nin tıklamayı engellemesini önle */
}
.header-push::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d4a73a;
    border: 1.5px solid #fff;
    animation: pushPulse 2.4s infinite;
    box-shadow: 0 0 0 0 rgba(212, 167, 58, 0.6);
}
@keyframes pushPulse {
    0%   { box-shadow: 0 0 0 0 rgba(212, 167, 58, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(212, 167, 58, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 167, 58, 0); }
}
.header-push.is-active::after {
    background: #2c7a2c;
    animation: none;
    box-shadow: 0 0 0 1.5px #fff;
}
.header-push.is-denied::after {
    background: #948877;
    animation: none;
    opacity: 0.6;
}

/* ============================================
   PAYMENT CARDS - Kart ikonları
   ============================================ */
.pay-card-icons {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin-left: 8px;
}
.pay-card-icon {
    width: 32px;
    height: 22px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-weight: 800;
    font-size: 9px;
    letter-spacing: 0.2px;
}
.pay-card-icon-visa { color: #1a1f71; }
.pay-card-icon-mc   { background: linear-gradient(90deg, #eb001b 50%, #f79e1b 50%); color: transparent; position: relative; }
.pay-card-icon-mc::before { content: 'MC'; color: #fff; position: absolute; font-size: 8px; font-weight: 700; }
.pay-card-icon-amex { color: #006fcf; }
.pay-card-icon-troy { color: #00a651; font-size: 8px; }

/* Taksit önizleme */
.installments-preview {
    margin-top: 12px;
    padding: 12px;
    background: #faf3e3;
    border: 1px dashed #d4c19a;
    border-radius: 8px;
    font-size: 12px;
}
.installments-preview-h {
    font-weight: 600;
    color: #1a1612;
    margin-bottom: 8px;
    font-size: 13px;
}
.installments-table {
    width: 100%;
    border-collapse: collapse;
}
.installments-table td {
    padding: 5px 10px;
    border-bottom: 1px solid rgba(164, 117, 54, 0.15);
    font-size: 12px;
}
.installments-table td:first-child { color: #5a4f44; }
.installments-table td:last-child { text-align: right; font-family: var(--font-mono); font-weight: 600; color: #1a1612; }
.installments-table tr:last-child td { border-bottom: 0; }

/* Header Language Selector */
.header-lang-dropdown { position: relative; }
.header-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    border-radius: 6px;
    transition: background 0.15s;
}
.header-lang-btn:hover { background: rgba(0,0,0,0.05); }
.header-lang-flag { font-size: 16px; line-height: 1; }
.header-lang-code { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; color: #5a4f44; }
.header-lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    min-width: 160px;
    z-index: 50;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 4px;
}
.header-lang-dropdown.is-open .header-lang-menu { display: block; }
.header-lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    text-decoration: none;
    color: #1a1612;
    font-size: 13px;
    border-radius: 4px;
    transition: background 0.15s;
}
.header-lang-item:hover { background: #faf3e3; }
.header-lang-item.is-on { background: #faf3e3; color: #a47536; font-weight: 600; }

/* RTL support */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .header-lang-menu { right: auto; left: 0; }
