/*
 * Mirellora vitrin stilleri — Yön A "Gül Kurusu". Tek dosya; tasarım değişkenleri üstte.
 * Yazı tipleri yerelde (woff2, latin + latin-ext). Admin stilleri bu dosyada yok.
 */
/* Yazı tipleri yalnızca Türkçe karakterlere indirildi (latin + ğ Ğ ş Ş İ ı ₺). */
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500 600; font-display: swap; src: url(../fonts/cormorant-latin.woff2?v=2) format("woff2"); unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+20AC, U+2122; }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500 600; font-display: swap; src: url(../fonts/cormorant-latin-ext.woff2?v=2) format("woff2"); unicode-range: U+011E-011F, U+0130, U+015E-015F, U+20BA; }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400 700; font-display: swap; src: url(../fonts/manrope-latin.woff2?v=2) format("woff2"); unicode-range: U+0020-007E, U+00A0-00FF, U+0131, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+20AC, U+2122; }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400 700; font-display: swap; src: url(../fonts/manrope-latin-ext.woff2?v=2) format("woff2"); unicode-range: U+011E-011F, U+0130, U+015E-015F, U+20BA; }

:root {
  --bg: #FAF6F2;
  --surface: #FFFFFF;
  --ink: #2A1F22;
  --muted: #74656A;
  --line: #EADFD9;
  --accent: #8E3B4E;
  --accent-hover: #74303F;
  --on-accent: #FFFFFF;
  --gold: #B59265;
  --tile: #F3E7E3;
  --blush: #F7E6E4;
  --demo-bg: #2A1F22;
  --demo-text: #F4ECE8;

  --f-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --container: 1240px;
  --gutter: 16px;
  --radius: 6px;
  --header-h: 68px;
  --tabbar-h: 64px;
}
@media (min-width: 768px) { :root { --gutter: 32px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 16px/1.6 var(--f-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 500; line-height: 1.12; text-wrap: balance; }
p { margin: 0; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 100; background: var(--surface); padding: 8px 16px; }
.icon { width: 22px; height: 22px; flex: 0 0 auto; }

/* Demo bandı (yalnızca DEMO_MODE) */
.demo-band { background: var(--demo-bg); color: var(--demo-text); font-size: 12.5px; }
.demo-band__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px; padding-top: 7px; padding-bottom: 7px; }
.demo-band__tag { text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: 10.5px; border: 1px solid currentColor; border-radius: 999px; padding: 0 8px; }
.demo-band__link { margin-left: auto; text-decoration: underline; text-underline-offset: 3px; }

/* Üst şerit ve başlık */
.topbar { background: var(--accent); color: #F8ECEC; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; gap: 12px; padding-top: 8px; padding-bottom: 8px; }
.topbar a { text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
@media (max-width: 480px) { .topbar__row > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } }
.header { position: sticky; top: 0; z-index: 30; background: var(--bg); border-bottom: 1px solid var(--line); }
.header__row { display: flex; align-items: center; gap: 8px; min-height: var(--header-h); }
.logo { display: block; flex: 0 0 auto; }
.logo img { display: block; height: 56px; width: auto; }
@media (min-width: 1200px) { :root { --header-h: 84px; } .logo img { height: 72px; } }
.nav { display: none; }
.header__actions { display: flex; gap: 2px; margin-left: auto; }
.icon-btn { position: relative; display: inline-grid; place-items: center; width: 44px; height: 44px; border: 0; background: none; border-radius: 999px; cursor: pointer; }
.icon-btn:hover { background: var(--tile); }
.icon-btn .count { position: absolute; top: 5px; right: 3px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px; background: var(--accent); color: var(--on-accent); font: 700 10px/17px var(--f-body); text-align: center; }
.menu-btn { margin-left: -10px; }
@media (min-width: 1200px) {
  .menu-btn { display: none; }
  .nav { display: flex; gap: clamp(12px, 1.4vw, 24px); margin: 0 auto; font-size: clamp(13px, 1vw, 14.5px); white-space: nowrap; }
  .nav a { padding: 6px 0; border-bottom: 1px solid transparent; }
  .nav a:hover, .nav a[aria-current] { color: var(--accent); border-bottom-color: currentColor; }
  .header__actions { margin-left: 0; }
}

/* Mobil menü çekmecesi — tam ekran ve opak */
.drawer { position: fixed; inset: 0; z-index: 60; background: var(--bg); padding: 0 var(--gutter) calc(24px + env(safe-area-inset-bottom, 0px)); overflow-y: auto; transform: translateX(-100%); visibility: hidden; transition: transform .22s ease, visibility 0s linear .22s; }
.drawer.is-open { transform: none; visibility: visible; transition: transform .22s ease; }
body.menu-open { overflow: hidden; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); border-bottom: 1px solid var(--line); }
.drawer__group { padding: 16px 0; border-bottom: 1px solid var(--line); }
.drawer__label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.drawer__group a { display: block; padding: 10px 0; font-family: var(--f-display); font-size: 24px; }
.drawer__small a { font-family: var(--f-body); font-size: 15px; padding: 8px 0; }

/* Alt sekme çubuğu (mobil) */
.tabbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: repeat(5, 1fr); background: var(--surface); border-top: 1px solid var(--line); padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px)); }
.tabbar a { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 11px; color: var(--muted); }
.tabbar a[aria-current] { color: var(--accent); }
body { padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 1024px) { .tabbar { display: none; } body { padding-bottom: 0; } }

