/* Blossom Shop — Blok Delisi'nin sade düzeni; turuncu vurgu yerine pembe → lila gradient. */
:root {
  /* Tek renk gereken yerlerde pembe ile lila arası orkide tonu kullanılır. */
  --pink: #c85ad2;
  --pink-dark: #a843b8;
  --pink-soft: #e7b8f3;
  --lilac: #b39afa;
  --lilac-dark: #9277f0;
  --grad: linear-gradient(120deg, #f472b6 0%, #d98ae8 50%, #a78bfa 100%);
  --grad-soft: linear-gradient(135deg, #fdf0f8, #f1edff);
  --accent-shadow: 0 4px 14px rgba(190, 110, 230, 0.38);
  --accent-glow: 0 20px 50px rgba(180, 120, 240, 0.16);

  --bg: #fcfafc;
  --bg-alt: #f8f4fb;
  --surface: #ffffff;
  --text: #18181b;
  --text-2: #3f3f46;
  --muted: #71717a;
  --faint: #a1a1aa;
  --border: #ececf0;
  --border-strong: #e4e4e7;
  --hover: #f4f4f5;
  --dark-btn: #18181b;
  --dark-btn-text: #fff;
  color-scheme: light;
}
:root.dark {
  --bg: #0b0a0e;
  --bg-alt: #110f15;
  --surface: #16141b;
  --text: #fafafa;
  --text-2: #d4d4d8;
  --muted: #a1a1aa;
  --faint: #71717a;
  --border: #25222c;
  --border-strong: #2e2a36;
  --hover: #1f1c26;
  --dark-btn: #fafafa;
  --dark-btn-text: #18181b;
  --grad-soft: linear-gradient(135deg, #2a1624, #1d1830);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
::selection { background: var(--pink); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #d4d4d8; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }
.dark ::-webkit-scrollbar-thumb { background: #2e2a36; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
svg.i { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
[data-icon] { display: inline-flex; align-items: center; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; }
.utility { background: #0c0a0f; color: #fff; border-bottom: 1px solid rgba(255,255,255,.05); }
.utility-row { height: 40px; display: flex; align-items: center; justify-content: space-between; }
.utility-note { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #d4d4d8; }
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--pink-soft); }
.pulse::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--pink-soft); animation: ping 1.4s cubic-bezier(0,0,.2,1) infinite; }
@keyframes ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }
.utility-right { display: flex; align-items: center; gap: 16px; }
.utility-link { font-size: 12px; font-weight: 600; color: #d4d4d8; transition: color .2s; }
.utility-link:hover { color: #fff; }
.utility-cta { background: var(--grad); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 4px 14px; border-radius: 999px; transition: filter .2s; }
.utility-cta:hover { filter: brightness(1.08); }

.navbar { background: color-mix(in srgb, var(--surface) 90%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.navbar-row { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
/* Logo navbarın altına hafifçe taşan bir rozet gibi durur. */
.logo-img { height: 100px; margin: 6px 0 -40px; width: auto; display: block; filter: drop-shadow(0 4px 10px rgba(200, 110, 180, .18)); transition: transform .3s cubic-bezier(.16,1,.3,1); }
.logo:hover .logo-img { transform: scale(1.06) rotate(-3deg); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { display: flex; align-items: center; gap: 6px; white-space: nowrap; border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 700; color: var(--muted); transition: all .2s; }
.nav-link:hover { background: var(--hover); color: var(--text); }
.nav-link.active { background: var(--grad); color: #fff; box-shadow: var(--accent-shadow); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn { position: relative; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--border-strong); color: var(--muted); font-size: 17px; transition: all .2s; }
.icon-btn:hover { border-color: rgba(200,110,225,.5); color: var(--pink); }
.icon-btn.round { border-radius: 999px; }
#themeToggle svg { transition: transform .4s cubic-bezier(.16,1,.3,1); }
#themeToggle:hover svg { transform: rotate(-20deg); }
.text-btn { display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--border-strong); font-size: 13px; font-weight: 700; color: var(--text-2); transition: all .2s; white-space: nowrap; }
.text-btn:hover { border-color: rgba(200,110,225,.5); color: var(--pink); }
.text-btn.solid { background: var(--dark-btn); color: var(--dark-btn-text); border-color: transparent; }
.text-btn.solid:hover { background: var(--grad); color: #fff; }
.count-pill { min-width: 20px; height: 20px; padding: 0 6px; display: inline-grid; place-items: center; border-radius: 999px; background: var(--grad); color: #fff; font-size: 11px; font-weight: 800; }
.count-pill.bump { animation: bump .35s ease; }
@keyframes bump { 50% { transform: scale(1.35); } }

.show-mobile { display: none; }
.mobile-menu { background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu .nav-link { padding: 12px; border-radius: 10px; font-size: 14px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 999px; font-size: 14px; font-weight: 700; transition: all .2s; white-space: nowrap; }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--accent-shadow); }
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 8px 24px rgba(200,110,225,.4); }
.btn-ghost { border: 1px solid var(--border-strong); color: var(--text-2); background: color-mix(in srgb, var(--surface) 70%, transparent); }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn-dark { background: var(--dark-btn); color: var(--dark-btn-text); }
.btn-dark:hover { background: var(--grad); color: #fff; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; min-height: calc(100vh - 112px); display: flex; align-items: center; background: linear-gradient(180deg, var(--bg) 0%, #fcf1f9 55%, #f3ebff 100%); }
.dark .hero { background: linear-gradient(180deg, var(--bg) 0%, #1a1019 55%, #17122a 100%); }
/* ---------- Hero arka plan sahnesi (60 sn döngü) ---------- */
.hero-scene { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-scene svg, .hero-scene .balloon, .hero-scene .walker { will-change: transform; }
.hero-veil { position: absolute; inset: 0; background: rgba(255, 255, 255, .5); pointer-events: none; }
.dark .hero-veil { background: rgba(11, 10, 14, .55); }

.cloud { position: absolute; left: 0; fill: #f1e6ff; filter: drop-shadow(0 6px 12px rgba(180, 130, 220, .28)); animation: drift 60s linear infinite; }
.dark .cloud { fill: #3a2d4f; filter: none; }
.c1 { top: 8%;  width: 200px; height: 100px; animation-delay: -6s; }
.c2 { top: 22%; width: 130px; height: 65px;  animation-duration: 30s; animation-delay: -21s; opacity: .8; }
.c3 { top: 38%; width: 240px; height: 120px; animation-delay: -34s; }
.c4 { top: 14%; width: 110px; height: 55px;  animation-duration: 30s; animation-delay: -4s; opacity: .7; }
.c5 { top: 52%; width: 160px; height: 80px;  animation-delay: -50s; opacity: .85; }
@keyframes drift { from { transform: translateX(-280px); } to { transform: translateX(calc(100vw + 40px)); } }

.balloon { position: absolute; bottom: -140px; width: 54px; height: 108px; animation: rise 30s linear infinite; }
.balloon svg { width: 100%; height: 100%; animation: sway 5s ease-in-out infinite alternate; transform-origin: 50% 0; }
.b1 { left: 7%;  color: #f9a8d4; }
.b2 { left: 34%; color: #c4b5fd; animation-delay: -7.5s; width: 44px; height: 88px; }
.b3 { left: 63%; color: #f0abfc; animation-delay: -15s; }
.b4 { left: 88%; color: #ddd6fe; animation-delay: -22.5s; width: 40px; height: 80px; }
.b2 svg { animation-delay: -2s; } .b4 svg { animation-delay: -3.5s; }
@keyframes rise { from { transform: translateY(0); } to { transform: translateY(calc(-100vh - 260px)); } }
@keyframes sway { from { transform: rotate(-7deg); } to { transform: rotate(7deg); } }

.spark { position: absolute; font-size: 18px; color: var(--pink-soft); animation: twinkle 3s ease-in-out infinite alternate; }
.k1 { top: 12%; left: 42%; } .k2 { top: 30%; left: 18%; color: #f9a8d4; animation-delay: -1s; }
.k3 { top: 62%; left: 48%; color: #c4b5fd; animation-delay: -2s; } .k4 { top: 18%; left: 74%; color: #f0abfc; animation-delay: -.5s; }
.k5 { top: 46%; left: 92%; animation-delay: -1.6s; } .k6 { top: 70%; left: 4%; color: #c4b5fd; animation-delay: -2.4s; }
@keyframes twinkle { from { opacity: .25; transform: scale(.7) rotate(0); } to { opacity: 1; transform: scale(1.15) rotate(20deg); } }

.walker { position: absolute; left: 0; bottom: 64px; width: 84px; animation: walk 60s linear infinite; }
.walker svg { width: 100%; height: auto; display: block; }
.walker::after { content: ""; position: absolute; left: 20%; right: 20%; bottom: -6px; height: 8px; border-radius: 50%; background: rgba(150, 90, 170, .18); animation: shadow .7s ease-in-out infinite alternate; }
.hop { animation: hop .7s ease-in-out infinite alternate; }
.w2 { animation-delay: -20s; width: 76px; } .w2 .hop, .w2::after { animation-duration: .55s; }
.w3 { animation-delay: -40s; width: 78px; } .w3 .hop, .w3::after { animation-duration: .8s; }
@keyframes walk { from { transform: translateX(-140px); } to { transform: translateX(calc(100vw + 40px)); } }
@keyframes hop { from { transform: translateY(0) rotate(-5deg); } to { transform: translateY(-18px) rotate(5deg); } }
@keyframes shadow { from { transform: scaleX(1); opacity: 1; } to { transform: scaleX(.7); opacity: .5; } }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 110px; pointer-events: none; }
.hero-wave .wave-back { opacity: .35; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(130px); pointer-events: none; }
.hero-glow.a { width: 480px; height: 480px; top: -120px; right: 0; background: rgba(200,110,225,.16); }
.hero-glow.b { width: 420px; height: 420px; bottom: -160px; left: -80px; background: rgba(167,139,250,.18); }
.hero-grid { position: relative; z-index: 1; width: 100%; display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; padding-top: 72px; padding-bottom: 150px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 999px; border: 1px solid var(--border-strong); background: color-mix(in srgb, var(--surface) 70%, transparent); font-size: 12px; font-weight: 600; letter-spacing: .14em; color: var(--text-2); margin-bottom: 32px; }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.hero-title { margin: 0; font-size: clamp(56px, 8.5vw, 112px); font-weight: 900; line-height: .95; letter-spacing: -.02em; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 6px; }
.hero-title .line > span { display: block; }
.hero-tagline { margin: 24px 0 0; font-size: 18px; font-weight: 500; color: var(--text-2); }
.hero-desc { margin: 16px 0 0; max-width: 460px; font-size: 14px; line-height: 1.7; color: var(--muted); }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { margin-top: 44px; display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats b { font-size: 22px; font-weight: 900; }
.hero-stats span { font-size: 12px; color: var(--muted); font-weight: 500; }

.hero-visual { position: relative; display: flex; justify-content: center; perspective: 1000px; }
.hero-visual::before { content: ""; position: absolute; top: 50%; left: 50%; width: 320px; height: 320px; transform: translate(-50%,-50%); border-radius: 50%; background: rgba(180,130,245,.25); filter: blur(110px); }
.hero-card { position: relative; width: min(420px, 100%); border-radius: 32px; overflow: hidden; border: 1px solid var(--border); background: var(--surface); box-shadow: 0 30px 80px rgba(80, 20, 70, .18); transition: transform .25s ease-out, box-shadow .3s; animation: bob 6s ease-in-out infinite; transform-style: preserve-3d; }
.hero-card:hover { box-shadow: 0 35px 90px rgba(200,110,225,.25); }
@keyframes bob { 50% { translate: 0 -12px; } }
.hero-card-art { position: relative; aspect-ratio: 1; display: grid; place-items: center; background: linear-gradient(145deg, #fce7f3, #f3e8ff 60%, #ede9fe); }
.dark .hero-card-art { background: linear-gradient(145deg, #3a1d33, #2a2140 60%, #1f1b33); }
.hero-emoji { font-size: 190px; filter: drop-shadow(0 20px 30px rgba(120,40,100,.25)); }
.float { position: absolute; font-size: 38px; animation: bob 4s ease-in-out infinite; }
.f1 { top: 14%; left: 14%; }
.f2 { top: 20%; right: 14%; animation-delay: -1.3s; }
.f3 { bottom: 16%; right: 20%; animation-delay: -2.4s; font-size: 30px; }
.hero-card-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 20px; border-top: 1px solid rgba(200,110,225,.2); font-size: 14px; font-weight: 800; color: var(--pink-dark); transition: all .25s; }
.dark .hero-card-cta { color: var(--pink-soft); }
.hero-card-cta:hover { background: var(--grad); color: #fff !important; }
.hero-pill { position: absolute; display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border-strong); background: color-mix(in srgb, var(--surface) 88%, transparent); backdrop-filter: blur(10px); font-size: 12px; font-weight: 600; color: var(--text-2); }
.hero-pill.left { left: -8px; bottom: 64px; }
.hero-pill.left [data-icon] { color: #10b981; }
.hero-pill.right { right: -4px; top: 36px; border-color: rgba(200,110,225,.35); color: var(--pink-dark); }
.dark .hero-pill.right { color: var(--pink-soft); }

/* Giriş animasyonları */
.reveal { opacity: 0; transform: translateY(16px); animation: fadeUp .7s cubic-bezier(.16,1,.3,1) forwards; }
.reveal-up { transform: translateY(110%); animation: slideUp .9s cubic-bezier(.16,1,.3,1) .15s forwards; }
.reveal-up.d1 { animation-delay: .29s; }
.d2 { animation-delay: .55s; } .d3 { animation-delay: .7s; } .d4 { animation-delay: .85s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes slideUp { to { transform: none; } }
.inview { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.inview.shown { opacity: 1; transform: none; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: linear-gradient(90deg, #f472b6 0%, #d98ae8 50%, #a78bfa 100%); color: #fff; padding: 14px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { font-size: 14px; font-weight: 800; letter-spacing: .14em; padding: 0 28px; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
/* Şeridin altından sayfa zeminine yumuşak lila-pembe geçiş. */
.section-soft { background: linear-gradient(180deg, #efe6fd 0%, #fbeff8 180px, var(--bg) 420px); }
.dark .section-soft { background: linear-gradient(180deg, #1b1430 0%, #1a1019 180px, var(--bg) 420px); }
.eyebrow { display: inline-block; margin: 0 0 12px; font-size: 12px; font-weight: 700; letter-spacing: .25em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-title { margin: 0; font-size: clamp(34px, 5vw, 48px); font-weight: 900; letter-spacing: -.01em; }
.section-desc { margin: 12px 0 0; color: var(--muted); max-width: 520px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.collections { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.collection { position: relative; text-align: left; overflow: hidden; border-radius: 20px; border: 1px solid var(--border); background: var(--surface); transition: all .3s; }
.collection:hover { transform: translateY(-6px); border-color: rgba(200,110,225,.5); box-shadow: var(--accent-glow); }
.collection-art { height: 170px; display: grid; place-items: center; font-size: 84px; background: var(--grad-soft); transition: transform .5s; }
.collection:hover .collection-art { transform: scale(1.05); }
.collection-body { padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.collection h3 { margin: 0; font-size: 18px; font-weight: 700; }
.collection p { margin: 4px 0 0; font-size: 14px; color: var(--muted); }
.collection .count { position: absolute; top: 16px; right: 16px; border-radius: 999px; background: color-mix(in srgb, var(--surface) 85%, transparent); padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--pink-dark); }
.dark .collection .count { color: var(--pink-soft); }
.arrow-btn { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border-strong); transition: all .2s; }
.collection:hover .arrow-btn { background: var(--grad); color: #fff; border-color: transparent; }

.sort { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--muted); }
.sort select { font: inherit; font-weight: 600; color: var(--text); background: var(--surface); border: 1px solid var(--border-strong); border-radius: 999px; padding: 9px 16px; outline: none; cursor: pointer; }
.sort select:focus { border-color: var(--pink); }

.cats { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 8px; }
.cat { border-radius: 999px; padding: 10px 20px; font-size: 14px; font-weight: 700; border: 1px solid var(--border-strong); color: var(--muted); transition: all .2s; }
.cat:hover { border-color: rgba(200,110,225,.5); color: var(--text); }
.cat.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 0 16px rgba(200,110,225,.3); }

.products { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { position: relative; display: flex; flex-direction: column; border-radius: 20px; border: 1px solid var(--border); background: var(--surface); overflow: hidden; transition: all .3s; }
.card:hover { transform: translateY(-4px); border-color: rgba(200,110,225,.4); box-shadow: var(--accent-glow); }
.card.featured { border-color: rgba(200,110,225,.45); }
.card-art { position: relative; aspect-ratio: 1 / .86; display: grid; place-items: center; font-size: 92px; cursor: pointer; overflow: hidden; }
.card-art img { width: 100%; height: 100%; object-fit: cover; }
.card-art .emoji { transition: transform .4s cubic-bezier(.16,1,.3,1); filter: drop-shadow(0 10px 16px rgba(120,40,100,.18)); }
.card:hover .card-art .emoji { transform: scale(1.1) rotate(-4deg); }
/* Koyu temada pastel zemin karartılır, görsel parlak kalır. */
.dark .card-art::before, .dark .detail-art::before { content: ""; position: absolute; inset: 0; background: rgba(14, 10, 20, .58); }
.card-art > *, .detail-art > * { position: relative; }
.tags { position: absolute; top: 14px; left: 14px; right: 60px; display: flex; flex-wrap: wrap; gap: 6px; z-index: 1; }
.tag { border-radius: 999px; background: var(--grad); color: #fff; padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.tag.sale { background: #18181b; }
.dark .tag.sale { background: #fafafa; color: #18181b; }
.tag.static { letter-spacing: .1em; }
.low { color: #e11d48; letter-spacing: .04em; }
.add-btn:disabled { opacity: .45; cursor: not-allowed; background: var(--dark-btn); color: var(--dark-btn-text); }
.coupon-form { display: flex; gap: 8px; margin-bottom: 14px; }
.coupon-form input { flex: 1; min-width: 0; font: inherit; font-size: 13px; font-weight: 600; text-transform: uppercase; color: var(--text); background: var(--bg); border: 1px dashed var(--border-strong); border-radius: 999px; padding: 9px 14px; outline: none; }
.coupon-form input:focus { border-color: var(--pink); }
.coupon-applied { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding: 10px 14px; border-radius: 12px; background: var(--grad-soft); font-size: 13px; }
.discount-row { color: var(--pink); font-weight: 600; }
.fav-btn { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.85); color: #52525b; font-size: 16px; transition: all .2s; }
.fav-btn:hover { color: var(--pink); transform: scale(1.08); }
.fav-btn.on { color: var(--pink); }
.fav-btn.on svg { fill: var(--pink); }
.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--faint); }
.card h3 { margin: 6px 0 0; font-size: 17px; font-weight: 800; cursor: pointer; }
.card h3:hover { color: var(--pink); }
.card-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.price { font-size: 22px; font-weight: 900; }
.price.grad-text { display: inline-block; }
.old { margin-left: 6px; font-size: 13px; font-weight: 600; color: var(--faint); text-decoration: line-through; }
.card-foot .old { display: block; margin: 2px 0 0; }
.add-btn { white-space: nowrap; flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 10px 16px; font-size: 12px; font-weight: 700; background: var(--dark-btn); color: var(--dark-btn-text); transition: all .2s; }
.add-btn:hover { background: var(--grad); color: #fff; }
.add-btn:active { transform: scale(.95); }
.empty { margin-top: 48px; color: var(--muted); font-size: 14px; }

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { border-radius: 20px; border: 1px solid var(--border); background: var(--surface); padding: 24px; }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-soft); color: var(--pink); font-size: 22px; margin-bottom: 16px; }
.feature h4 { margin: 0; font-size: 16px; font-weight: 800; }
.feature p { margin: 6px 0 0; font-size: 14px; color: var(--muted); line-height: 1.6; }

.faq { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.faq details { border-radius: 16px; border: 1px solid var(--border); background: var(--surface); padding: 0 22px; transition: border-color .2s; }
.faq details[open] { border-color: rgba(200,110,225,.45); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-weight: 700; font-size: 15px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary [data-icon] { transition: transform .25s; color: var(--pink); }
.faq details[open] summary [data-icon] { transform: rotate(45deg); }
.faq details p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.newsletter { position: relative; overflow: hidden; border-radius: 28px; padding: 48px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.newsletter::after { content: "🎀"; position: absolute; right: -10px; bottom: -30px; font-size: 160px; opacity: .15; transform: rotate(-14deg); pointer-events: none; }
.newsletter h3 { margin: 0; font-size: 28px; font-weight: 900; }
.newsletter p { margin: 8px 0 0; opacity: .9; }
.newsletter-form { position: relative; z-index: 1; display: flex; gap: 8px; background: rgba(255,255,255,.18); padding: 6px; border-radius: 999px; backdrop-filter: blur(8px); flex: 0 1 460px; }
.newsletter-form input { flex: 1; min-width: 0; border: 0; outline: none; background: transparent; color: #fff; font: inherit; font-size: 14px; padding: 0 16px; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.8); }
.newsletter .btn-dark { background: #18181b; color: #fff; }
.newsletter .btn-dark:hover { background: #fff; color: var(--pink-dark); }

.footer { border-top: 1px solid var(--border); padding: 36px 0 28px; background: var(--surface); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.legal-links { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.legal-links a { font-size: 13px; font-weight: 600; color: var(--muted); transition: color .2s; }
.legal-links a:hover { color: var(--pink); }
.socials { display: flex; gap: 8px; }
.social { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--border-strong); color: var(--muted); font-size: 18px; transition: all .2s; }
.social:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
.footer-bottom { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 12px; color: var(--faint); }
.legal-card { width: min(620px, 100%); max-height: 86vh; overflow-y: auto; }
.legal-card h3 { padding-right: 40px; }
.legal-p { margin: 14px 0 0; font-size: 14px; line-height: 1.75; color: var(--text-2); }

/* ---------- Drawer / Modal ---------- */
.overlay { position: fixed; inset: 0; z-index: 60; background: rgba(10, 5, 15, .45); backdrop-filter: blur(3px); animation: fade .2s; }
@keyframes fade { from { opacity: 0; } }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 70; width: min(420px, 100%); display: flex; flex-direction: column; background: var(--surface); border-left: 1px solid var(--border); transform: translateX(100%); transition: transform .35s cubic-bezier(.16,1,.3,1); }
.drawer.open { transform: none; box-shadow: -20px 0 60px rgba(0,0,0,.15); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.drawer-head h3 { margin: 0; display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; }
.drawer-head h3 [data-icon] { color: var(--pink); }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer-foot { border-top: 1px solid var(--border); padding: 20px 24px; }
.shipping-bar { padding: 14px 24px; border-bottom: 1px solid var(--border); font-size: 12px; font-weight: 600; color: var(--muted); }
.shipping-bar b { color: var(--pink); }
.progress { margin-top: 8px; height: 6px; border-radius: 999px; background: var(--hover); overflow: hidden; }
.progress i { display: block; height: 100%; background: var(--grad); border-radius: inherit; transition: width .4s; }
.line-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.line-item:last-child { border-bottom: 0; }
.thumb { width: 68px; height: 68px; flex-shrink: 0; border-radius: 14px; display: grid; place-items: center; font-size: 34px; overflow: hidden; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.line-info { flex: 1; min-width: 0; }
.line-info h4 { margin: 0; font-size: 14px; font-weight: 700; }
.line-info .muted { font-size: 12px; color: var(--muted); }
.line-row { margin-top: 10px; display: flex; align-items: center; justify-content: space-between; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border-strong); border-radius: 999px; }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; font-size: 13px; color: var(--muted); }
.qty button:hover { color: var(--pink); }
.qty span { min-width: 22px; text-align: center; font-size: 13px; font-weight: 700; }
.remove { font-size: 12px; font-weight: 600; color: var(--faint); }
.remove:hover { color: #ef4444; }
.totals { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; font-size: 14px; color: var(--muted); }
.totals div { display: flex; justify-content: space-between; }
.totals .grand { color: var(--text); font-size: 18px; font-weight: 900; padding-top: 8px; border-top: 1px dashed var(--border-strong); }
.drawer-empty { text-align: center; padding: 60px 8px; color: var(--muted); font-size: 14px; }
.drawer-empty .big { font-size: 56px; margin-bottom: 12px; }
.drawer-empty .btn { margin-top: 20px; }
.fav-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.fav-row .line-info { cursor: pointer; }

.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 16px; background: rgba(10,5,15,.5); backdrop-filter: blur(4px); animation: fade .2s; overflow-y: auto; }
.modal.top { align-items: start; padding-top: 12vh; }
.modal-card { position: relative; width: min(480px, 100%); border-radius: 24px; background: var(--surface); border: 1px solid var(--border); padding: 28px; animation: pop .3s cubic-bezier(.16,1,.3,1); }
.modal-card.wide { width: min(880px, 100%); padding: 0; overflow: hidden; }
@keyframes pop { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.modal-close { position: absolute; top: 16px; right: 16px; z-index: 2; background: var(--surface); }
.detail { display: grid; grid-template-columns: 1fr 1fr; }
.detail-art { position: relative; display: grid; place-items: center; font-size: 170px; min-height: 380px; }
.detail-art img { width: 100%; height: 100%; object-fit: cover; }
.detail-info { padding: 36px 32px 32px; display: flex; flex-direction: column; }
.detail-info h2 { margin: 6px 0 0; font-size: 30px; font-weight: 900; line-height: 1.1; }
.detail-info .desc { margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.specs { margin: 20px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--text-2); }
.specs li { display: flex; align-items: center; gap: 8px; }
.specs [data-icon] { color: var(--pink); }
.detail-buy { margin-top: auto; padding-top: 24px; display: flex; gap: 10px; align-items: center; }
.detail-buy .qty button { width: 38px; height: 44px; }
.detail-buy .btn { flex: 1; }

.search-card { width: min(640px, 100%); padding: 10px; }
.search-row { display: flex; align-items: center; gap: 12px; padding: 4px 4px 4px 14px; font-size: 18px; color: var(--muted); }
.search-row input { flex: 1; border: 0; outline: none; background: transparent; font: inherit; font-size: 16px; color: var(--text); padding: 10px 0; }
.search-results { max-height: 50vh; overflow-y: auto; }
.search-results:not(:empty) { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 6px; }
.search-hit { width: 100%; display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 12px; text-align: left; }
.search-hit:hover, .search-hit:focus { background: var(--hover); outline: none; }
.search-hit .thumb { width: 44px; height: 44px; font-size: 22px; border-radius: 10px; }
.search-hit b { display: block; font-size: 14px; }
.search-hit small { color: var(--muted); font-size: 12px; }
.search-hit .price { margin-left: auto; font-size: 14px; }
.search-empty { padding: 18px; color: var(--muted); font-size: 14px; text-align: center; }

.form { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700; color: var(--text-2); }
.form input, .form textarea { font: inherit; font-size: 14px; font-weight: 500; color: var(--text); background: var(--bg); border: 1px solid var(--border-strong); border-radius: 12px; padding: 11px 14px; outline: none; transition: border-color .2s; resize: vertical; }
.form input:focus, .form textarea:focus { border-color: var(--pink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-card h3 { margin: 0; font-size: 22px; font-weight: 900; }
.modal-card .sub { margin: 6px 0 0; font-size: 14px; color: var(--muted); }
.note { margin-top: 4px; font-size: 12px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; padding: 12px; border-radius: 12px; background: var(--grad-soft); }
.success { text-align: center; padding: 12px 0 4px; }
.success .big { font-size: 64px; }

.toasts { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 90; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 14px; background: #18181b; color: #fff; font-size: 13px; font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,.25); animation: toastIn .35s cubic-bezier(.16,1,.3,1); }
.toast [data-icon] { color: var(--pink-soft); }
.toast.out { opacity: 0; transform: translateY(8px); transition: all .25s; }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } }

/* ---------- Sayfalar (her bölüm kendi adresinde) ---------- */
.page-head { padding: 44px 0 36px; background: linear-gradient(180deg, #fbf0f9 0%, var(--bg) 100%); border-bottom: 1px solid var(--border); }
.dark .page-head { background: linear-gradient(180deg, #1a1220 0%, var(--bg) 100%); }
/* Navbar'dan taşan logo, konum çubuğunun üstüne binmesin. */
.page-head.slim { padding: 46px 0 16px; }
.page-head .section-title { font-size: clamp(30px, 4.4vw, 44px); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 14px; font-size: 13px; font-weight: 600; color: var(--muted); }
.page-head.slim .crumbs { margin-bottom: 0; }
.crumbs a:hover { color: var(--pink); }
.crumbs span:last-child { color: var(--text-2); }
.crumbs .sep { color: var(--faint); }
.page-body { padding: 36px 0 88px; }
.section-title.small { font-size: 26px; }
.empty-state { text-align: center; padding: 64px 16px; color: var(--muted); }
.empty-state .big { font-size: 64px; margin-bottom: 10px; }
.empty-state p { margin: 0 0 22px; font-size: 15px; }
.back-link { display: block; margin-top: 14px; text-align: center; font-size: 13px; font-weight: 600; color: var(--muted); }
.back-link:hover { color: var(--pink); }

/* Ürün listesi */
.shop-toolbar { display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.search-box { flex: 1 1 280px; max-width: 420px; display: flex; align-items: center; gap: 10px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--border-strong); background: var(--surface); color: var(--muted); transition: border-color .2s; }
.search-box:focus-within { border-color: var(--pink); }
.search-box input { flex: 1; min-width: 0; border: 0; outline: none; background: transparent; font: inherit; font-size: 14px; color: var(--text); padding: 11px 0; }
.cats { margin-top: 20px; }
a.cat { display: inline-block; }
.card h3 a:hover { color: var(--pink); }

/* Ürün sayfası */
.product-page { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.product-media { position: relative; }
.product-media .detail-art { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 1; min-height: 0; border: 1px solid var(--border); }
.product-media .tags { top: 18px; left: 18px; }
.product-page .detail-info { padding: 8px 0 0; }
.product-page h1 { margin: 4px 0 0; font-size: clamp(30px, 3.6vw, 42px); font-weight: 900; line-height: 1.08; }
.product-price { margin-top: 16px; }
.save-note { margin: 6px 0 0; font-size: 13px; font-weight: 700; color: var(--pink); }
.fav-big { width: 50px; height: 50px; border-radius: 999px; font-size: 20px; flex-shrink: 0; }
.fav-big.on { color: var(--pink); border-color: rgba(200,110,225,.5); }
.fav-big.on svg { fill: var(--pink); }
.product-page .detail-buy { padding-top: 26px; margin-top: 0; }
.related { margin-top: 72px; }

/* Sepet ve ödeme */
.cart-grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; }
.card-a { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 24px; }
.card-a h3 { margin: 0; font-size: 17px; font-weight: 800; }
.card-a .hint { margin: 6px 0 0; font-size: 14px; color: var(--muted); line-height: 1.6; }
.cart-lines { padding: 8px 24px; }
.cart-lines .shipping-bar { padding: 16px 0; margin-bottom: 4px; }
.line-info h4 a:hover { color: var(--pink); }
.summary { position: sticky; top: 132px; }
.summary h3 { margin: 0 0 16px; font-size: 18px; }
.mini-lines { list-style: none; margin: 0 0 16px; padding: 0 0 14px; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.mini-lines li { display: flex; justify-content: space-between; gap: 12px; }
.form.card-a { margin-top: 0; }
.form .check-line { flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 600; font-size: 13px; color: var(--text-2); }
.form .check-line input { width: auto; margin-top: 2px; }
.check-line a { color: var(--pink); text-decoration: underline; }
.order-result { padding: 28px; }

/* İletişim ve yasal sayfalar */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-grid .feature-icon { margin-bottom: 14px; }
.legal-page { padding: 32px; }
.legal-page .legal-p:first-child { margin-top: 0; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.legal-nav a { border: 1px solid var(--border-strong); border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 700; color: var(--muted); transition: all .2s; }
.legal-nav a:hover { border-color: var(--pink); color: var(--pink); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .products { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .product-page, .cart-grid { grid-template-columns: 1fr; gap: 28px; }
  .summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .show-mobile { display: grid; }
  .hide-mobile { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-visual { display: none; }
  .collections { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .page-head.slim { padding-top: 18px; }
  .container { padding: 0 16px; }
  .products { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-art { font-size: 64px; }
  .card-body { padding: 14px; }
  .card h3 { font-size: 15px; }
  .price { font-size: 18px; }
  .card-foot { flex-direction: column; align-items: stretch; }
  .add-btn { justify-content: center; }
  .collections { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .detail { grid-template-columns: 1fr; }
  .detail-art { min-height: 240px; font-size: 120px; }
  .detail-info { padding: 24px; }
  .newsletter { padding: 32px 24px; }
  .newsletter-form { flex-basis: 100%; }
  .hide-sm { display: none; }
  .nav-actions { gap: 6px; }
  .icon-btn { width: 38px; height: 38px; }
  .logo-img { height: 64px; margin: 0; }
  .form-row { grid-template-columns: 1fr; }
  .text-btn { padding: 0 14px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
