/* ───── Bento Grid — Sarı Etiket ───── */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --yellow: #FFD60A;
  --yellow-soft: #FFF3B0;
  --yellow-bg: #FFFBE6;
  --yellow-deep: #F5C700;
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --gray-700: #404040;
  --gray-500: #737373;
  --gray-400: #A3A3A3;
  --gray-300: #D4D4D4;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --gray-50: #FAFAFA;
  --bg: #F5F5F2;
  --card: #FFFFFF;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 18px -8px rgba(0,0,0,0.06);
  --shadow-h: 0 4px 0 rgba(0,0,0,0.04), 0 24px 50px -16px rgba(0,0,0,0.16);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11', 'ss01', 'ss03', 'tnum';
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; font-feature-settings: 'tnum'; }
.hl { background: linear-gradient(180deg, transparent 65%, var(--yellow) 65%); }
.muted { color: var(--gray-400); }

/* ───── Header ───── */
.hd {
  position: sticky; top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px 24px;
  background: rgba(245,245,242,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 50;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hd-l { display: flex; align-items: center; gap: 16px; }
.hd-back {
  width: 32px; height: 32px;
  background: var(--card);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.hd-back:hover { background: var(--ink); color: var(--card); transform: translateX(-2px); }
.hd-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: -0.02em;
}
.hd-mark {
  width: 28px; height: 28px;
  background: var(--yellow);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), inset 0 -2px 0 rgba(0,0,0,0.06);
}

.hd-nav {
  display: flex; gap: 4px;
  justify-content: center;
  background: var(--card);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  width: fit-content;
  margin: 0 auto;
}
.hd-nav a {
  font-size: 13px; font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.hd-nav a:hover { background: var(--gray-100); }
.hd-nav a.active { background: var(--ink); color: var(--card); }

.hd-r { display: flex; gap: 8px; align-items: center; }
.hd-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--card);
  border: 1px solid var(--gray-200);
  padding: 8px 12px 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--gray-400);
  min-width: 280px;
  transition: border-color .2s;
}
.hd-search:hover { border-color: var(--gray-300); }
.hd-search span { flex: 1; text-align: left; }
.hd-search kbd {
  background: var(--gray-100);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 11px;
  font-family: ui-monospace, monospace;
  color: var(--gray-500);
}
.hd-icon {
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  display: grid; place-items: center;
  transition: background .2s;
  position: relative;
}
.hd-icon:hover { background: var(--gray-100); }
.hd-icon .dot {
  position: absolute; top: 8px; right: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 2px var(--card);
}
.hd-cart {
  background: var(--ink);
  color: var(--card);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px; font-weight: 500;
  display: inline-flex; gap: 8px; align-items: center;
  transition: background .2s;
}
.hd-cart:hover { background: var(--gray-700); }

/* ───── Main ───── */
.main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
}

/* Common bento card */
.b {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
  cursor: pointer;
}
.b:hover { transform: translateY(-3px); box-shadow: var(--shadow-h); }

.b-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 6px;
}
.b-label.dark { color: rgba(0,0,0,0.6); }
.b-label.light { color: rgba(255,255,255,0.7); }

/* ───── HERO BENTO ───── */
.hero-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
  margin-bottom: 60px;
}
.b-hero {
  grid-column: span 4; grid-row: span 2;
  padding: 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(135deg, #fff 0%, #fafaf6 100%);
}
.b-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-bg);
  border: 1px solid var(--yellow);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px; font-weight: 500;
  width: fit-content;
}
.b-hero-tag .live {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  animation: livepulse 1.6s infinite;
}
@keyframes livepulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.b-hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(48px, 5.6vw, 84px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-top: 24px;
}
.b-hero h1 .num {
  display: inline-block;
  background: var(--yellow);
  padding: 0 14px 4px;
  border-radius: 14px;
  margin: 0 4px;
  position: relative;
  box-shadow: 0 4px 18px -4px rgba(255,214,10,0.5);
}
.b-hero-foot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.b-hero-meta {
  font-size: 13px; color: var(--gray-500);
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
  transition: transform .2s, background .2s, color .2s;
}
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 4px 14px -2px rgba(255,214,10,0.5); }
.btn-yellow:hover { transform: translateY(-2px); background: var(--yellow-deep); }