/* Butonlar, rozetler */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 0 26px; border-radius: 999px; border: 1px solid transparent; font-weight: 600; font-size: 15px; cursor: pointer; background: none; transition: background-color .2s, color .2s, border-color .2s; }
.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-hover); }
.btn--ghost { border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--sm { min-height: 40px; padding: 0 18px; font-size: 14px; }
.badge { display: inline-flex; align-items: center; font-size: 11.5px; font-weight: 600; padding: 3px 10px; border-radius: 999px; background: var(--surface); color: var(--ink); }
.badge--muted { background: var(--ink); color: var(--bg); }
.link { text-decoration: underline; text-underline-offset: 4px; }
.eyebrow { font-family: var(--f-display); font-size: 20px; color: var(--accent); }
.eyebrow--line::before { content: ""; display: inline-block; width: 32px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 12px; }

/* Ana sayfa */
.hero { padding: 40px 0 8px; }
.hero__grid { display: grid; gap: 36px; align-items: center; }
.hero__title { font-family: var(--f-display); font-size: clamp(42px, 6.2vw, 76px); line-height: 1.02; letter-spacing: -.01em; max-width: 12ch; margin-top: 14px; }
.hero__lead { margin-top: 18px; font-size: 18px; color: var(--muted); max-width: 34ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@media (max-width: 480px) { .hero__cta .btn { flex: 1 1 100%; } }
.arch { position: relative; margin: 0 auto; width: min(72%, 300px); aspect-ratio: 4 / 5; border-radius: 999px 999px 20px 20px; background: radial-gradient(120% 80% at 50% 0%, #F7E6E4 0%, #E9C9C8 55%, #D9A9AE 100%); display: grid; place-items: center; box-shadow: inset 0 0 0 10px rgba(255, 255, 255, .35); }
.arch::after { content: ""; position: absolute; inset: 18px; border-radius: 999px 999px 12px 12px; border: 1px solid rgba(181, 146, 101, .7); }
.arch__art { width: 46%; color: #fff; }
.note { position: absolute; z-index: 1; left: 4%; bottom: 12%; background: var(--surface); padding: 14px 20px; box-shadow: 0 18px 40px -18px rgba(42, 31, 34, .35); transform: rotate(-3deg); }
.note__label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.note__text { font-family: var(--f-display); font-size: 24px; color: var(--accent); }
@media (min-width: 1024px) {
  .hero { padding: 72px 0 16px; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .arch { width: min(100%, 440px); }
  .note { left: -6%; }
}
.shortcuts { margin-top: 44px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.shortcuts__label { font-size: 14px; color: var(--muted); }
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; max-width: 100%; padding-bottom: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex: 0 0 auto; padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: 14px; }
.chip:hover, .chip[aria-current] { border-color: var(--accent); color: var(--accent); }

.section { margin-top: 64px; }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.section__title { font-family: var(--f-display); font-size: clamp(30px, 4vw, 40px); }
.section__link { font-size: 14px; white-space: nowrap; text-decoration: underline; text-underline-offset: 4px; }
.section__desc { color: var(--muted); max-width: 60ch; margin-top: -8px; margin-bottom: 20px; }

.steps { display: grid; gap: 28px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.step { border-top: 1px solid var(--gold); padding-top: 18px; }
.step__no { font-family: var(--f-display); font-size: 18px; color: var(--gold); }
.step__title { font-family: var(--f-display); font-size: 28px; margin: 4px 0 8px; }
.step p { color: var(--muted); }

.delivery { display: grid; gap: 24px; background: var(--surface); border: 1px solid var(--line); padding: 32px 24px; border-radius: var(--radius); }
@media (min-width: 1024px) { .delivery { grid-template-columns: 1.2fr 1fr; padding: 48px; align-items: center; } }
.delivery__title { font-family: var(--f-display); font-size: clamp(32px, 4.4vw, 48px); }
.delivery p { color: var(--muted); margin-top: 12px; max-width: 48ch; }
.delivery ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.delivery li { display: flex; gap: 12px; align-items: flex-start; }
.delivery li .icon { color: var(--accent); margin-top: 2px; }

.cat-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; } }
.cat-tile { position: relative; display: flex; flex-direction: column; justify-content: flex-end; aspect-ratio: 4 / 5; padding: 18px; background: var(--tile); border-radius: var(--radius); overflow: hidden; }
.cat-tile__art { position: absolute; inset: 18% 28% 34%; color: var(--accent); opacity: .85; }
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-tile__name { position: relative; font-family: var(--f-display); font-size: 24px; line-height: 1.1; }
.cat-tile:has(img) .cat-tile__name { color: #fff; text-shadow: 0 1px 12px rgba(0, 0, 0, .35); }

/* Ürün kartı ve ızgara */
.grid { display: grid; gap: 28px 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 24px; } .listing .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .listing .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 46%); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter); }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
@media (min-width: 768px) { .rail { grid-auto-columns: minmax(0, 31%); } }
@media (min-width: 1024px) { .rail { grid-auto-flow: row; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-columns: auto; overflow: visible; margin: 0; padding: 0; gap: 36px 24px; } .rail > :nth-child(n+5) { display: none; } }
.card { position: relative; min-width: 0; }
.card__media { position: relative; display: grid; place-items: center; aspect-ratio: 4 / 5; background: var(--tile); border-radius: var(--radius); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.03); }
.card__art { width: 42%; color: var(--accent); }
.card__badge { position: absolute; left: 10px; top: 10px; max-width: calc(100% - 64px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fav-btn { position: absolute; right: 8px; top: 8px; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 999px; background: var(--surface); cursor: pointer; }
.fav-btn .icon { width: 19px; height: 19px; }
.fav-btn[aria-pressed="true"] { color: var(--accent); }
.fav-btn[aria-pressed="true"] path { fill: currentColor; }
.card__name { margin-top: 12px; font-size: 15px; line-height: 1.35; font-weight: 500; }
.card__name a::after { content: ""; position: absolute; inset: 0; }
.card .fav-btn { z-index: 1; }
.price { display: flex; flex-wrap: wrap; gap: 4px 8px; align-items: baseline; margin-top: 6px; font-variant-numeric: tabular-nums; }
.price__now { font-weight: 700; font-size: 16px; }
.price__old { color: var(--muted); font-size: 14px; }
.card--soldout .card__media { opacity: .6; }

/* Listeleme (kategori/koleksiyon) */
.page-head { padding: 28px 0 8px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--muted); }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--line); }
.breadcrumb a:hover { color: var(--accent); }
.page-title { font-family: var(--f-display); font-size: clamp(38px, 5vw, 56px); margin-top: 14px; }
.page-lead { color: var(--muted); margin-top: 10px; max-width: 65ch; }
.listing { display: grid; gap: 24px; margin-top: 24px; }
@media (min-width: 1024px) { .listing { grid-template-columns: 250px minmax(0, 1fr); gap: 40px; } }
.toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; font-size: 14px; color: var(--muted); }
.toolbar select { min-height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--ink); font: inherit; }
.filters { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.filters > summary { list-style: none; display: flex; gap: 10px; align-items: center; padding: 14px 16px; font-weight: 600; cursor: pointer; }
.filters > summary::-webkit-details-marker { display: none; }
.filters__body { padding: 0 16px 16px; display: grid; gap: 18px; }
@media (min-width: 1024px) { .filters { border: 0; background: none; } .filters > summary { display: none; } .filters__body { padding: 0; } }
.filter-group { border: 0; margin: 0; padding: 0; display: grid; gap: 6px; }
.filter-group legend, .filter-group__title { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; padding: 0; }
.check { display: flex; align-items: center; gap: 10px; font-size: 14.5px; min-height: 32px; cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--accent); margin: 0; }
.swatch { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .12); }
.filter-links a { display: block; padding: 5px 0; font-size: 14.5px; }
.filter-links a[aria-current] { color: var(--accent); font-weight: 600; }
.filters__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.empty { padding: 40px 24px; text-align: center; background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius); }
.empty h2 { font-family: var(--f-display); font-size: 28px; margin-bottom: 8px; }
.empty p { color: var(--muted); max-width: 48ch; margin: 0 auto 16px; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; font-size: 14px; }
.pagination a, .pagination span { min-width: 42px; min-height: 42px; display: inline-grid; place-items: center; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); }
.pagination span[aria-current] { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Ürün sayfası */
.product { display: grid; gap: 28px; margin-top: 20px; }
@media (min-width: 1024px) { .product { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; align-items: start; } .product__info { position: sticky; top: calc(var(--header-h) + 24px); } }
.gallery__track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; border-radius: var(--radius); background: var(--tile); }
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__slide { scroll-snap-align: start; aspect-ratio: 4 / 5; display: grid; place-items: center; }
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery__art { width: 40%; color: var(--accent); }
.gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.gallery__thumbs button { flex: 0 0 64px; height: 80px; padding: 0; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--tile); cursor: pointer; }
.gallery__thumbs button[aria-current="true"] { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product__title { font-family: var(--f-display); font-size: clamp(34px, 4.2vw, 48px); margin-top: 10px; }
.product .price { margin-top: 14px; }
.product .price__now { font-size: 24px; }
.product .price__old { font-size: 17px; }
.product__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.product__badges .badge { background: var(--tile); }
.product__short { margin-top: 18px; color: var(--muted); font-size: 16.5px; }
.variants { border: 0; margin: 24px 0 0; padding: 0; }
.variants legend { font-weight: 600; margin-bottom: 10px; padding: 0; }
.variants__list { display: flex; flex-wrap: wrap; gap: 8px; }
.variant { position: relative; }
.variant input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.variant span { display: inline-flex; flex-direction: column; min-width: 64px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); font-size: 14px; line-height: 1.3; text-align: center; }
.variant small { color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.variant input:checked + span { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.variant input:disabled + span { opacity: .45; text-decoration: line-through; }
.variant input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.product__actions { display: flex; gap: 10px; margin-top: 24px; }
.product__actions .btn { flex: 1; }
.info-list { list-style: none; margin: 24px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; font-size: 15px; }
.info-list li { display: flex; gap: 12px; }
.info-list .icon { color: var(--accent); }
.specs { margin-top: 24px; display: grid; grid-template-columns: max-content 1fr; gap: 8px 20px; font-size: 14.5px; }
.specs dt { color: var(--muted); }
.specs dd { margin: 0; }
.prose { max-width: 68ch; }
.prose h2 { font-family: var(--f-display); font-size: 30px; margin: 32px 0 12px; }
.prose h3 { font-size: 18px; font-weight: 700; margin: 24px 0 8px; }
.prose p, .prose ul { margin: 0 0 14px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.product-desc { margin-top: 56px; display: grid; gap: 24px; }
@media (min-width: 1024px) { .product-desc { grid-template-columns: 1fr 1fr; gap: 56px; } }
.product-desc__title { font-family: var(--f-display); font-size: 32px; margin-bottom: 12px; }

/* Arama */
.search-form { display: flex; gap: 8px; margin-top: 20px; max-width: 640px; }
.search-form input { flex: 1; min-width: 0; min-height: 52px; padding: 0 20px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font: inherit; color: var(--ink); }
.search-form input:focus { border-color: var(--accent); outline: none; }
.result-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* Güven şeridi ve alt bilgi */
.trust { list-style: none; margin: 72px 0 0; padding: 24px 0; display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 14px; }
@media (min-width: 1024px) { .trust { grid-template-columns: repeat(4, 1fr); } }
.trust li { display: flex; align-items: center; gap: 10px; }
.trust .icon { color: var(--accent); }
.footer { margin-top: 64px; padding: 48px 0 32px; border-top: 1px solid var(--line); background: var(--surface); }
.footer__grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr repeat(4, 1fr); } }
.footer__logo { display: block; width: 150px; height: auto; margin-bottom: 16px; }
.footer__motto { font-family: var(--f-display); font-size: 30px; line-height: 1.1; }
.footer__about { color: var(--muted); font-size: 14px; margin-top: 10px; max-width: 32ch; }
.footer__title { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; font-size: 14.5px; }
.footer a:hover { color: var(--accent); }
.footer__bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

.message-page { padding: 64px 0; text-align: center; }
.message-page .page-title { margin-inline: auto; }
.message-page p { color: var(--muted); margin: 12px auto 24px; max-width: 48ch; }
.debug { white-space: pre-wrap; text-align: left; background: var(--surface); border: 1px solid var(--line); padding: 16px; overflow-x: auto; font-size: 13px; }

/* Faz 2: kişiselleştirme, fiyat dökümü, sepet */
.buy { margin-top: 8px; }
.personalize { margin-top: 24px; display: grid; gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.personalize__title { font-family: var(--f-display); font-size: 24px; }
.pfield { display: grid; gap: 6px; }
.pfield__label { font-weight: 600; font-size: 14.5px; }
.pfield__opt { font-weight: 400; color: var(--muted); font-size: 13px; }
.pfield__input { width: 100%; min-height: 46px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); font: inherit; color: var(--ink); }
.pfield__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(142, 59, 78, .12); }
textarea.pfield__input { resize: vertical; }
.pfield__hint { font-size: 12.5px; color: var(--muted); }
.photo-field { display: grid; gap: 8px; justify-items: start; }
.photo-field__btn { position: relative; cursor: pointer; }
.photo-preview { position: relative; width: 180px; aspect-ratio: 1; border-radius: 12px; background: var(--tile); overflow: hidden; }
.photo-preview__print { position: absolute; inset: 30% 30% 22% 22%; overflow: hidden; border-radius: 4px; }
.photo-preview--tisort .photo-preview__print { inset: 36% 34% 26% 34%; }
.photo-preview--hediye_kutusu .photo-preview__print, .photo-preview--pelus_buket .photo-preview__print, .photo-preview--genel .photo-preview__print { inset: 44% 20% 14% 20%; }
.photo-preview__print img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview__art { position: absolute; inset: 8%; color: var(--accent); pointer-events: none; }
.complete { border: 0; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); }
.complete__title { font-family: var(--f-display); font-size: 24px; padding: 0; margin-bottom: 12px; }
.complete__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.complete__item { display: grid; grid-template-columns: auto 48px 1fr auto; align-items: center; gap: 12px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; }
.complete__item:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.complete__item input { width: 18px; height: 18px; accent-color: var(--accent); margin: 0; }
.complete__media { width: 48px; height: 48px; border-radius: 8px; background: var(--tile); display: grid; place-items: center; overflow: hidden; color: var(--accent); }
.complete__media img { width: 100%; height: 100%; object-fit: cover; }
.complete__media svg { width: 70%; }
.complete__name { font-size: 14.5px; }
.complete__price { font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.breakdown { margin-top: 24px; padding: 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); display: grid; gap: 6px; font-size: 14.5px; font-variant-numeric: tabular-nums; }
.breakdown > div { display: flex; justify-content: space-between; gap: 12px; }
.breakdown__total { padding-top: 8px; border-top: 1px solid var(--line); font-weight: 700; font-size: 17px; }
.breakdown__note { font-size: 12.5px; color: var(--muted); }
.qty input, .line__qty input { width: 72px; min-height: 50px; padding: 0 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font: inherit; text-align: center; color: var(--ink); }
.product__actions { align-items: center; }
.fav-toggle { flex: 0 0 50px; height: 50px; border: 1px solid var(--line); }
.fav-toggle[aria-pressed="true"] { color: var(--accent); }
.fav-toggle[aria-pressed="true"] path { fill: currentColor; }
.buy__errors { margin-top: 12px; padding: 10px 14px; border-radius: 10px; background: #FBEDEE; color: #8E2B3A; font-size: 14px; }
.upgrade { display: grid; gap: 2px; margin-top: 16px; padding: 14px 16px; border: 1px dashed var(--gold); border-radius: 12px; background: var(--blush); }
.upgrade__label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.upgrade__name { font-family: var(--f-display); font-size: 22px; }
.upgrade__price { font-size: 14px; color: var(--muted); font-variant-numeric: tabular-nums; }
.whatsapp-ask { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 14.5px; text-decoration: underline; text-underline-offset: 4px; }
.wa-float { position: fixed; right: 16px; bottom: calc(var(--tabbar-h) + 16px + env(safe-area-inset-bottom, 0px)); z-index: 35; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: #1F7A4D; color: #fff; box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .4); }
@media (min-width: 1024px) { .wa-float { bottom: 24px; } }
.notice { margin-top: 12px; padding: 10px 14px; border-radius: 10px; background: #EAF4EC; color: #2E6B43; }
.notice--warn { background: #FBF1E3; color: #7A4B12; }
.cart { display: grid; gap: 24px; margin-top: 16px; }
@media (min-width: 1024px) { .cart { grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; align-items: start; } .cart__aside { position: sticky; top: calc(var(--header-h) + 24px); } }
.cart__aside { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px; display: grid; gap: 14px; }
.cart__title { font-family: var(--f-display); font-size: 26px; }
.cart__cta { width: 100%; }
.cart__cta:disabled { opacity: .55; cursor: not-allowed; }
.cart__note { font-size: 13px; color: var(--muted); }
.lines { list-style: none; margin: 0; padding: 0; display: grid; }
.line { display: grid; grid-template-columns: 72px minmax(0, 1fr) auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.line--addon { padding-left: 24px; }
.line--unavailable { opacity: .6; }
.line__media { width: 72px; height: 90px; border-radius: 8px; background: var(--tile); display: grid; place-items: center; overflow: hidden; color: var(--accent); }
.line__media img { width: 100%; height: 100%; object-fit: cover; }
.line__media svg { width: 60%; }
.line__name { font-weight: 600; font-size: 15px; }
.line__tag { font-size: 11px; font-weight: 600; background: var(--tile); border-radius: 999px; padding: 1px 8px; }
.line__meta, .line__selections { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.line__selections { list-style: none; padding: 0; display: grid; gap: 2px; }
.line__selections span { color: var(--ink); }
.line__selections em { font-style: normal; color: var(--accent); margin-left: 4px; }
.line__photo { display: inline-block; width: 36px; height: 36px; object-fit: cover; border-radius: 4px; vertical-align: middle; }
.line__note { font-size: 13px; color: #8E2B3A; margin-top: 6px; }
.line__actions { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.line__qty input { min-height: 38px; width: 64px; }
.line__price { font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.line__price small { display: block; font-weight: 400; font-size: 12px; color: var(--muted); }
.link-btn { border: 0; background: none; padding: 0; font: inherit; font-size: 13.5px; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; color: var(--muted); }
.summary { margin: 0; display: grid; gap: 8px; font-size: 14.5px; font-variant-numeric: tabular-nums; }
.summary div { display: flex; justify-content: space-between; gap: 12px; }
.summary dd { margin: 0; }
.summary__muted { color: var(--muted); text-align: right; }
.summary__total { padding-top: 10px; border-top: 1px solid var(--line); font-weight: 700; font-size: 18px; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 70; width: min(420px, 100%); background: var(--bg); box-shadow: -20px 0 40px -20px rgba(42, 31, 34, .35); padding: 0 20px calc(20px + env(safe-area-inset-bottom, 0px)); overflow-y: auto; }
.cart-drawer__head { display: flex; justify-content: space-between; align-items: center; min-height: var(--header-h); border-bottom: 1px solid var(--line); }
.cart-drawer__title { font-family: var(--f-display); font-size: 26px; }
.mini { display: grid; gap: 14px; padding-top: 12px; }
.mini__added { padding: 10px 14px; border-radius: 10px; background: #EAF4EC; color: #2E6B43; font-size: 14px; }
.mini__empty { color: var(--muted); }
.mini__cta { width: 100%; }
.lines--mini .line { grid-template-columns: 56px minmax(0, 1fr) auto; padding: 12px 0; }
.lines--mini .line__media { width: 56px; height: 70px; }
.error-list { list-style: none; padding: 0; color: #8E2B3A; margin: 16px auto; }

/* Faz 3: teslimat sözü, checkout, sipariş */
.promise { margin-top: 20px; display: grid; gap: 8px; }
.promise__row { display: flex; gap: 8px; }
.promise__text { font-size: 14.5px; color: var(--accent); font-weight: 600; min-height: 1.4em; }
.checkout { display: grid; gap: 24px; margin-top: 12px; }
@media (min-width: 1024px) { .checkout { grid-template-columns: minmax(0, 1fr) 380px; gap: 40px; align-items: start; } .checkout__aside { position: sticky; top: calc(var(--header-h) + 24px); } }
.checkout__main { display: grid; gap: 20px; min-width: 0; }
.checkout__aside { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px; display: grid; gap: 14px; min-width: 0; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px; display: grid; gap: 14px; min-width: 0; }
.step__title { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-size: 26px; }
.step__title span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--on-accent); font: 700 14px/1 var(--f-body); }
.step__note { font-size: 13.5px; color: var(--muted); }
.step__note:empty { display: none; }
.form-grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.choice { border: 0; margin: 0; padding: 0; display: grid; gap: 8px; min-width: 0; }
.choice__list { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.choice__item { position: relative; flex: 0 0 auto; }
.choice__item input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.choice__item span { display: block; padding: 10px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); font-size: 14px; white-space: nowrap; }
.choice__item input:checked + span { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); background: var(--surface); }
.choice__item input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.check--lg { font-weight: 600; font-size: 16px; }
.check--terms { align-items: flex-start; font-size: 13.5px; }
.gift { display: grid; gap: 12px; padding-left: 28px; }
.gift[hidden] { display: none; }
.form-error { color: #8E2B3A; font-size: 13.5px; font-weight: 600; }
.form-alert { margin-top: 12px; padding: 12px 16px; border-radius: 10px; background: #FBEDEE; color: #8E2B3A; }
.demo-note { font-size: 13px; padding: 8px 12px; border-radius: 8px; background: var(--tile); }
.demo-note .btn { margin-top: 8px; }
.order { display: grid; gap: 24px; margin-top: 12px; }
@media (min-width: 1024px) { .order { grid-template-columns: 1fr 1fr; gap: 40px; } }
.order__status, .order__items { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px; display: grid; gap: 16px; align-content: start; min-width: 0; }
.order__label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.order__state { font-family: var(--f-display); font-size: 32px; color: var(--accent); }
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.timeline li { position: relative; padding-left: 26px; color: var(--muted); font-size: 14.5px; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 4px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--line); background: var(--surface); }
.timeline li.is-done { color: var(--ink); }
.timeline li.is-done::before { border-color: var(--accent); background: var(--accent); }
.timeline li.is-current { font-weight: 700; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.track-form { display: grid; gap: 14px; max-width: 480px; margin-top: 20px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
.check--terms a, .cart__note a { text-decoration: underline; text-underline-offset: 2px; }
.arch--photo { overflow: hidden; }
.arch--photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.promo { display: grid; gap: 24px; background: var(--accent); color: #fff; border-radius: var(--radius); overflow: hidden; }
.promo__text { padding: 32px 24px; display: grid; gap: 14px; align-content: center; justify-items: start; }
.promo__title { font-family: var(--f-display); font-size: clamp(30px, 4vw, 44px); line-height: 1.1; }
.promo p { opacity: .9; max-width: 46ch; }
.promo .btn--primary { background: #fff; color: var(--accent); }
.promo__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
@media (min-width: 1024px) { .promo--photo { grid-template-columns: 1fr 1fr; } .promo__text { padding: 48px; } }
/* Blog */
.blog-cats { margin: 8px 0 24px; }
.post-grid { display: grid; gap: 28px 20px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); margin-top: 8px; }
.post-card__media { display: grid; place-items: center; aspect-ratio: 4 / 3; background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__art { width: 34%; color: var(--accent); }
.post-card__cat { margin-top: 12px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.post-card__title { font-family: var(--f-display); font-size: 24px; line-height: 1.2; margin-top: 6px; }
.post-card__excerpt { color: var(--muted); margin-top: 6px; font-size: 15px; }
.post__head { max-width: 900px; }
.post__meta { color: var(--muted); font-size: 14px; margin-top: 10px; }
.post__cover { width: 100%; max-width: 900px; height: auto; border-radius: var(--radius); margin-top: 16px; }
.post__body { margin-top: 24px; font-size: 17px; }
.post__tags { color: var(--muted); font-size: 14px; margin-top: 8px; }
.empty-note { color: var(--muted); padding: 32px 0; }
.guide-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.guide-list a { font-family: var(--f-display); font-size: 22px; text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 5px; }
.guide-list a:hover { color: var(--accent); }
/* Yorumlar, soru/cevap, Gerçek Anlar */
.narrow { max-width: 720px; }
.stack-form { display: grid; gap: 16px; margin-top: 16px; }
.field-error { color: #9B2C2C; font-size: 13px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.stars { color: var(--line); letter-spacing: 1px; white-space: nowrap; }
.stars__s.is-on { color: var(--gold); }
.rating-input { border: 0; padding: 0; margin: 0; }
.rating-input__stars { display: inline-flex; flex-direction: row-reverse; gap: 4px; justify-self: start; }
.rating-input__stars input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.rating-input__stars label { font-size: 30px; color: var(--line); cursor: pointer; line-height: 1; }
.rating-input__stars input:checked ~ label, .rating-input__stars label:hover, .rating-input__stars label:hover ~ label { color: var(--gold); }
.rating-input__stars input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.rating-summary { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); margin-top: 6px; }
.reviews { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.review { border-top: 1px solid var(--line); padding-top: 16px; }
.review__head { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; font-size: 14px; }
.review__date { color: var(--muted); font-size: 13px; }
.review__body { margin-top: 8px; }
.review__photos { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.review__photos img { width: 96px; height: 96px; object-fit: cover; border-radius: 10px; }
.review__reply { margin-top: 10px; padding: 10px 14px; background: var(--surface); border-radius: 10px; font-size: 14px; }
.qa { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.qa__q { font-weight: 600; }
.qa__a { color: var(--muted); margin-top: 4px; }
.feedback-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.review-item { border-top: 1px solid var(--line); padding: 20px 0; }
.review-item__title { font-family: var(--f-display); font-size: 24px; margin-bottom: 10px; }
.moments { columns: 2 180px; column-gap: 16px; margin-top: 8px; }
.moment { break-inside: avoid; margin: 0 0 16px; background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.moment img { width: 100%; height: auto; display: block; }
.moment figcaption { padding: 12px 14px; font-size: 14px; }
.moment__text { margin-top: 6px; }
.moment__meta { color: var(--muted); margin-top: 6px; font-size: 13px; }
@media (min-width: 1024px) { .moments { columns: 4 220px; } }
.moments--rail { columns: 2 140px; }
.coupon { margin: 14px 0 4px; display: grid; gap: 6px; }
.coupon__label { font-size: 13px; font-weight: 600; }
.coupon__row { display: flex; gap: 8px; }
.coupon__row .pfield__input { min-height: 40px; text-transform: uppercase; }
.coupon__applied { font-size: 14px; color: #2E6B43; }
.summary__discount dd { color: #2E6B43; }
.bundle { margin-top: 16px; padding: 14px 16px; background: var(--surface); border-radius: 12px; font-size: 14.5px; }
.bundle__title { font-weight: 600; margin-bottom: 6px; }
.bundle ul { margin: 0; padding-left: 18px; }
/* Hesabım */
.account { display: grid; gap: 24px; padding-top: 28px; }
@media (min-width: 1024px) { .account { grid-template-columns: 220px 1fr; gap: 48px; } }
.account-nav { display: flex; flex-wrap: wrap; gap: 6px 14px; align-content: start; font-size: 15px; }
@media (min-width: 1024px) { .account-nav { flex-direction: column; } }
.account-nav__hello { flex-basis: 100%; font-family: var(--f-display); font-size: 22px; }
.account-nav a[aria-current] { color: var(--accent); font-weight: 600; }
.account__title { margin-top: 0; font-size: clamp(32px, 4vw, 44px); }
.account__sub { margin-top: 36px; }
.account-links { font-size: 14px; color: var(--muted); }
.account-links a { text-decoration: underline; text-underline-offset: 3px; }
.coupon .link-btn { justify-self: start; }
.order-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.order-list__link { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px; padding: 14px 16px; background: var(--surface); border-radius: 12px; }
.order-list__link .badge { margin-left: auto; }
.address-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); }
.address-card { padding: 16px; background: var(--surface); border-radius: 12px; border: 1px solid transparent; font-size: 14.5px; display: grid; gap: 4px; }
.address-card.is-default { border-color: var(--accent); }
.address-card__title { font-weight: 600; }
.address-card__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.address-card__actions form { margin: 0; }
.consent { position: fixed; z-index: 60; left: 12px; right: 12px; bottom: calc(76px + env(safe-area-inset-bottom)); max-width: 560px; margin: 0 auto; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 40px -18px rgba(42, 31, 34, .35); font-size: 14px; display: grid; gap: 12px; }
.consent[hidden] { display: none; }
.consent__actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
@media (min-width: 1024px) { .consent { bottom: 20px; } }
