/* =================================================================
   goilden — natural gold
   Amfissa-faithful · pure white · Didone serif · color-block panels
   ================================================================= */

:root {
    /* Palette — beyaz hâkim */
    --white:      #ffffff;
    --paper:      #fcfbf8;   /* hero/temiz alanlar — neredeyse beyaz */
    --cream:      #f4ece0;   /* sıcak krem bant (featured) */
    --cream-2:    #efe6d6;

    --ink:        #20201c;   /* başlık/metin */
    --ink-soft:   #4a473f;
    --muted:      #8b8678;
    --line:       rgba(32,32,28,.10);

    --brown:      #38302b;   /* koyu kahve/bordo panel */
    --brown-2:    #2c2521;
    --green:      #889a64;   /* sage yeşil blok (Amfissa) */
    --green-deep: #5d6b3f;
    --olive:      #4a5a2b;
    --olive-deep: #2f3a1c;

    --gold:       #c0962f;   /* marka gold (vurgu) */
    --gold-2:     #d8ad4a;
    --gold-3:     #ecc766;
    --gold-deep:  #9a7320;

    /* Type */
    --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --f-sans:    'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --container: 1320px;
    --radius:    4px;
    --radius-lg: 8px;

    --ease:      cubic-bezier(.2, .7, .15, 1);
    --ease-soft: cubic-bezier(.4, .14, .3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--f-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--gold-3); color: var(--ink); }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 64px);
}

/* ---------- typography ---------- */
.display {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(40px, 6.6vw, 92px);
    line-height: 1.04;
    letter-spacing: -.01em;
    color: var(--ink);
}
.display em { font-style: italic; font-weight: 400; color: var(--ink); }
.display--md { font-size: clamp(32px, 4.4vw, 60px); }
.onDark { color: var(--white); }
.onDark em { color: var(--gold-3); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 22px;
}
.eyebrow-line { width: 30px; height: 1px; background: var(--gold); }
.eyebrow--accent { color: var(--gold-deep); }
.eyebrow--onDark { color: rgba(255,255,255,.62); }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .3s;
}
.btn-primary {
    background: var(--ink);
    color: var(--white);
}
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost { box-shadow: inset 0 0 0 1px var(--line); color: var(--ink); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.btn-link {
    background: transparent;
    padding: 12px 0;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12.5px;
    font-weight: 500;
}
.btn-link:hover { color: var(--gold-deep); }
.btn-lg { padding: 18px 38px; }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.play-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(192,150,47,.18);
    animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(192,150,47,.4); }
    50%     { box-shadow: 0 0 0 9px rgba(192,150,47,0); }
}
.icon-btn {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 50%;
    color: var(--ink);
    transition: background .3s;
}
.icon-btn:hover { background: rgba(32,32,28,.06); }

/* =================================================================
   TOPBAR (duyuru — opsiyonel)
   ================================================================= */
.topbar {
    background: var(--brown);
    color: var(--cream, #f4ece0);
    text-align: center;
    font-size: 12.5px;
    letter-spacing: .08em;
    padding: 9px 0;
}
.topbar .container { padding-block: 0; }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.86);
    backdrop-filter: saturate(1.2) blur(14px);
    -webkit-backdrop-filter: saturate(1.2) blur(14px);
    border-bottom: 1px solid transparent;
    transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
}
.site-header.is-scrolled {
    background: rgba(255,255,255,.97);
    border-bottom-color: var(--line);
}
.nav-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-block: 22px;
    transition: padding-block .4s var(--ease);
}
.site-header.is-scrolled .nav-wrap { padding-block: 14px; }
.brand img { height: 42px; width: auto; transition: height .4s var(--ease); }
.site-header.is-scrolled .brand img { height: 34px; }

.primary-nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-rule { flex: 1; height: 1px; background: var(--line); }
.primary-nav ul { display: flex; gap: 4px; }
.primary-nav a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 12.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color .3s;
}
.primary-nav a:hover { color: var(--gold-deep); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-tour {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    transition: color .3s;
}
.nav-tour:hover { color: var(--gold-deep); }
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    transition: color .3s;
}
.cart-link:hover { color: var(--gold-deep); }
.cart-link__count {
    position: absolute;
    top: -8px; right: -10px;
    min-width: 17px; height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: grid; place-items: center;
}
.hamburger {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s, width .35s; }
.hamburger span:nth-child(2) { width: 16px; align-self: center; margin-left: -3px; }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

@media (max-width: 1100px) {
    .primary-nav { display: none; }
    .hamburger { display: flex; }
    /* sepet + menü sağa dayalı (logo solda) */
    .nav-actions { margin-left: auto; }
}

/* =================================================================
   HERO
   ================================================================= */
.hero { padding-top: clamp(40px, 6vw, 80px); }
.hero-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: end;
    padding-bottom: clamp(36px, 4vw, 56px);
}
@media (max-width: 880px) { .hero-head { grid-template-columns: 1fr; align-items: start; gap: 24px; } }
.hero-title { margin-top: 4px; }
.hero-lead {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 40ch;
    margin-bottom: 28px;
}
.hero-lead strong { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-media {
    position: relative;
    width: 100%;
    height: clamp(300px, 40vw, 500px);
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
    will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.is-active img { animation: kenburns 7s ease-out forwards; }
@keyframes kenburns {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}
.hero-dots {
    position: absolute;
    right: clamp(20px, 5vw, 64px);
    bottom: clamp(20px, 4vw, 40px);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.hero-dots button {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
    transition: background .3s, transform .3s;
}
.hero-dots button.is-active { background: #fff; transform: scale(1.25); }
.hero-media__tag {
    position: absolute;
    left: clamp(20px, 5vw, 64px);
    bottom: clamp(20px, 4vw, 40px);
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(6px);
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 12.5px;
    letter-spacing: .04em;
    color: var(--ink);
}
.hero-media__num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 18px;
    color: var(--gold-deep);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 30px);
    padding-block: clamp(40px, 4vw, 60px);
}
.hero-stat { display: flex; flex-direction: column; gap: 6px; }
.hero-stat strong {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--ink);
    line-height: 1;
}
.hero-stat span {
    font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
@media (max-width: 620px) { .hero-stats { grid-template-columns: 1fr 1fr; gap: 22px 18px; } }

/* =================================================================
   FEATURED PRODUCTS — krem bant
   ================================================================= */
.featured {
    background: var(--cream);
    padding: clamp(70px, 8vw, 120px) 0;
}
.featured-grid {
    display: grid;
    grid-template-columns: 0.85fr 2.4fr;
    gap: clamp(30px, 4vw, 64px);
    align-items: center;
}
@media (max-width: 1000px) { .featured-grid { grid-template-columns: 1fr; } }
.featured-intro p {
    margin: 18px 0 26px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
    max-width: 34ch;
}
.featured-all {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    transition: gap .3s, color .3s;
}
.featured-all:hover { gap: 16px; color: var(--gold-deep); }

.featured-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 34px);
}
@media (max-width: 1000px) { .featured-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .featured-list { grid-template-columns: 1fr; max-width: 420px; } }

