/* ───── Playful Marketplace — Sarı Etiket ───── */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --y: #FFD60A;
  --y-2: #FFE600;
  --y-3: #FFC700;
  --y-soft: #FFF3B0;
  --y-bg: #FFFBE6;
  --pink: #FFB3C7;
  --pink-soft: #FFE0E9;
  --lila: #C9B8FF;
  --lila-soft: #EDE5FF;
  --mint: #B8F2D9;
  --mint-soft: #E0F8EC;
  --orange: #FFB066;
  --orange-soft: #FFE8D2;
  --ink: #1A1A1A;
  --gray-700: #525252;
  --gray-500: #737373;
  --gray-400: #A3A3A3;
  --gray-300: #D4D4D4;
  --gray-100: #F5F5F5;
  --paper: #FFFEF8;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: italic; font-weight: inherit; }
.hl { background: var(--y); padding: 0 6px; border-radius: 6px; }
.hl-curve {
  position: relative; display: inline-block;
}
.hl-curve::after {
  content: ""; position: absolute;
  left: -4px; right: -4px; bottom: -4px;
  height: 12px;
  background: var(--y);
  z-index: -1;
  border-radius: 100px;
  transform: rotate(-1deg);
}

/* ───── Confetti container ───── */
.confetti {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 2px;
  animation: confettiFall 1.4s ease-out forwards;
}
@keyframes confettiFall {
  0% { transform: translate(var(--x0), var(--y0)) rotate(0); opacity: 1; }
  100% { transform: translate(var(--x1), var(--y1)) rotate(var(--rot)); opacity: 0; }
}

/* ───── Header ───── */
.hd {
  position: sticky; top: 16px;
  margin: 16px 24px 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 100px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.12), 0 1px 0 rgba(0,0,0,0.04);
}
.hd-back {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--gray-100);
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  transition: background .2s, transform .2s;
}
.hd-back:hover { background: var(--ink); color: var(--y); transform: translateX(-3px); }
.hd-logo { display: flex; align-items: center; gap: 8px; }
.hd-mark {
  width: 32px; height: 32px;
  background: var(--y);
  color: var(--ink);
  border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 900; font-size: 13px;
  letter-spacing: -0.02em;
  transform: rotate(-6deg);
  box-shadow: 0 4px 0 -1px var(--y-3), 0 6px 14px -4px rgba(255,214,10,0.5);
}
.hd-name {
  font-weight: 900; font-size: 17px;
  letter-spacing: -0.02em;
}
.hd-emoji {
  display: inline-block;
  animation: heart 1.6s ease-in-out infinite;
}
@keyframes heart { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }

.hd-nav {
  display: flex; gap: 4px;
  justify-content: center;
}
.hd-nav a {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  transition: background .2s, transform .25s;
}
.hd-nav a:hover { background: var(--gray-100); transform: translateY(-2px); }
.hd-nav a.active { background: var(--y); color: var(--ink); }

.hd-r { display: flex; gap: 8px; }
.hd-search {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: var(--gray-100);
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  transition: background .2s;
}
.hd-search:hover { background: var(--y); }
.hd-cart {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--y);
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  transition: transform .25s, background .2s;
}
.hd-cart:hover { background: var(--y); color: var(--ink); transform: translateY(-2px); }
.hd-cart-num {
  background: var(--y);
  color: var(--ink);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.hd-cart:hover .hd-cart-num { background: var(--ink); color: var(--y); }

/* ───── HERO ───── */
.hero {
  position: relative;
  padding: 80px 40px 100px;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.blob-1 { width: 500px; height: 500px; top: -100px; left: -100px; background: var(--y); opacity: 0.4; animation: blob1 12s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; bottom: -100px; right: -50px; background: var(--pink); opacity: 0.5; animation: blob1 14s ease-in-out infinite reverse; }
.blob-3 { width: 350px; height: 350px; top: 30%; left: 35%; background: var(--lila-soft); opacity: 0.6; animation: blob1 18s ease-in-out infinite; animation-delay: -5s; }
@keyframes blob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}
.dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  z-index: 0; pointer-events: none;
  opacity: 0.5;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--y);
  border-radius: 100px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.2);
  animation: tag-bounce 3s ease-in-out infinite;
}
@keyframes tag-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.tag-emoji {
  display: inline-block;
  animation: spin 3s ease-in-out infinite;
}
@keyframes spin {
  0%, 100% { transform: rotate(0); }
  50% { transform: rotate(20deg); }
}