/* Countdown card */
.b-count {
  grid-column: span 2; grid-row: span 1;
  background: var(--ink); color: var(--card);
  display: flex; flex-direction: column;
  padding: 24px;
}
.b-count .b-label { color: var(--yellow); margin-bottom: 16px; }
.count-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  flex: 1;
  align-items: center;
}
.count-grid > div {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
}
.cn {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 28px; font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.cl {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 6px;
}
.b-foot { font-size: 12px; color: var(--gray-400); margin-top: 14px; }

/* Stat */
.b-stat { padding: 24px; display: flex; flex-direction: column; }
.b-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 22px -8px rgba(255,214,10,0.5);
}
.stat-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 56px; font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  margin-top: auto;
}
.stat-label {
  font-size: 12px;
  margin-top: 8px;
  color: var(--gray-500);
}
.b-yellow .stat-label { color: rgba(0,0,0,0.6); }

/* Featured product */
.b-feat {
  grid-column: span 3; grid-row: span 1;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.b-feat img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.b-feat:hover img { transform: scale(1.06); }
.b-feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: end;
  color: var(--card);
}
.b-feat-overlay h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
}
.b-feat-row { margin-top: 8px; display: flex; gap: 10px; align-items: baseline; }
.b-feat-old { text-decoration: line-through; opacity: 0.6; font-size: 13px; }
.b-feat-price { font-weight: 700; font-size: 18px; }
.b-feat-disc {
  background: var(--yellow); color: var(--ink);
  padding: 3px 8px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
}

/* Trust */
.b-trust {
  grid-column: span 3; grid-row: span 1;
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
  justify-content: center;
}
.trust-row {
  display: flex; gap: 12px; align-items: center;
  font-size: 13px;
  padding: 6px 0;
}
.tr-icon {
  width: 30px; height: 30px;
  background: var(--yellow-bg);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 14px;
}

/* ───── Section common ───── */
.section { margin-bottom: 60px; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 24px;
  padding: 0 4px;
}
.kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-head h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--gray-500);
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .2s, color .2s, gap .25s;
}
.link:hover { background: var(--card); color: var(--ink); gap: 10px; }
.link-static { font-size: 13px; color: var(--gray-500); }

/* ───── Campaign bento ───── */
.camp-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.camp-bento .camp:nth-child(1) { grid-column: span 4; grid-row: span 1; }
.camp-bento .camp:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.camp-bento .camp:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.camp-bento .camp:nth-child(4) { grid-column: span 2; grid-row: span 1; }
.camp-bento .camp:nth-child(5) { grid-column: span 2; grid-row: span 1; }

.camp {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-200);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.camp:hover { transform: translateY(-3px); }
.camp img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.camp:hover img { transform: scale(1.08); }
.camp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.1) 50%, transparent);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: end;
  color: var(--card);
}
.camp-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--card); color: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
}
.camp-tag.live { background: var(--yellow); }
.camp-brand {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 4px;
}
.camp-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.camp:nth-child(1) .camp-title { font-size: 38px; }
.camp-meta {
  margin-top: 10px;
  display: flex; gap: 12px;
  font-size: 12px;
  align-items: baseline;
}
.camp-discount {
  background: var(--yellow); color: var(--ink);
  padding: 4px 8px; border-radius: 6px;
  font-weight: 700;
}
.camp-end { opacity: 0.75; }

/* ───── Brands bento ───── */
.brands-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.brand-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 28px 18px;
  text-align: center;
  transition: transform .25s, background .25s;
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  border: 1px solid var(--gray-200);
}
.brand-card:hover {
  background: var(--yellow);
  transform: translateY(-3px);
  border-color: var(--yellow);
}
.brand-tag {
  display: block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-top: 6px;
}
.brand-card:hover .brand-tag { color: rgba(0,0,0,0.5); }

