:root {
  --ink: #172033;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #ffffff;
  --soft: #f6f7f9;
  --dark: #0f172a;
  --green: #138a5b;
  --green-dark: #0d6f49;
  --coral: #ef5b45;
  --gold: #f5b642;
  --blue: #2563eb;
  --radius: 8px;
  --shadow: 0 18px 40px rgba(15, 23, 42, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .42);
  outline-offset: 3px;
}
.skip-link { position: fixed; top: -56px; left: 16px; z-index: 100; padding: 12px 16px; color: #fff; background: var(--dark); border-radius: var(--radius); }
.skip-link:focus { top: 16px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 max(14px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  color: #fff;
  background: linear-gradient(145deg, var(--green), var(--coral));
  border-radius: 50%;
  font-size: 16px;
  font-weight: 950;
}
.brand span { display: grid; gap: 1px; }
.brand strong { font-size: 14px; }
.brand small { color: var(--muted); font-size: 11px; }
.top-actions { display: inline-flex; align-items: center; gap: 10px; }
.top-actions a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}
.header-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(19, 138, 91, .18);
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button.primary { color: #fff; background: var(--green); }
.button.secondary { color: var(--ink); background: #fff; border-color: #cfd5df; }
.products-section, .notice, .section, footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}
.first-products { padding-top: 16px; }
.instant-hero {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 14px;
  padding: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 91, 69, .62), transparent 32%),
    linear-gradient(135deg, #101828 0%, #16352e 52%, #44261e 100%);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.hero-product {
  position: relative;
  min-height: 338px;
  overflow: hidden;
  color: #fff;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
}
.hero-product img { width: 100%; height: 100%; object-fit: cover; }
.deal-badge, .hero-price {
  position: absolute;
  left: 12px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .22);
}
.deal-badge {
  top: 12px;
  padding: 7px 10px;
  background: var(--coral);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.hero-price {
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, .84);
  backdrop-filter: blur(12px);
}
.hero-price strong { font-size: 28px; line-height: 1; }
.hero-price small { max-width: 130px; color: rgba(255, 255, 255, .8); font-size: 11px; line-height: 1.25; }
.hero-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px clamp(14px, 3vw, 30px);
}
.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: .95;
}
.hero-copy p { max-width: 570px; margin: 0; color: rgba(255, 255, 255, .82); line-height: 1.55; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-checks span {
  padding: 8px 10px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-cta-row .button.primary { background: var(--coral); }
.hero-cta-row .button.secondary { color: #fff; background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .24); }
.quick-picks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.landing-quick-picks { margin: 0 0 12px; }
.quick-pick {
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 7px;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
  text-decoration: none;
}
.quick-pick span { color: var(--green-dark); font-size: 11px; font-weight: 950; text-transform: uppercase; }
.quick-pick strong { color: var(--coral); font-size: 22px; line-height: 1; }
.quick-pick small { color: var(--muted); font-size: 12px; line-height: 1.35; }
.quick-pick.is-best { color: #fff; background: linear-gradient(145deg, #123c31, #ef5b45); border-color: transparent; }
.quick-pick.is-best span, .quick-pick.is-best strong, .quick-pick.is-best small { color: #fff; }
.toolbar {
  position: sticky;
  top: 58px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
  backdrop-filter: blur(14px);
}
.toolbar label { display: grid; gap: 5px; color: var(--muted); font-size: 12px; font-weight: 850; }
input, select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd5df;
  border-radius: var(--radius);
  font: inherit;
}
.result-line { margin: 14px 0; color: var(--muted); font-size: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover { transform: translateY(-2px); border-color: #bac3d0; box-shadow: 0 16px 34px rgba(15, 23, 42, .10); }
.image-link img { width: 100%; aspect-ratio: 1; object-fit: contain; background: var(--soft); }
.product-body { display: grid; gap: 10px; padding: 12px; }
.meta-row, .price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.tag {
  padding: 5px 8px;
  color: var(--green-dark);
  background: #e9f7f1;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}
.sold, .store, .price-row small { color: var(--muted); font-size: 12px; }
.product-card h3 {
  min-height: 58px;
  margin: 0;
  font-size: 14px;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.price-row strong { color: var(--coral); font-size: 18px; }
.voucher-hint {
  margin: 0;
  padding: 8px 9px;
  color: #68410d;
  background: #fff4d5;
  border: 1px solid #f2d284;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
}
.product-cta { width: 100%; min-height: 44px; color: #fff; background: var(--green); font-size: 14px; }
.empty-state {
  grid-column: 1 / -1;
  padding: 24px;
  color: var(--muted);
  background: var(--soft);
  border: 1px dashed #cfd5df;
  border-radius: var(--radius);
  text-align: center;
}
.load-more { width: min(100%, 360px); margin: 24px auto 0; }
.load-more[hidden] { display: none; }
.eyebrow, .kicker { margin: 0; color: var(--coral); font-size: 12px; font-weight: 900; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1; }
.voucher-box {
  display: grid;
  gap: 5px;
  padding: 14px;
  color: #fff;
  background: linear-gradient(135deg, #ef5b45, #f5a623);
  border-radius: 14px;
}
.voucher-box span { font-size: 12px; font-weight: 950; text-transform: uppercase; }
.voucher-box strong { font-size: 19px; line-height: 1.18; }
.voucher-box small { color: rgba(255, 255, 255, .88); font-size: 12px; }
.notice {
  margin-top: 24px;
  padding: 16px 18px;
  color: #44320d;
  background: #fff6df;
  border: 1px solid #f3d287;
  border-radius: var(--radius);
  line-height: 1.55;
}
.section { padding-top: 52px; }
.section-head { display: grid; gap: 8px; max-width: 720px; margin-bottom: 18px; }
.section-head h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; }
.review-feature {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
  text-decoration: none;
}
.review-feature img { width: 116px; height: 116px; object-fit: cover; border-radius: var(--radius); }
.review-feature span { display: grid; gap: 6px; }
.review-feature small { color: var(--coral); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.review-feature strong { font-size: 20px; line-height: 1.2; }
.review-feature em { color: var(--muted); font-size: 14px; font-style: normal; }
.category-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.category-card {
  min-height: 130px;
  display: grid;
  align-content: end;
  padding: 16px;
  color: #fff;
  background: linear-gradient(145deg, #172033, #26364f);
  border-radius: var(--radius);
  text-decoration: none;
}
.category-card:nth-child(2n) { background: linear-gradient(145deg, #174136, #216b55); }
.category-card:nth-child(3n) { background: linear-gradient(145deg, #633327, #a94732); }
.category-card strong { font-size: 20px; }
.category-card span { margin-top: 8px; color: rgba(255, 255, 255, .78); font-size: 13px; }
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.info-grid article { padding: 20px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); }
.info-grid h3 { margin: 0 0 8px; }
.info-grid p { margin: 0; color: var(--muted); line-height: 1.6; }
footer { display: grid; gap: 10px; margin: 64px auto 90px; padding-top: 24px; color: var(--muted); border-top: 1px solid var(--line); font-size: 14px; }
footer strong { color: var(--ink); }
footer p { margin: 0; }
.sticky-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.sticky-bar span { display: grid; font-size: 13px; }
.sticky-bar .button { min-height: 42px; }
@media (max-width: 980px) {
  .instant-hero { grid-template-columns: 1fr; }
  .hero-product { min-height: 320px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .topbar { min-height: 48px; padding: 0 12px; }
  .brand { gap: 8px; }
  .brand-mark { width: 30px; height: 30px; flex-basis: 30px; font-size: 14px; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 10px; }
  .top-actions { gap: 8px; }
  .top-actions > a:not(.header-chip) { display: none; }
  .header-chip { min-height: 30px; padding: 0 10px; font-size: 12px; }
  .products-section, .notice, .section, footer { width: min(100% - 18px, 480px); }
  .first-products { padding-top: 8px; }
  .instant-hero {
    grid-template-columns: 44% minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    padding: 9px;
    border-radius: 14px;
  }
  .hero-product { min-height: 236px; border-radius: 10px; }
  .deal-badge { top: 9px; left: 9px; font-size: 11px; }
  .hero-price { left: 8px; right: 8px; bottom: 8px; display: grid; gap: 2px; padding: 8px 9px; border-radius: 12px; }
  .hero-price strong { font-size: 22px; }
  .hero-price small { max-width: none; font-size: 10px; }
  .hero-copy { align-content: stretch; gap: 8px; padding: 1px 1px 2px; }
  .hero-copy .eyebrow { font-size: 10px; }
  .hero-copy h1 { font-size: 25px; line-height: 1; }
  .hero-copy p { display: none; }
  .hero-checks { display: grid; gap: 6px; }
  .hero-checks span { padding: 7px 8px; font-size: 11px; text-align: center; }
  .hero-checks span:nth-child(3) { display: none; }
  .hero-cta-row { display: grid; grid-template-columns: 1fr; gap: 7px; }
  .hero-cta-row .button { min-height: 42px; padding: 0 10px; font-size: 13px; }
  .hero-cta-row .button.secondary { display: none; }
  .quick-picks { grid-template-columns: 1fr 1fr; gap: 8px; }
  .quick-pick { min-height: 96px; padding: 11px; }
  .quick-pick strong { font-size: 18px; }
  .toolbar { top: 48px; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px; border-radius: 14px; }
  .toolbar label { font-size: 11px; }
  input, select { min-height: 40px; font-size: 14px; }
  .search-box { grid-column: 1 / -1; }
  .result-line { margin: 10px 2px; font-size: 14px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: 38% 62%; min-height: 184px; }
  .image-link img { height: 100%; min-height: 184px; }
  .product-card h3 { min-height: auto; font-size: 13px; -webkit-line-clamp: 3; }
  .product-body { gap: 8px; padding: 10px; }
  .price-row strong { font-size: 16px; }
  .voucher-hint { padding: 7px 8px; font-size: 11px; }
  h1 { font-size: clamp(30px, 10vw, 40px); }
  .voucher-box strong { font-size: 17px; }
  .review-feature { grid-template-columns: 92px minmax(0, 1fr); gap: 12px; }
  .review-feature img { width: 92px; height: 92px; }
  .review-feature strong { font-size: 16px; }
  .category-strip { grid-template-columns: 1fr 1fr; }
  .category-card { min-height: 116px; }
  .sticky-bar { display: flex; }
}