.hero-h {
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  position: relative;
}
.word-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 18px;
  margin: 4px 4px;
  position: relative;
  transform: rotate(-2deg);
  transition: transform .3s cubic-bezier(.5,1.5,.5,1);
}
.word-badge:hover { transform: rotate(2deg) scale(1.05); }
.word-badge-1 { background: var(--pink); color: var(--ink); box-shadow: 0 6px 0 -1px #E89AAF, 0 10px 20px -6px rgba(255,179,199,0.6); }
.word-badge-2 {
  background: var(--y);
  color: var(--ink);
  font-size: 1.05em;
  box-shadow: 0 6px 0 -1px var(--y-3), 0 10px 20px -6px rgba(255,214,10,0.6);
  transform: rotate(2deg);
}
.word-emoji {
  display: inline-block;
  animation: confetti-spin 3s ease-in-out infinite;
}
@keyframes confetti-spin {
  0%, 100% { transform: rotate(0) scale(1); }
  50% { transform: rotate(15deg) scale(1.1); }
}
.hero-decor {
  position: absolute;
  bottom: -10px; left: 0;
  pointer-events: none;
  opacity: 0;
  animation: appear 1s ease forwards 1s;
}
@keyframes appear { to { opacity: 1; } }

.hero-p {
  margin-top: 28px;
  max-width: 480px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.55;
}
.hero-p em { color: var(--ink); font-style: normal; font-weight: 800; }

.hero-ctas {
  margin-top: 36px;
  display: flex; gap: 12px;
  flex-wrap: wrap;
}
.cta-primary, .cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 26px;
  border-radius: 100px;
  font-size: 15px; font-weight: 800;
  transition: transform .3s cubic-bezier(.4,1.5,.5,1), box-shadow .25s;
}
.cta-primary {
  background: var(--ink);
  color: var(--y);
  box-shadow: 0 6px 0 -1px var(--gray-700), 0 12px 24px -6px rgba(0,0,0,0.3);
}
.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 -1px var(--gray-700), 0 16px 28px -6px rgba(0,0,0,0.35); }
.cta-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 -1px var(--gray-700), 0 4px 10px -2px rgba(0,0,0,0.3); }
.cta-ghost {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 0 6px 0 -1px var(--ink);
}
.cta-ghost:hover { transform: translateY(-3px); background: var(--y); box-shadow: 0 9px 0 -1px var(--ink); }
.cta-ghost:active { transform: translateY(2px); box-shadow: 0 2px 0 -1px var(--ink); }
.cta-emoji { font-size: 18px; }
.cta-arrow { transition: transform .3s; }
.cta-primary:hover .cta-arrow { transform: translateX(4px) rotate(-15deg); }

.hero-meta {
  margin-top: 50px;
  display: flex; gap: 32px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex; gap: 12px; align-items: center;
  font-size: 13px;
  color: var(--gray-700);
}
.hero-meta-item strong { font-weight: 900; color: var(--ink); }
.hm-emoji-stack {
  display: flex;
}
.hm-emoji-stack span {
  width: 32px; height: 32px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px;
  margin-left: -8px;
  transition: transform .25s;
}
.hm-emoji-stack span:first-child { margin-left: 0; }
.hero-meta-item:hover .hm-emoji-stack span:nth-child(1) { transform: translateY(-3px); }
.hero-meta-item:hover .hm-emoji-stack span:nth-child(2) { transform: translateY(-3px); transition-delay: .05s; }
.hero-meta-item:hover .hm-emoji-stack span:nth-child(3) { transform: translateY(-3px); transition-delay: .1s; }
.hero-meta-item:hover .hm-emoji-stack span:nth-child(4) { transform: translateY(-3px); transition-delay: .15s; }
.hm-stars { font-size: 16px; }