/* ───── Product bento ───── */
.prod-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prod-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
  display: flex; flex-direction: column;
  border: 1px solid var(--gray-200);
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); border-color: var(--gray-200); }
.prod-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-100);
}
.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(--yellow); color: var(--ink);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.prod-fav {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.prod-fav:hover { background: var(--yellow); transform: scale(1.1); }
.prod-fav.on svg { fill: #ef4444; stroke: #ef4444; }
.prod-stock {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.85); color: var(--card);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.04em;
  display: none;
}
.prod-stock.show { display: block; }
.prod-stock::before { content: "● "; color: var(--yellow); }

.prod-info { padding: 16px; }
.prod-brand {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  text-transform: uppercase;
}
.prod-title {
  font-size: 14px; font-weight: 600;
  margin-top: 4px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  min-height: 38px;
}
.prod-foot {
  margin-top: 12px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.prod-prices { display: flex; gap: 8px; align-items: baseline; }
.prod-price { font-weight: 700; font-size: 16px; font-variant-numeric: tabular-nums; }
.prod-old { color: var(--gray-400); text-decoration: line-through; font-size: 12px; }
.prod-rate { font-size: 11px; color: var(--gray-500); display: flex; gap: 4px; align-items: center; }
.prod-rate .star { color: var(--yellow-deep); }

/* ───── Categories bento ───── */
.cat-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.cat-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 24px;
  cursor: pointer;
  transition: transform .35s, background .35s;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  min-height: 140px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.cat-card:nth-child(1) { background: var(--yellow); border-color: var(--yellow); }
.cat-card:nth-child(6) { background: var(--ink); color: var(--card); border-color: var(--ink); }
.cat-card:hover { transform: translateY(-3px); }
.cat-card:nth-child(6):hover { background: var(--gray-700); }
.cat-emoji {
  font-size: 32px;
  display: block;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.cat-card:hover .cat-emoji { transform: rotate(-8deg) scale(1.1); }
.cat-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.02em;
}
.cat-count {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}
.cat-card:nth-child(1) .cat-count { color: rgba(0,0,0,0.55); }
.cat-card:nth-child(6) .cat-count { color: var(--gray-400); }

/* ───── VIP bento ───── */
.vip-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vip-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: transform .35s, border-color .35s, background .35s;
  position: relative;
  overflow: hidden;
}
.vip-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.vip-card.featured {
  background: var(--ink); color: var(--card); border-color: var(--ink);
}
.vip-card.featured:hover { background: var(--ink-2); }
.vip-card.featured::before {
  content: "ÖNERİLEN";
  position: absolute; top: 16px; right: 16px;
  background: var(--yellow); color: var(--ink);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 8px; border-radius: 6px;
}
.vip-tier {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
}
.vip-price {
  font-size: 26px; font-weight: 700;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.vip-card ul {
  list-style: none;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}
.vip-card.featured ul { border-top-color: rgba(255,255,255,0.1); }
.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: 16px; height: 16px;
  background: var(--yellow);
  border-radius: 50%;
  position: relative;
  background-image: linear-gradient(45deg, transparent 35%, var(--ink) 35%, var(--ink) 45%, transparent 45%, transparent 55%, var(--ink) 55%, var(--ink) 65%, transparent 65%);
  background-size: 8px 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  margin-top: 2px;
}

/* ───── Bottom bento ───── */
.bottom-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
}
.b-news, .b-app, .b-help {
  padding: 32px;
  display: flex; flex-direction: column;
}
.b-news { background: var(--yellow); }
.b-news .b-label { color: rgba(0,0,0,0.5); }
.b-news h3, .b-app h3, .b-help h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.b-news p, .b-app p, .b-help p {
  font-size: 13px; color: rgba(0,0,0,0.65);
  margin-bottom: auto;
  padding-bottom: 16px;
}
.b-app p, .b-help p { color: var(--gray-500); }
.news-form {
  display: flex; gap: 8px;
  margin-top: 16px;
}
.news-form input {
  flex: 1;
  background: rgba(0,0,0,0.08);
  border: 1px solid transparent;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink);
  transition: background .2s, border-color .2s;
}
.news-form input::placeholder { color: rgba(0,0,0,0.4); }
.news-form input:focus { outline: none; background: var(--card); border-color: var(--ink); }
.news-form button {
  background: var(--ink); color: var(--card);
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  transition: background .2s;
}
.news-form button:hover { background: var(--gray-700); }

.app-buttons {
  display: flex; gap: 8px;
  margin-top: 16px;
}
.app-buttons button {
  flex: 1;
  background: var(--ink); color: var(--card);
  padding: 12px;
  border-radius: 10px;
  font-size: 12px; font-weight: 600;
  transition: background .2s;
}
.app-buttons button:hover { background: var(--gray-700); }

/* ───── Footer ───── */
.ft {
  max-width: 1440px; margin: 0 auto;
  padding: 32px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--gray-500);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.ft-l { display: flex; gap: 14px; align-items: center; }
.ft-cols { display: flex; gap: 18px; }
.ft-cols a { transition: color .2s; }
.ft-cols a:hover { color: var(--ink); }

/* ───── Responsive ───── */
@media (max-width: 1100px) {
  .hd-search { min-width: 200px; }
  .hd-search span { display: none; }
  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .b-hero { grid-column: span 2; grid-row: auto; }
  .b-count, .b-stat, .b-feat, .b-trust { grid-column: span 1; grid-row: auto; min-height: 200px; }
  .camp-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .camp-bento .camp { grid-column: auto !important; grid-row: auto !important; min-height: 220px; }
  .brands-bento { grid-template-columns: repeat(3, 1fr); }
  .prod-bento { grid-template-columns: repeat(2, 1fr); }
  .cat-bento { grid-template-columns: repeat(2, 1fr); }
  .vip-bento { grid-template-columns: 1fr; }
  .bottom-bento { grid-template-columns: 1fr; }
}

/* ───── Animation: counting ───── */
.cnt { font-variant-numeric: tabular-nums; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