.pcard { text-align: left; display: flex; flex-direction: column; height: 100%; }
.pcard-media {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--white);
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
}
.pcard-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.pcard:hover .pcard-media img { transform: scale(1.05) translateY(-4px); }
.pcard-badge {
    position: absolute;
    top: 0; left: 0;
    background: var(--gold-deep);
    color: #fff;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 7px 12px;
}
.featured-list .pcard:nth-child(2) .pcard-badge { background: var(--green-deep); }
.featured-list .pcard:nth-child(3) .pcard-badge { background: var(--brown); }
.pcard-add {
    position: absolute;
    right: 14px; bottom: 14px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: grid; place-items: center;
    transform: translateY(8px);
    opacity: 0;
    transition: transform .4s var(--ease), opacity .4s var(--ease), background .3s;
}
.pcard:hover .pcard-add { transform: none; opacity: 1; }
.pcard-add:hover { background: var(--gold-deep); }
.pcard-name {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 25px;
    color: var(--ink);
    line-height: 1.1;
}
.pcard-stars { margin: 8px 0 4px; font-size: 13px; letter-spacing: 2px; }
.pcard-stars .on { color: var(--gold); }
.pcard-stars .off { color: rgba(32,32,28,.18); }
.pcard-sub {
    font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.pcard-price { margin-top: auto; padding-top: 12px; font-family: var(--f-display); font-size: 22px; }
.pcard-price del { color: var(--muted); margin-right: 8px; font-size: 17px; }
.pcard-price ins { text-decoration: none; color: var(--ink); }

/* =================================================================
   SPLIT (story) + EXPERTS — renk blok bölümler
   ================================================================= */
.split, .experts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
@media (max-width: 900px) { .split, .experts { grid-template-columns: 1fr; } }
/* Çapraz düzen: çiçek bölümünde panel solda, görsel sağda */
@media (min-width: 901px) {
    .experts .experts-panel { order: 1; }
    .experts .experts-media  { order: 2; }
}

.split-media, .experts-media { position: relative; overflow: hidden; min-height: 420px; }
.experts-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
/* Hikâye ağacı: cutout — içeri sığsın, kenarlara yapışmasın */
.split-media { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.split-media img {
    position: absolute; inset: clamp(28px, 4vw, 56px);
    width: auto; height: auto;
    max-width: calc(100% - clamp(56px, 8vw, 112px));
    max-height: calc(100% - clamp(56px, 8vw, 112px));
    margin: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(47,58,28,.22));
}
@media (max-width: 900px) {
    .split-media, .experts-media { min-height: 320px; }
}

.split-panel, .experts-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 6vw, 92px) clamp(32px, 5vw, 80px);
}
.split-panel--dark { background: var(--brown); color: rgba(255,255,255,.82); }
.experts-panel { background: linear-gradient(165deg, var(--green) 0%, var(--green-deep) 100%); color: rgba(255,255,255,.9); }
.split-panel p, .experts-panel p { margin-top: 22px; line-height: 1.8; color: rgba(255,255,255,.78); max-width: 46ch; }
.split-sign { margin-top: 34px; display: flex; flex-direction: column; gap: 4px; }
.split-sign strong {
    font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: 22px; color: var(--gold-3);
}
.split-sign span { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* experts medals */
.experts-tag {
    margin-top: 18px;
    font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
.medals { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 38px; }
.medal { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.medal-ring {
    width: 84px; height: 84px;
    border-radius: 50%;
    display: grid; place-items: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(236,199,102,.25), transparent 60%);
    box-shadow: inset 0 0 0 1px rgba(236,199,102,.5), inset 0 0 0 5px rgba(236,199,102,.14);
}
.medal-tier {
    font-family: var(--f-display); font-style: italic; font-size: 15px; color: var(--gold-3);
}
.medal-title { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.medal-year { font-size: 11px; color: rgba(255,255,255,.5); }

/* =================================================================
   CRAFT — beyaz, kural listesi + sage yeşil daire
   ================================================================= */
.craft { padding: clamp(80px, 9vw, 150px) 0; }
.craft-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 5vw, 90px);
    align-items: center;
}
@media (max-width: 900px) { .craft-grid { grid-template-columns: 1fr; } }
.craft-copy h2 { margin-bottom: 12px; }

.rules { margin-top: 30px; display: grid; gap: 2px; }
.rules li {
    display: grid; grid-template-columns: 54px 1fr;
    gap: 18px; align-items: baseline;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}
.rules li:last-child { border-bottom: 1px solid var(--line); }
.rules-n { font-family: var(--f-display); font-style: italic; font-size: 26px; color: var(--gold-deep); }
.rules li > div { display: flex; flex-direction: column; gap: 4px; }
.rules strong { font-family: var(--f-display); font-weight: 400; font-size: 21px; color: var(--ink); }
.rules span { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }

.craft-green {
    position: relative;
    background: var(--green) url("../assets/zetinlik.jpg") center/cover no-repeat;
    border-radius: 6px;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    text-align: center;
    overflow: hidden;
}
/* zeytinlik fotoğrafı üzerine okunabilirlik için yeşil degrade */
.craft-green::after {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(to bottom, rgba(46,56,28,.12) 0%, rgba(42,52,24,.38) 45%, rgba(30,38,16,.86) 100%);
}
.craft-green > * { position: relative; z-index: 1; }
.craft-green__fact {
    font-family: var(--f-display); font-weight: 400;
    font-size: clamp(44px, 5vw, 64px); color: #fff; line-height: 1;
    text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.craft-green__label {
    font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.9);
    margin-top: 8px; text-shadow: 0 1px 10px rgba(0,0,0,.4);
}

/* =================================================================
   PRODUCTION — full-bleed foto + metin
   ================================================================= */
.production { padding-bottom: clamp(80px, 9vw, 140px); }
.production-media {
    width: 100%;
    height: clamp(300px, 40vw, 540px);
    overflow: hidden;
    margin-bottom: clamp(40px, 5vw, 70px);
}
.production-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 80%; }
.production-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: start;
}
.production-body .eyebrow, .production-body h2 { grid-column: 1; }
.production-body > p {
    grid-column: 1;
    color: var(--ink-soft); line-height: 1.75; max-width: 46ch;
}
.psteps {
    grid-column: 2; grid-row: 1 / span 3;
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px;
    align-self: center;
}
@media (max-width: 900px) {
    .production-body { grid-template-columns: 1fr; }
    .production-body .eyebrow, .production-body h2, .production-body > p, .psteps { grid-column: 1; }
    .psteps { grid-row: auto; margin-top: 10px; }
}
.psteps li { display: flex; flex-direction: column; gap: 8px; }
.psteps li > span {
    font-family: var(--f-display); font-style: italic; font-size: 30px; color: var(--gold-deep);
}
.psteps strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 2px; font-weight: 600; }
.psteps div { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

/* =================================================================
   TASTING
   ================================================================= */
.tasting { background: var(--paper); padding: clamp(70px, 8vw, 130px) 0; }
.tasting-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center;
}
@media (max-width: 900px) { .tasting-grid { grid-template-columns: 1fr; } }
.tasting-copy p { margin-top: 20px; line-height: 1.75; color: var(--ink-soft); max-width: 46ch; }