/* Hero right — featured product card */
.hero-r {
  position: relative;
  display: flex; justify-content: center;
}
.hero-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 32px;
  padding: 16px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 12px 0 -2px var(--ink), 0 24px 60px -16px rgba(0,0,0,0.3);
  transition: transform .4s cubic-bezier(.4,1.5,.5,1);
  position: relative;
}
.hero-card:hover { transform: translateY(-6px) rotate(-2deg); }

.hero-card-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--gray-100);
}
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sticker {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--y);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px; font-weight: 800;
  border: 2px solid var(--ink);
  transform: rotate(8deg);
  box-shadow: 0 4px 0 -1px var(--ink);
  animation: sticker-bounce 2s ease-in-out infinite;
}
@keyframes sticker-bounce {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-4px); }
}
.hero-card-body { padding: 18px 8px 8px; }
.hero-card-brand {
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--gray-500); font-weight: 800;
  text-transform: uppercase;
}
.hero-card-body h3 {
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.hero-card-row {
  margin-top: 10px;
  display: flex; gap: 12px; align-items: baseline;
}
.hero-card-old { color: var(--gray-400); text-decoration: line-through; font-size: 14px; }
.hero-card-price { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.add-btn {
  margin-top: 16px;
  width: 100%;
  padding: 14px 20px;
  background: var(--y);
  color: var(--ink);
  border-radius: 16px;
  border: 2px solid var(--ink);
  font-size: 14px; font-weight: 800;
  display: inline-flex; gap: 10px; align-items: center; justify-content: center;
  box-shadow: 0 4px 0 -1px var(--ink);
  transition: transform .25s, box-shadow .25s;
}
.add-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 -1px var(--ink); }
.add-btn:active { transform: translateY(2px); box-shadow: 0 1px 0 -1px var(--ink); }
.add-emoji { transition: transform .3s; display: inline-block; }
.add-btn:hover .add-emoji { transform: scale(1.3) rotate(15deg); }

.hero-bubble {
  position: absolute;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 12px 16px;
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 6px 0 -1px var(--ink);
}
.hero-bubble-1 { top: 10%; left: -20px; background: var(--pink); transform: rotate(-8deg); animation: bubble-float 3.5s ease-in-out infinite; }
.hero-bubble-2 { bottom: 18%; right: -20px; background: var(--y); transform: rotate(6deg); animation: bubble-float 4s ease-in-out infinite -1.5s; }
@keyframes bubble-float {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-8px); }
}
.hero-bubble-2 { animation-name: bubble-float-2; }
@keyframes bubble-float-2 {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-8px); }
}
.bub-emoji { font-size: 22px; }

/* ───── Trust strip — kayan ───── */
.trust-strip {
  background: var(--ink);
  color: var(--y);
  padding: 14px 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  margin: 20px 0;
}
.trust-strip-track {
  display: flex; gap: 50px;
  animation: marq 32s linear infinite;
  white-space: nowrap;
  font-size: 14px; font-weight: 800;
  align-items: center;
}
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-strip-track > span { display: inline-flex; gap: 8px; align-items: center; }
.trust-strip-track .star-y { color: var(--y); font-size: 18px; }

/* ───── Section ───── */
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
}
.section-warm {
  background: var(--orange-soft);
  max-width: none;
  border-radius: 0;
  padding: 80px 40px;
}
.section-warm > * { max-width: 1320px; margin-left: auto; margin-right: auto; }

.sect-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 40px;
  flex-wrap: wrap; gap: 16px;
}
.kicker {
  display: inline-block;
  padding: 6px 14px;
  background: var(--y);
  color: var(--ink);
  border-radius: 100px;
  font-size: 13px; font-weight: 800;
  margin-bottom: 14px;
  transform: rotate(-2deg);
}
.sect-head h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.sect-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--y);
  border-radius: 100px;
  font-size: 14px; font-weight: 800;
  transition: gap .3s, background .2s, transform .25s;
}
.sect-link:hover { gap: 14px; background: var(--y); color: var(--ink); transform: translateY(-2px); }
.sect-link span { font-size: 16px; }
.hot-counter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 4px 0 -1px var(--ink);
}
.hot-emoji { font-size: 18px; animation: spin 2s ease-in-out infinite; }

/* ───── Categories ───── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 24px;
  padding: 24px;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.4,1.5,.5,1);
  box-shadow: 0 6px 0 -1px var(--ink);
  overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 170px;
}
.cat-card:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 10px 0 -1px var(--ink); }
.cat-card:active { transform: translateY(2px); box-shadow: 0 2px 0 -1px var(--ink); }
.cat-card:nth-child(8n+1) { background: var(--y); }
.cat-card:nth-child(8n+3) { background: var(--pink-soft); }
.cat-card:nth-child(8n+5) { background: var(--mint-soft); }
.cat-card:nth-child(8n+7) { background: var(--lila-soft); }
.cat-emoji {
  font-size: 38px;
  display: inline-block;
  transition: transform .4s cubic-bezier(.5,1.5,.5,1);
}
.cat-card:hover .cat-emoji { transform: rotate(-15deg) scale(1.15); }
.cat-name {
  font-size: 18px; font-weight: 900;
  letter-spacing: -0.02em;
}
.cat-count {
  font-size: 12px; color: var(--gray-500);
  margin-top: auto;
}
.cat-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px;
  background: var(--ink); color: var(--y);
  border-radius: 50%;
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity .35s, transform .35s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: rotate(-45deg); }

/* ───── Campaigns ───── */
.camp-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.camp-grid .camp:nth-child(1) { grid-row: span 2; }
.camp-grid .camp:nth-child(4) { grid-column: span 2; }

.camp {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.4,1.5,.5,1);
  background: var(--gray-100);
  box-shadow: 0 6px 0 -1px var(--ink);
}
.camp:hover { transform: translateY(-4px); box-shadow: 0 10px 0 -1px var(--ink); }
.camp img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.camp:hover img { transform: scale(1.06) rotate(-1deg); }
.camp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.05) 50%, transparent);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: end;
  color: var(--paper);
}
.camp-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--y); color: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
  border: 2px solid var(--ink);
  box-shadow: 0 3px 0 -1px var(--ink);
  transform: rotate(-3deg);
}
.camp-brand {
  font-size: 11px; letter-spacing: 0.14em;
  font-weight: 800; opacity: 0.9;
  margin-bottom: 4px;
}
.camp-title {
  font-weight: 900; font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.camp:nth-child(1) .camp-title { font-size: 38px; }
.camp-foot {
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: end;
}
.camp-discount {
  background: var(--y); color: var(--ink);
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 900; font-size: 13px;
  border: 2px solid var(--ink);
}
.camp-end {
  font-size: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ───── Products ───── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prod-card {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.4,1.5,.5,1);
  box-shadow: 0 5px 0 -1px var(--ink);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-4px) rotate(-0.5deg); box-shadow: 0 9px 0 -1px var(--ink); }

.prod-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--y-soft);
  border-bottom: 2.5px solid var(--ink);
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.prod-card:hover .prod-img img { transform: scale(1.07); }