.tasting-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 30px clamp(22px, 2.5vw, 36px);
    box-shadow: 0 40px 70px -45px rgba(74,90,43,.3);
    display: flex; flex-direction: column; gap: 22px;
}
.tasting-card__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.tasting-card__pill { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); background: rgba(192,150,47,.12); padding: 6px 12px; border-radius: 999px; }
.tasting-bars { display: grid; gap: 14px; }
.tasting-bars li { display: grid; grid-template-columns: 104px 1fr 36px; align-items: center; gap: 16px; font-size: 13.5px; }
.tasting-bars span { color: var(--ink-soft); }
.tasting-bars i { height: 7px; border-radius: 999px; background: rgba(74,90,43,.12); position: relative; overflow: hidden; }
.tasting-bars i::after {
    content: ''; position: absolute; inset: 0; width: var(--v, 50%);
    background: linear-gradient(90deg, var(--green), var(--gold) 85%, var(--gold-deep));
    border-radius: 999px; transform-origin: left; transform: scaleX(0);
    animation: bar-fill 1.4s var(--ease) forwards .25s;
}
@keyframes bar-fill { to { transform: scaleX(1); } }
.tasting-bars b { font-family: var(--f-display); font-style: italic; font-size: 18px; color: var(--gold-deep); text-align: right; }
.tasting-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px dashed var(--line); }
.tasting-card__foot small { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.tasting-card__foot p { margin-top: 4px; font-size: 14px; line-height: 1.55; color: var(--ink); max-width: 38ch; }
.tasting-card__foot p em { font-family: var(--f-display); font-style: italic; color: var(--gold-deep); }
.tasting-card__chip { display: flex; flex-direction: column; align-items: center; background: var(--brown); color: #fff; padding: 14px 18px; border-radius: 8px; min-width: 88px; }
.tasting-card__chip strong { font-family: var(--f-display); font-size: 22px; color: var(--gold-3); }
.tasting-card__chip span { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); }
@media (max-width: 520px) { .tasting-bars li { grid-template-columns: 84px 1fr 28px; gap: 10px; } .tasting-card__foot { flex-direction: column; align-items: flex-start; } }

/* =================================================================
   REVIEWS / testimonials — beyaz, ortalı
   ================================================================= */
.reviews { padding: clamp(80px, 9vw, 140px) 0; text-align: center; }
.reviews-head { max-width: 600px; margin: 0 auto clamp(40px, 5vw, 70px); }
.reviews-head p { margin-top: 14px; color: var(--muted); font-size: 15px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.review { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.review-stars { font-size: 14px; letter-spacing: 3px; }
.review-stars .on { color: var(--gold); }
.review-stars .off { color: rgba(32,32,28,.18); }
.review h3 { font-family: var(--f-display); font-weight: 400; font-size: 22px; color: var(--ink); }
.review blockquote { font-size: 15px; line-height: 1.7; color: var(--ink-soft); max-width: 34ch; }
.review figcaption { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.review figcaption strong { color: var(--ink); font-weight: 600; }

/* =================================================================
   CTA
   ================================================================= */
.cta {
    background: var(--cream);
    padding: clamp(90px, 11vw, 170px) 0;
    text-align: center;
}
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.cta-inner small { color: var(--muted); font-size: 13px; max-width: 48ch; }

/* =================================================================
   SHOP / KATEGORİ SAYFASI
   ================================================================= */
.shop-page { padding-top: clamp(28px, 4vw, 48px); padding-bottom: clamp(70px, 8vw, 120px); }
.breadcrumb {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    font-size: 12.5px; letter-spacing: .08em; color: var(--muted);
    margin-bottom: clamp(24px, 4vw, 44px);
}
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb strong { color: var(--ink); font-weight: 600; }

.shop-head { margin-bottom: clamp(28px, 4vw, 48px); }
.shop-intro { margin-top: 14px; color: var(--ink-soft); max-width: 56ch; line-height: 1.7; }

.shop-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: clamp(30px, 4vw, 64px);
    align-items: start;
}
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

/* sidebar */
.shop-sidebar { display: flex; flex-direction: column; gap: 38px; position: sticky; top: 100px; }
@media (max-width: 900px) { .shop-sidebar { position: static; } }
.filter-block h3 {
    font-family: var(--f-display); font-weight: 400; font-size: 22px; color: var(--ink);
    margin-bottom: 18px;
}
.filter-cats { display: grid; gap: 2px; }
.filter-cats a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 0; font-size: 14.5px; color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
    transition: color .25s, padding-left .25s;
}
.filter-cats a span { color: var(--muted); font-size: 12.5px; }
.filter-cats a::before {
    content: '•'; color: var(--gold); margin-right: 10px;
    opacity: 0; transition: opacity .25s; margin-left: -16px;
}
.filter-cats a:hover { color: var(--gold-deep); padding-left: 16px; }
.filter-cats a:hover::before { opacity: 1; }
.filter-cats .is-active a { color: var(--gold-deep); padding-left: 16px; }
.filter-cats .is-active a::before { opacity: 1; }

.filter-price .price-inputs { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.filter-price label {
    display: inline-flex; align-items: center; gap: 4px;
    border: 1px solid var(--line); border-radius: 4px; padding: 8px 10px; font-size: 13px; color: var(--muted);
    flex: 1;
}
.filter-price input { width: 100%; border: 0; outline: 0; font: inherit; font-size: 14px; color: var(--ink); background: transparent; }
.filter-price input::-webkit-outer-spin-button, .filter-price input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.price-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price-foot span { font-size: 12.5px; color: var(--muted); }
.btn-filter {
    background: var(--ink); color: #fff; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    padding: 10px 18px; border-radius: 4px; transition: background .3s;
}
.btn-filter:hover { background: var(--gold-deep); }

.popular-list { display: grid; gap: 16px; }
.popular-list a { display: flex; gap: 14px; align-items: center; }
.popular-thumb {
    width: 60px; height: 60px; border-radius: 4px; overflow: hidden; flex: none;
    background: linear-gradient(180deg,#fdfbf6,#f3eee2); display: grid; place-items: center;
}
.popular-thumb img { width: 70%; height: 70%; object-fit: contain; }
.popular-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.popular-info strong { font-family: var(--f-display); font-weight: 400; font-size: 15.5px; color: var(--ink); }
.popular-stars { font-size: 11px; letter-spacing: 1px; }
.popular-stars .on { color: var(--gold); } .popular-stars .off { color: rgba(32,32,28,.18); }
.popular-price { font-size: 13px; color: var(--gold-deep); }
.popular-list a:hover strong { color: var(--gold-deep); }

/* results */
.shop-toolbar {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding-bottom: 20px; margin-bottom: 30px; border-bottom: 1px solid var(--line);
}
.shop-count { font-size: 13.5px; color: var(--muted); letter-spacing: .04em; }
.shop-sort select {
    font: inherit; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
    border: 1px solid var(--line); border-radius: 4px; padding: 11px 38px 11px 18px; color: var(--ink);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2320201c' stroke-width='1.6'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 16px center;
    -webkit-appearance: none; appearance: none; cursor: pointer;
}
.shop-sort select:hover { border-color: var(--ink); }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 38px); }
@media (max-width: 1100px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .shop-grid { grid-template-columns: 1fr; max-width: 420px; } }

.scard { text-align: left; display: flex; flex-direction: column; height: 100%; }
.scard-media {
    position: relative; display: block; aspect-ratio: 3/4;
    background: var(--white); overflow: hidden; margin-bottom: 18px;
}
.scard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.scard:hover .scard-media img { transform: scale(1.05) translateY(-4px); }
.scard-badge { position: absolute; top: 0; left: 0; background: var(--gold-deep); color: #fff; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 7px 12px; }
.shop-grid .scard:nth-child(3n+2) .scard-badge { background: var(--green-deep); }
.shop-grid .scard:nth-child(3n+3) .scard-badge { background: var(--brown); }
.scard-name { font-family: var(--f-display); font-weight: 400; font-size: 23px; line-height: 1.15; }
.scard-name a:hover { color: var(--gold-deep); }
.scard-stars { margin: 8px 0 4px; font-size: 12.5px; letter-spacing: 1.5px; }
.scard-stars .on { color: var(--gold); } .scard-stars .off { color: rgba(32,32,28,.18); }
.scard-meta { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.scard-price { margin-top: auto; padding-top: 12px; font-family: var(--f-display); font-size: 22px; color: var(--ink); display: flex; align-items: baseline; gap: 8px; }
.scard-from { font-family: var(--f-sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.scard-btn {
    align-self: flex-start;
    margin-top: 14px;
    font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--ink);
    border-bottom: 1px solid var(--gold); padding-bottom: 4px; transition: color .3s, letter-spacing .3s;
}
.scard-btn:hover { color: var(--gold-deep); letter-spacing: .18em; }

.shop-empty { text-align: center; padding: clamp(50px, 8vw, 100px) 20px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.shop-empty p { font-family: var(--f-display); font-size: 26px; color: var(--ink); }
.shop-empty span { color: var(--muted); max-width: 40ch; }
.shop-empty .btn { margin-top: 12px; }

/* =================================================================
   ÜRÜN DETAY
   ================================================================= */
.product-page { padding-top: clamp(28px, 4vw, 48px); padding-bottom: clamp(70px, 8vw, 120px); }
.pdetail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 80px);
    align-items: start;
}
@media (max-width: 880px) { .pdetail { grid-template-columns: 1fr; gap: 36px; } }

.pdetail-media {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
    display: grid; place-items: center; overflow: hidden;
    position: sticky; top: 100px;
}
@media (max-width: 880px) { .pdetail-media { position: static; } }
.pdetail-media img { width: 64%; height: auto; max-height: 80%; object-fit: contain; filter: drop-shadow(0 30px 40px rgba(58,40,8,.28)); transition: opacity .28s ease; }
.pdetail-badge { position: absolute; top: 0; left: 0; background: var(--gold-deep); color: #fff; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 8px 14px; }

.pdetail-info { padding-top: 6px; }
.pdetail-info h1 { margin-bottom: 14px; }
.pdetail-rate { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.pdetail-rate .scard-stars { font-size: 14px; letter-spacing: 2px; }
.pdetail-meta { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.pdetail-summary { font-size: 16px; line-height: 1.75; color: var(--ink-soft); max-width: 50ch; }
.pdetail-notes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pdetail-notes li { font-size: 12px; padding: 6px 12px; border-radius: 999px; background: rgba(74,90,43,.08); color: var(--green-deep); letter-spacing: .04em; }

.picker { margin-top: 26px; }
.picker-label { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.picker-options { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
    border: 1px solid var(--line); border-radius: 4px;
    padding: 11px 18px; font-size: 13.5px; color: var(--ink-soft);
    transition: border-color .25s, color .25s, background .25s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }

.pdetail-price { margin-top: 30px; display: flex; align-items: baseline; gap: 14px; }
.pdetail-price__big { font-family: var(--f-display); font-size: clamp(32px, 4vw, 44px); color: var(--ink); line-height: 1; }
.pdetail-price__hint { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.pdetail-buy { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.qty-stepper button { width: 38px; height: 38px; border-radius: 50%; font-size: 18px; color: var(--ink); display: grid; place-items: center; transition: background .25s, color .25s; }
.qty-stepper button:hover { background: var(--ink); color: #fff; }
.qty-stepper input { width: 42px; text-align: center; border: 0; outline: 0; font: inherit; font-size: 15px; background: transparent; }
.pdetail-buy .btn-lg { flex: 1; min-width: 200px; justify-content: center; }

.pdetail-facts { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); display: grid; gap: 14px; }
.pdetail-facts li { font-size: 14px; color: var(--ink-soft); display: flex; gap: 14px; }
.pdetail-facts strong { min-width: 90px; color: var(--ink); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; padding-top: 2px; }

/* =================================================================
   SEPET & ÖDEME SAYFALARI
   ================================================================= */
.cartpage, .checkout { padding-top: clamp(28px,4vw,48px); padding-bottom: clamp(70px,8vw,120px); }
.cartpage-grid { display: grid; grid-template-columns: 1fr 360px; gap: clamp(30px,4vw,56px); align-items: start; }
@media (max-width: 900px){ .cartpage-grid { grid-template-columns: 1fr; } }

.crow { display: grid; grid-template-columns: 84px 1fr auto auto auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.crow-thumb { width: 84px; height: 84px; background: linear-gradient(180deg,#fdfbf6,#f3eee2); display: grid; place-items: center; border-radius: 4px; overflow: hidden; }
.crow-thumb img { width: 72%; height: 80%; object-fit: contain; }
.crow-info h3 { font-family: var(--fd); font-weight: 400; font-size: 19px; }
.crow-info h3 a:hover { color: var(--gold-deep); }
.crow-info p { font-size: 12.5px; letter-spacing: .04em; color: var(--muted); margin-top: 2px; }
.crow-unit { font-size: 12.5px; color: var(--gold-deep); }
.crow-qty { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.crow-qty button { width: 32px; height: 32px; border-radius: 50%; font-size: 16px; display: grid; place-items: center; transition: background .2s,color .2s; }
.crow-qty button:hover { background: var(--ink); color: #fff; }
.crow-qty span { min-width: 24px; text-align: center; font-size: 14px; }
.crow-total { font-family: var(--fd); font-size: 19px; min-width: 90px; text-align: right; }
.crow-del button { width: 30px; height: 30px; border-radius: 50%; color: var(--muted); transition: background .2s,color .2s; }
.crow-del button:hover { background: #f3e7e3; color: #9c3a2a; }
@media (max-width: 620px){
    .crow { grid-template-columns: 64px 1fr auto; grid-template-areas: "t i d" "t q tot"; gap: 8px 14px; }
    .crow-thumb { grid-area: t; width: 64px; height: 64px; }
    .crow-info { grid-area: i; } .crow-qty { grid-area: q; } .crow-total { grid-area: tot; text-align: left; min-width: 0; } .crow-del { grid-area: d; justify-self: end; }
}
.cartpage-continue { display: inline-block; margin-top: 24px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.cartpage-continue:hover { color: var(--gold-deep); }

.cartpage-summary, .checkout-summary { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 26px; position: sticky; top: 100px; }
.cartpage-summary h2, .checkout-summary h2 { font-family: var(--fd); font-weight: 500; font-size: 20px; margin-bottom: 18px; }
.coupon-form { display: flex; gap: 8px; margin-bottom: 10px; }
.coupon-form input { flex: 1; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; background: #fff; outline: 0; font: inherit; font-size: 14px; }
.coupon-form input:focus { border-color: var(--olive); }
.coupon-form button { padding: 0 18px; background: var(--ink); color: #fff; border-radius: 6px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.coupon-form button:hover { background: var(--gold-deep); }
.coupon-msg { font-size: 12.5px; margin-bottom: 10px; }
.coupon-msg.is-ok { color: #3f6b3a; } .coupon-msg.is-err { color: #9c3a2a; }
.coupon-applied { display: flex; align-items: center; justify-content: space-between; background: #eef4ea; border: 1px solid #cfe0c6; border-radius: 6px; padding: 8px 12px; font-size: 13px; color: #3f6b3a; margin-bottom: 14px; }
.coupon-applied button { font-size: 11.5px; color: var(--muted); text-decoration: underline; }
.summary-lines { display: grid; gap: 10px; padding: 16px 0; border-top: 1px solid var(--line); font-size: 14px; }
.summary-lines li { display: flex; justify-content: space-between; color: var(--ink-soft); }
.summary-lines .is-discount { color: #3f6b3a; }
.ship-hint { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.ship-hint strong { color: var(--gold-deep); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-top: 1px solid var(--line); margin-bottom: 18px; }
.summary-total strong { font-family: var(--fd); font-size: 26px; }
.summary-note { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }

/* checkout */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: clamp(30px,4vw,56px); align-items: start; }
@media (max-width: 900px){ .checkout-grid { grid-template-columns: 1fr; } }
.checkout-form h2 { font-family: var(--fd); font-weight: 500; font-size: 22px; margin-bottom: 20px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 520px){ .cf-grid { grid-template-columns: 1fr; } }
.checkout-form .field { display: flex; flex-direction: column; gap: 7px; }
.checkout-form label { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--soft); }
.checkout-form input, .checkout-form textarea, .checkout-form select { padding: 13px 14px; border: 1px solid var(--line); border-radius: 6px; background: #fff; outline: 0; font: inherit; font-size: 15px; -webkit-appearance: none; appearance: none; }
.checkout-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23889a64' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.checkout-form input:focus, .checkout-form textarea:focus, .checkout-form select:focus { border-color: var(--olive); }
.cf-err { color: #9c3a2a; font-size: 12px; }
.checkout-pay-note { margin-top: 22px; padding: 16px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
/* içerik sayfaları (KVKK, Gizlilik vb.) */
.container--narrow { max-width: 820px; }
.page { padding-top: clamp(24px,4vw,44px); padding-bottom: clamp(60px,8vw,110px); }
.page-head { margin-bottom: clamp(24px,3vw,40px); }
.page-meta { display: block; margin-top: 10px; font-size: 13px; color: var(--muted); }
.page-body { font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); }
.page-body h2, .page-body h3 { font-family: var(--f-display); font-weight: 500; color: var(--ink); margin: 30px 0 10px; }
.page-body h3 { font-size: 20px; }
.page-body h2 { font-size: 24px; }
.page-body p { margin-bottom: 14px; }
.page-body ul, .page-body ol { margin: 0 0 16px 20px; display: grid; gap: 7px; }
.page-body li { padding-left: 4px; }
.page-body a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.page-body strong { color: var(--ink); }

/* ── hesap ikonu (header) ── */
.nav-account { position: relative; display: inline-flex; align-items: center; color: var(--ink); transition: color .3s; }
.nav-account:hover { color: var(--gold-deep); }
.nav-account__pts { position: absolute; top: -8px; right: -11px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px; background: var(--olive); color: #fff; font-size: 10px; font-weight: 600; display: grid; place-items: center; }

/* ── giriş / kayıt ── */
.auth { padding-top: clamp(36px,5vw,64px); padding-bottom: clamp(60px,8vw,110px); }
.auth-card { max-width: 460px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: clamp(28px,4vw,44px); box-shadow: 0 30px 60px -44px rgba(74,90,43,.3); text-align: center; }
.auth-card .display { margin: 6px 0 8px; }
.auth-lead { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; }
.auth-form { display: grid; gap: 14px; text-align: left; }
.auth-form .field { display: grid; gap: 6px; }
.auth-form label { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--soft); }
.auth-form input { padding: 13px 14px; border: 1px solid var(--line); border-radius: 6px; background: #fff; outline: 0; font: inherit; font-size: 15px; }
.auth-form input:focus { border-color: var(--olive); }
.auth-form .btn { margin-top: 6px; }
.auth-err { background: #f7e3dd; border: 1px solid #e8c6bc; color: #8b3a1f; padding: 11px 14px; border-radius: 8px; font-size: 14px; margin-bottom: 18px; }
.auth-alt { margin-top: 20px; font-size: 14px; color: var(--muted); }
.auth-alt a { color: var(--gold-deep); }

/* ── hesabım ── */
.account { padding-top: clamp(28px,4vw,48px); padding-bottom: clamp(60px,8vw,110px); }
.account-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.account-sub { color: var(--muted); font-size: 14px; margin-top: 8px; }
.points-card { background: linear-gradient(135deg,#3a4a1f,#2a2420); color: #fff; border-radius: 14px; padding: clamp(24px,3vw,34px); margin-bottom: 36px; position: relative; overflow: hidden; }
.points-card__label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.points-card__value { display: block; font-family: var(--f-display); font-size: clamp(40px,6vw,58px); line-height: 1; margin-top: 6px; color: #e7c877; }
.points-card__value small { font-family: var(--f-sans); font-size: 16px; color: rgba(255,255,255,.7); margin-left: 8px; letter-spacing: .04em; }
.points-card__note { margin-top: 16px; font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.72); max-width: 60ch; }
.account-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px,3vw,40px); align-items: start; }
@media (max-width: 820px){ .account-grid { grid-template-columns: 1fr; } }
.account-block h2 { font-family: var(--f-display); font-weight: 500; font-size: 21px; margin-bottom: 16px; }
.account-empty { color: var(--muted); font-size: 14px; }
.account-empty a { color: var(--gold-deep); }
.acc-order { border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; margin-bottom: 12px; }
.acc-order__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.acc-order__top strong { font-family: var(--f-display); font-weight: 400; font-size: 16px; }
.acc-order__meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.acc-pts { color: #4a7a3f; font-weight: 600; } .acc-pts--minus { color: #9a7320; }
.acc-order__track { display: inline-block; margin-top: 10px; font-size: 13px; color: var(--gold-deep); }
.acc-tx { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.acc-tx strong { display: block; font-size: 14px; } .acc-tx span { font-size: 12.5px; color: var(--muted); }
.acc-tx__amt { font-family: var(--f-display); font-size: 18px; } .acc-tx__amt.is-plus { color: #4a7a3f; } .acc-tx__amt.is-minus { color: #9a7320; }

/* davet kodları */
.refer-block { margin-bottom: 36px; }
.refer-block h2 { font-family: var(--f-display); font-weight: 500; font-size: 21px; margin-bottom: 6px; }
.refer-intro { font-size: 14px; color: var(--muted); margin-bottom: 18px; max-width: 64ch; }
.refer-card { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; background: var(--paper); border: 1px dashed rgba(199,154,51,.5); border-radius: 12px; padding: 18px 22px; margin-bottom: 12px; }
.refer-card__code { display: flex; flex-direction: column; gap: 2px; }
.refer-card__label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.refer-card__code strong { font-family: var(--f-display); font-size: 26px; letter-spacing: .08em; color: var(--gold-deep); }
.refer-card__meta { display: flex; flex-direction: column; gap: 3px; font-size: 13px; color: var(--ink-soft); flex: 1; min-width: 180px; }
.refer-card .btn { flex: none; }
@media (max-width: 560px){ .refer-card { flex-direction: column; align-items: flex-start; } .refer-card .btn { width: 100%; } }

/* ── hesap kabuğu (sidebar + bölümler) ── */
.account-shell { display: grid; grid-template-columns: 232px 1fr; gap: clamp(24px,3vw,40px); align-items: start; }
@media (max-width: 820px){ .account-shell { grid-template-columns: 1fr; } }
.account-nav { display: flex; flex-direction: column; gap: 2px; position: sticky; top: 100px; }
@media (max-width: 820px){ .account-nav { position: static; flex-direction: row; overflow-x: auto; gap: 6px; padding-bottom: 6px; } }
.account-nav a { display: flex; align-items: center; gap: 11px; padding: 11px 14px; border-radius: 8px; font-size: 14px; color: var(--ink-soft); white-space: nowrap; transition: background .25s,color .25s; }
.account-nav a:hover { background: var(--paper); color: var(--ink); }
.account-nav a.is-active { background: var(--olive); color: #fff; }
.account-nav a.is-active svg { stroke: #fff; }
.account-title { font-family: var(--f-display); font-weight: 500; font-size: 24px; margin-bottom: 18px; }
.account-intro { font-size: 14px; color: var(--muted); margin-bottom: 20px; max-width: 64ch; }
.account-block__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; }
.account-more { font-size: 13px; color: var(--gold-deep); }
.account-grid--wide { grid-template-columns: 1.3fr 1fr; }
@media (max-width: 720px){ .account-grid--wide { grid-template-columns: 1fr; } }
.acc-flash { background: #eef6e9; border: 1px solid #cfe4c0; color: #3f6b32; padding: 11px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; }
.acc-flash.is-err { background: #f7e3dd; border-color: #e8c6bc; color: #8b3a1f; }
.acc-order--lg { padding: 18px 20px; }
.acc-order__actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }

/* hesap formları */
.account-form { display: grid; gap: 14px; }
.account-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: clamp(20px,3vw,28px); }
.account-form__h { font-family: var(--f-display); font-weight: 500; font-size: 18px; margin-bottom: 4px; }
.account-form label { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--soft); display: block; margin-bottom: 6px; }
.account-form input, .account-form textarea, .account-form select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; background: #fff; outline: 0; font: inherit; font-size: 15px; -webkit-appearance: none; appearance: none; }
.account-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23889a64' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.account-form input:focus, .account-form textarea:focus, .account-form select:focus { border-color: var(--olive); }
.account-form__foot { display: flex; gap: 10px; align-items: center; margin-top: 4px; }
.account-danger { margin-top: 24px; }
.account-danger a { color: var(--gold-deep); }

/* adresler */
.addr-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 14px; }
.addr-card { position: relative; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.addr-card.is-default { border-color: rgba(74,90,43,.4); background: #f7f9f2; }
.addr-card__badge { position: absolute; top: 14px; right: 14px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; background: var(--olive); color: #fff; padding: 3px 9px; border-radius: 99px; }
.addr-card strong { font-family: var(--f-display); font-weight: 500; font-size: 16px; }
.addr-card p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); margin: 8px 0 14px; }
.addr-card__actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* destek */
.ticket-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; transition: border-color .2s; }
.ticket-row:hover { border-color: var(--olive); }
.ticket-row strong { display: block; font-size: 14.5px; } .ticket-row span { font-size: 12.5px; color: var(--muted); }
.ticket-thread { display: grid; gap: 12px; margin-top: 10px; }
.tmsg { padding: 14px 16px; border-radius: 12px; font-size: 14px; line-height: 1.6; max-width: 88%; }
.tmsg__who { display: block; font-size: 11.5px; color: var(--muted); margin-bottom: 6px; }
.tmsg--me { background: var(--paper); justify-self: end; border: 1px solid var(--line); }
.tmsg--admin { background: #f4f6ee; border: 1px solid rgba(74,90,43,.2); justify-self: start; }

/* iade */
.refund-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; }
.refund-row strong { display: block; font-size: 14px; } .refund-row span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.refund-note { color: var(--ink-soft) !important; margin-top: 6px !important; font-style: italic; }

.co-items { display: grid; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.co-items li { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; }
.co-thumb { width: 44px; height: 44px; border-radius: 4px; background: linear-gradient(180deg,#fdfbf6,#efe9db); display: grid; place-items: center; overflow: hidden; }
.co-thumb img { width: 74%; height: 74%; object-fit: contain; }
.co-name { font-size: 14px; } .co-name small { display: block; color: var(--muted); font-size: 12px; }
/* GoildenPuan kutusu (ödeme özeti) */
.co-points { background: #f4f6ee; border: 1px solid rgba(74,90,43,.2); border-radius: 10px; padding: 14px 16px; margin: 4px 0 14px; }
.co-points__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.co-points__head span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--olive); }
.co-points__head strong { font-family: var(--f-display); font-size: 17px; color: var(--ink); }
.co-points__row { display: flex; gap: 8px; }
.co-points__row input { flex: 1; padding: 9px 12px; border: 1px solid var(--line); border-radius: 6px; font: inherit; font-size: 14px; outline: 0; }
.co-points__row input:focus { border-color: var(--olive); }
.co-points__links { display: flex; gap: 14px; margin-top: 10px; font-size: 12.5px; }
.co-points__links a { color: var(--gold-deep); }
.co-points--guest { text-align: center; font-size: 13px; color: var(--muted); }
.co-points--guest a { color: var(--gold-deep); font-weight: 500; }
.co-reward { background: #eef6e9; border: 1px solid #cfe4c0; color: #3f6b32; border-radius: 8px; padding: 10px 12px; font-size: 13px; margin: 12px 0; text-align: center; }
.co-price { font-family: var(--fd); font-size: 15px; }
.checkout-back { display: block; text-align: center; margin-top: 14px; font-size: 13px; color: var(--ink-soft); }
.checkout-back:hover { color: var(--gold-deep); }

/* sipariş takip */
.track { padding-top: clamp(28px,4vw,48px); padding-bottom: clamp(70px,8vw,120px); }
.track-head { margin-bottom: clamp(28px,4vw,44px); }
.track-cancel { background: #f7e3dd; border: 1px solid #e8c6bc; color: #8b3a1f; padding: 16px 20px; border-radius: 10px; margin-bottom: 30px; }
.track-cargo { display: flex; align-items: center; gap: 16px; background: #eef2f6; border: 1px solid #d7e0ea; border-radius: 12px; padding: 18px 22px; margin-bottom: 28px; }
.track-cargo__ic { width: 46px; height: 46px; flex: none; border-radius: 50%; display: grid; place-items: center; background: #3a5670; color: #fff; }
.track-cargo__body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.track-cargo__label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #5a6b7d; }
.track-cargo__body strong { font-family: var(--f-display); font-weight: 500; font-size: 19px; color: #243240; }
.track-cargo__no { font-size: 13px; color: #44483a; }
.track-cargo .btn { flex: none; }
@media (max-width: 620px){ .track-cargo { flex-wrap: wrap; } .track-cargo .btn { width: 100%; } }
.track-timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: clamp(36px,5vw,56px); position: relative; }
@media (max-width: 620px){ .track-timeline { grid-template-columns: 1fr; } }
.track-timeline li { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); position: relative; }
.track-timeline li.is-done { border-color: rgba(74,90,43,.35); background: #f4f6ee; }
.track-timeline li.is-current { box-shadow: 0 14px 30px -16px rgba(74,90,43,.4); border-color: var(--olive); }
.track-dot { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: #eceadb; color: var(--muted); font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.track-timeline li.is-done .track-dot { background: var(--olive); color: #fff; }
.track-step__t { font-family: var(--f-display); font-size: 19px; }
.track-step__d { font-size: 13px; color: var(--muted); }
.track-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(30px,4vw,56px); align-items: start; }
@media (max-width: 860px){ .track-grid { grid-template-columns: 1fr; } }
.track-items h2, .track-info h2 { font-family: var(--f-display); font-weight: 500; font-size: 21px; margin-bottom: 18px; }
.track-row { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.track-row strong { font-family: var(--f-display); font-weight: 400; font-size: 17px; display: block; }
.track-row span { font-size: 12.5px; color: var(--muted); }
.track-row__p { font-family: var(--f-display); font-size: 16px; white-space: nowrap; }
.track-info { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 24px; position: sticky; top: 100px; }
.track-cust { font-size: 14px; line-height: 1.7; color: var(--ink-soft); }
.track-cust strong { color: var(--ink); }
.track-meta { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

/* iyzico ödeme formu */
.iyzico-wrap { max-width: 720px; margin: 10px auto 0; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: clamp(18px,3vw,32px); box-shadow: 0 30px 60px -40px rgba(74,90,43,.3); }

/* onay */
.checkout-ok { max-width: 560px; margin: 0 auto; text-align: center; padding: clamp(40px,6vw,80px) 0; }
.checkout-ok__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 34px; margin: 0 auto 24px; }
.checkout-ok p { color: var(--ink-soft); margin-top: 10px; }
.checkout-ok strong { color: var(--ink); }
.checkout-ok__note { font-size: 14px; line-height: 1.7; margin-top: 16px !important; }
.checkout-ok__actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
    background: var(--brown);
    color: rgba(255,255,255,.78);
    padding: clamp(44px, 5vw, 66px) 0 calc(env(safe-area-inset-bottom, 0px) + 22px);
    position: relative;
}
.footer-pattern { display: none; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 40px 36px; position: relative; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
    /* compact mobil footer: marka & bülten tam genişlik, iki liste yan yana */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
    .footer-brand, .footer-news { grid-column: 1 / -1; }
}
.footer-logo { width: 128px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .92; }
.footer-lead { font-size: 14px; line-height: 1.6; max-width: 34ch; color: rgba(255,255,255,.7); }
.footer-meta { margin-top: 14px; font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.6); }
.footer-meta a:hover { color: var(--gold-3); }
.site-footer h4 { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: 18px; color: var(--gold-3); margin-bottom: 12px; }
.footer-list { display: grid; gap: 7px; }
.footer-list a { font-size: 14px; color: rgba(255,255,255,.72); transition: color .3s; }
.footer-list a:hover { color: var(--gold-3); }
.footer-news p { font-size: 13px; line-height: 1.55; margin-bottom: 12px; color: rgba(255,255,255,.65); }
.news-form { position: relative; display: flex; align-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 4px 4px 4px 18px; transition: border-color .3s; }
.news-form:focus-within { border-color: var(--gold); }
.news-form input { flex: 1; background: transparent; border: 0; outline: 0; color: #fff; font: inherit; font-size: 14px; padding: 12px 0; }
.news-form input::placeholder { color: rgba(255,255,255,.4); }
.news-form button { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #fff; display: grid; place-items: center; transition: transform .3s, background .3s; }
.news-form button:hover { background: var(--gold-2); transform: translateX(2px); }
.news-ok { position: absolute; left: 18px; top: calc(100% + 8px); font-size: 12px; color: var(--gold-3); }
/* footer ödeme şeridi */
.footer-pay { position: relative; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-pay__label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.pay-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-badge { display: inline-flex; align-items: center; justify-content: center; height: 30px; min-width: 50px; padding: 0 12px; background: #fff; border-radius: 6px; font-size: 14px; box-shadow: 0 4px 10px -4px rgba(0,0,0,.3); }
.pay-badge--wide { min-width: 92px; }
@media (max-width: 560px){
    .footer-pay { flex-direction: column; justify-content: center; text-align: center; gap: 14px; }
    .pay-badges { justify-content: center; }
}

.footer-bottom { position: relative; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; letter-spacing: .06em; color: rgba(255,255,255,.55); }
.footer-policies { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-policies a:hover { color: var(--gold-3); }

/* =================================================================
   FLOATING CART (FAB)
   ================================================================= */
.fab-cart {
    position: fixed;
    right: max(20px, env(safe-area-inset-right,0px));
    bottom: max(20px, env(safe-area-inset-bottom,0px));
    z-index: 80;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 18px 34px -14px rgba(32,32,28,.5);
    transition: transform .35s var(--ease), background .3s;
}
.fab-cart:hover { transform: translateY(-2px) scale(1.04); background: var(--gold-deep); }
.fab-cart__count {
    position: absolute; top: -4px; right: -4px;
    min-width: 20px; height: 20px; padding: 0 6px;
    border-radius: 999px; background: var(--gold); color: #fff;
    font-size: 11px; font-weight: 600; display: grid; place-items: center;
    box-shadow: 0 0 0 2px #fff;
    transform: scale(0); transition: transform .3s var(--ease);
}
body[data-cart-has-items="true"] .fab-cart__count { transform: scale(1); }
body.menu-open .fab-cart { opacity: 0; pointer-events: none; transform: scale(.8); }
@media (max-width: 480px) { .fab-cart { width: 50px; height: 50px; } }

/* =================================================================
   MOBILE MENU
   ================================================================= */
.mobile-menu { position: fixed; inset: 0; z-index: 45; visibility: hidden; pointer-events: none; }
.mobile-menu[aria-hidden="false"] { visibility: visible; pointer-events: auto; }
.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(32,28,24,.3); backdrop-filter: blur(3px); opacity: 0; transition: opacity .45s var(--ease); }
.mobile-menu[aria-hidden="false"] .mobile-menu__backdrop { opacity: 1; }
.mobile-menu__panel {
    position: absolute; top: 0; left: 0; right: 0;
    background: var(--white);
    color: var(--ink);
    padding: calc(env(safe-area-inset-top,0px) + 96px) clamp(22px,6vw,40px) calc(env(safe-area-inset-bottom,0px) + 32px);
    display: flex; flex-direction: column; gap: 26px;
    min-height: 100dvh; max-height: 100dvh; overflow-y: auto;
    transform: translateY(-100%); transition: transform .5s var(--ease-soft);
    box-shadow: 0 30px 60px -24px rgba(0,0,0,.3);
    border-bottom: 1px solid var(--line);
}
.mobile-menu[aria-hidden="false"] .mobile-menu__panel { transform: translateY(0); }
.mobile-menu__list { display: flex; flex-direction: column; }
.mobile-menu__list li { border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(12px); }
.mobile-menu[aria-hidden="false"] .mobile-menu__list li { opacity: 1; transform: none; transition: opacity .5s var(--ease) calc(var(--i)*60ms + 180ms), transform .5s var(--ease) calc(var(--i)*60ms + 180ms); }
.mobile-menu__list a { display: flex; align-items: center; gap: 16px; padding: 20px 4px; color: var(--ink); }
.mobile-menu__num { font-family: var(--f-display); font-style: italic; font-size: 15px; color: var(--gold-deep); min-width: 30px; }
.mobile-menu__label { font-family: var(--f-display); font-weight: 400; font-size: clamp(26px,8vw,34px); line-height: 1; flex: 1; }
.mobile-menu__arrow { color: var(--muted); transition: transform .3s, color .3s; }
.mobile-menu__list a:active .mobile-menu__arrow { transform: translateX(4px); color: var(--gold-deep); }
.mobile-menu__actions { display: flex; flex-direction: column; gap: 12px; margin-top: auto; padding-top: 10px; }
.mobile-menu__actions .btn-primary { padding: 17px 24px; }
.mobile-menu__actions .btn-ghost { padding: 17px 24px; justify-content: center; }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 10px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }
.mobile-menu__foot a:hover { color: var(--gold-deep); }
.mobile-menu__social { display: flex; gap: 18px; margin-top: 6px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.mobile-menu__social a { color: var(--gold-deep); }
@media (min-width: 1101px) { .mobile-menu { display: none; } }

/* =================================================================
   CART DRAWER
   ================================================================= */
.cart { position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0; transition: opacity .4s var(--ease); }
.cart[aria-hidden="false"] { pointer-events: auto; opacity: 1; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(32,28,24,.45); backdrop-filter: blur(4px); }
.cart-panel {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: min(440px, 100vw);
    background: var(--white);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,.4);
    padding: 28px clamp(20px,3vw,28px) calc(env(safe-area-inset-bottom,0px) + 24px);
    display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform .5s var(--ease-soft);
}
.cart[aria-hidden="false"] .cart-panel { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.cart-head h3 { font-family: var(--f-display); font-weight: 400; font-size: 24px; }
.cart-list { display: grid; gap: 14px; margin-bottom: 16px; flex: 1; align-content: start; overflow-y: auto; padding-right: 4px; }
.cart-list:empty { display: none; }
.cart-list li { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; align-items: center; padding: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; }
.cart-thumb { width: 70px; height: 70px; border-radius: 6px; background: linear-gradient(180deg,#fdfbf6,#f3eee2); display: grid; place-items: center; overflow: hidden; }
.cart-thumb img { width: 70%; max-height: 80%; object-fit: contain; }
.cart-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart-info h4 { font-family: var(--f-display); font-weight: 400; font-size: 17px; }
.cart-info p { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cart-line-price { margin-top: 3px; font-family: var(--f-display); font-style: italic; font-size: 15px; color: var(--gold-deep); }
.cart-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-list .qty { display: inline-flex; align-items: center; gap: 4px; background: rgba(32,32,28,.06); border-radius: 999px; padding: 3px; }
.cart-list .qty span { min-width: 18px; text-align: center; font-size: 13px; }
.cart-list .qty button { width: 24px; height: 24px; border-radius: 50%; background: #fff; display: grid; place-items: center; transition: background .25s, color .25s; }
.cart-list .qty button:hover { background: var(--ink); color: #fff; }
.cart-remove { width: 22px; height: 22px; border-radius: 50%; color: var(--muted); display: grid; place-items: center; transition: background .25s, color .25s; }
.cart-remove:hover { background: rgba(139,58,31,.1); color: #8b3a1f; }
.cart-empty { flex: 1; display: grid; place-items: center; text-align: center; color: var(--muted); font-size: 14px; padding: 30px; }
.cart-empty a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-deep); }
.cart:not([data-empty="false"]) .cart-list { display: none; }
.cart[data-empty="false"] .cart-empty { display: none; }
.cart-foot { padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--muted); }
.cart-total strong { font-family: var(--f-display); font-size: 24px; color: var(--ink); }
.cart-foot small { color: var(--muted); font-size: 11.5px; line-height: 1.5; text-align: center; }

/* =================================================================
   REVEAL
   ================================================================= */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .play-dot { animation: none !important; }
}

/* =================================================================
   MOBILE genel
   ================================================================= */
@media (hover: none) {
    a, button, .btn, .pcard { -webkit-tap-highlight-color: transparent; }
    .pcard-add { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
    .container { padding-inline: 22px; }
    .hero-head__aside { margin-top: 4px; }
    .split-panel, .experts-panel { padding: 48px 26px; }
    .medals { gap: 20px; }
    .medal-ring { width: 72px; height: 72px; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
    .footer-policies { justify-content: center; }
    /* alt köşedeki sepet butonu metni örtmesin */
    .site-footer { padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 90px); }
}