.prod-disc {
  position: absolute; top: 12px; left: 12px;
  background: var(--y);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 12px; font-weight: 900;
  border: 2px solid var(--ink);
  font-variant-numeric: tabular-nums;
  transform: rotate(-3deg);
  box-shadow: 0 3px 0 -1px var(--ink);
}
.prod-fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s, transform .25s;
  box-shadow: 0 3px 0 -1px var(--ink);
}
.prod-fav:hover { transform: scale(1.1); }
.prod-fav:active { transform: scale(0.9); }
.prod-fav.on { background: #FFE0E9; }
.prod-fav.on svg { fill: #ef4444; stroke: #ef4444; animation: heartPop .5s cubic-bezier(.4,1.5,.5,1); }
@keyframes heartPop {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.prod-stock {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--ink);
  color: var(--y);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
  display: none;
}
.prod-stock.show { display: block; }
.prod-stock::before { content: "🔥 "; }

.prod-info { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.prod-brand {
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--gray-500); text-transform: uppercase;
  font-weight: 800;
}
.prod-title {
  font-size: 14px; font-weight: 800;
  margin-top: 4px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  flex: 1;
}
.prod-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px dashed var(--gray-300);
  display: flex; justify-content: space-between; align-items: baseline;
}
.prod-prices { display: flex; flex-direction: column; }
.prod-price { font-weight: 900; font-size: 17px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.prod-old { color: var(--gray-400); text-decoration: line-through; font-size: 12px; }
.prod-rate {
  font-size: 12px;
  background: var(--y);
  padding: 4px 8px;
  border-radius: 100px;
  font-weight: 800;
}

/* ───── VIP — Gamified ───── */
.vip-section {
  position: relative;
  padding: 100px 40px;
  background: var(--y-bg);
  margin: 60px 0;
  overflow: hidden;
}
.vip-blob-1 { width: 500px; height: 500px; top: -200px; right: -100px; background: var(--y); opacity: 0.3; }
.vip-blob-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; background: var(--pink); opacity: 0.4; }
.blob-yellow { background: var(--y); }
.blob-pink { background: var(--pink); }
.vip-head {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.vip-head h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}
.vip-head p {
  margin-top: 16px;
  color: var(--gray-700);
}
.vip-grid {
  position: relative; z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.vip-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 32px 28px;
  text-align: center;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.4,1.5,.5,1);
  box-shadow: 0 8px 0 -1px var(--ink);
  position: relative;
}
.vip-card:hover { transform: translateY(-6px); box-shadow: 0 14px 0 -1px var(--ink); }
.vip-card.featured {
  background: var(--ink); color: var(--paper);
  transform: scale(1.05);
}
.vip-card.featured:hover { transform: scale(1.05) translateY(-6px); }
.vip-card.featured::before {
  content: "🌟 EN POPÜLER";
  position: absolute; top: -16px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--y); color: var(--ink);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px; font-weight: 900;
  border: 2.5px solid var(--ink);
  box-shadow: 0 4px 0 -1px var(--ink);
  white-space: nowrap;
}
.vip-medal {
  font-size: 56px;
  display: inline-block;
  transition: transform .4s cubic-bezier(.5,1.5,.5,1);
}
.vip-card:hover .vip-medal { transform: rotate(-15deg) scale(1.15); }
.vip-tier {
  font-size: 26px; font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.vip-price {
  font-size: 18px; font-weight: 800;
  color: var(--y);
  margin-top: 6px;
}
.vip-card:not(.featured) .vip-price { color: var(--ink); }
.vip-card ul {
  list-style: none;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 2px dashed currentColor;
  text-align: left;
}
.vip-card li {
  padding: 8px 0;
  font-size: 13px;
  display: flex; gap: 8px; align-items: start;
}
.vip-card li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--y);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 12px;
  border: 2px solid var(--ink);
}
.vip-cta {
  display: block;
  margin-top: 28px;
  padding: 14px;
  background: var(--y);
  color: var(--ink);
  border-radius: 14px;
  border: 2.5px solid var(--ink);
  font-weight: 900;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 4px 0 -1px var(--ink);
  transition: transform .25s, box-shadow .25s;
}
.vip-card.featured .vip-cta { background: var(--y); }
.vip-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 0 -1px var(--ink); }
.vip-cta:active { transform: translateY(2px); box-shadow: 0 1px 0 -1px var(--ink); }

/* ───── Brands tape ───── */
.brand-tape-section {
  padding: 60px 0;
  background: var(--ink);
  color: var(--paper);
  margin: 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.brand-tape { overflow: hidden; }
.brand-tape-track {
  display: flex; gap: 40px;
  animation: marq 40s linear infinite;
  white-space: nowrap;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.03em;
  align-items: center;
}
.brand-tape-track > span { display: inline-flex; align-items: center; }
.brand-tape-track .star-y { color: var(--y); font-size: 0.6em; }

/* ───── Testimonials ───── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  box-shadow: 0 6px 0 -1px var(--ink);
  transition: transform .35s cubic-bezier(.4,1.5,.5,1);
  display: flex; flex-direction: column; gap: 20px;
}
.testi-card:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 10px 0 -1px var(--ink); }
.testi-card:nth-child(2) { background: var(--y-soft); transform: rotate(1deg); }
.testi-card:nth-child(2):hover { transform: rotate(0) translateY(-4px); }
.testi-card:nth-child(3) { background: var(--pink-soft); transform: rotate(-1deg); }
.testi-card:nth-child(3):hover { transform: rotate(0) translateY(-4px); }
.testi-quote {
  font-size: 36px;
  line-height: 0.5;
  color: var(--y);
  font-weight: 900;
  font-family: 'Caveat', cursive;
}
.testi-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
  font-weight: 600;
}
.testi-by {
  margin-top: auto;
  display: flex; gap: 12px; align-items: center;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--y);
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900; font-size: 16px;
  box-shadow: 0 3px 0 -1px var(--ink);
}
.testi-name { font-weight: 900; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--gray-500); font-weight: 700; }

/* ───── Newsletter ───── */
.news-section {
  padding: 80px 40px;
  position: relative;
}
.news-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--y);
  border: 3px solid var(--ink);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 0 -2px var(--ink);
  overflow: hidden;
}
.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}
.news-emojis {
  font-size: 32px;
  display: flex; gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}
.news-emojis span {
  display: inline-block;
  animation: emojiBounce 2.5s ease-in-out infinite;
}
.news-emojis span:nth-child(2) { animation-delay: -0.4s; }
.news-emojis span:nth-child(3) { animation-delay: -0.8s; }
.news-emojis span:nth-child(4) { animation-delay: -1.2s; }
.news-emojis span:nth-child(5) { animation-delay: -1.6s; }
@keyframes emojiBounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(8deg); }
}
.news-card h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  position: relative;
}
.news-card p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink);
  position: relative;
}
.news-form {
  margin: 32px auto 0;
  max-width: 480px;
  display: flex; gap: 8px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 100px;
  padding: 6px;
  box-shadow: 0 5px 0 -1px var(--ink);
  position: relative;
}
.news-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 14px; font-weight: 600;
}
.news-form input:focus { outline: none; }
.news-form input::placeholder { color: var(--gray-400); }
.news-form button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--y);
  border-radius: 100px;
  font-size: 14px; font-weight: 900;
  transition: background .2s, transform .25s;
}
.news-form button:hover { background: var(--y); color: var(--ink); transform: scale(1.05); }
.news-fine { margin-top: 18px; font-size: 13px; color: var(--ink); position: relative; }

/* ───── Footer ───── */
.ft {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 40px 24px;
  border-top: 3px solid var(--ink);
}
.ft-top {
  max-width: 1320px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.ft-l p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--gray-300);
  font-weight: 600;
  line-height: 1.55;
}
.ft-l .hd-mark { background: var(--y); }
.ft-l .hd-name { color: var(--paper); }
.ft-social {
  margin-top: 24px;
  display: flex; gap: 8px;
}
.ft-social-icon {
  width: 40px; height: 40px;
  background: var(--gray-700);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s, transform .25s;
}
.ft-social-icon:hover { background: var(--y); transform: rotate(-15deg) scale(1.1); }

.ft-cols { display: contents; }
.ft-cols > div h5 {
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--y);
}
.ft-cols > div a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray-300);
  font-weight: 600;
  transition: color .2s, padding .25s;
}
.ft-cols > div a:hover { color: var(--y); padding-left: 8px; }
.ft-base {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 2px dashed var(--gray-700);
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
}

/* ───── Responsive ───── */
@media (max-width: 1100px) {
  .hd-nav { display: none; }
  .hd-search span { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-r { margin-top: 0; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .camp-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .camp-grid .camp:nth-child(1), .camp-grid .camp:nth-child(4) { grid-row: auto; grid-column: auto; }
  .camp { min-height: 240px; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .vip-grid { grid-template-columns: 1fr; }
  .vip-card.featured { transform: scale(1); }
  .testi-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px) rotate(-2deg); transition: opacity .6s cubic-bezier(.4,1.5,.5,1), transform .6s cubic-bezier(.4,1.5,.5,1); }
.reveal.in { opacity: 1; transform: translateY(0) rotate(0); }
