:root {
  --ink: #0f172a;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: #dbe4f0;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #eef6ff;
  --brand: #0f6bff;
  --brand-dark: #074fc7;
  --brand-soft: #eaf3ff;
  --green: #16a34a;
  --green-dark: #0f7a36;
  --green-soft: #ecfdf3;
  --gold: #f59e0b;
  --gold-soft: #fff7e0;
  --red: #dc2626;
  --red-soft: #fef2f2;
  --purple: #7c3aed;
  --teal: #0f766e;
  --shadow-xs: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.11);
  --shadow-lg: 0 32px 80px rgba(15, 23, 42, 0.16);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;
  --container: 1200px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 78px 0; }
.section.compact { padding: 48px 0; }
.section.soft { background: var(--surface-2); }
.section.brand-soft { background: linear-gradient(135deg, #eef6ff 0%, #f0fdf4 55%, #fffaf0 100%); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.section-head.center { align-items: center; justify-content: center; text-align: center; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: var(--brand-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 22px; height: 3px; border-radius: 999px; background: var(--gold); }
.section h2, .page-hero h1, .hero h1 { margin: 0; letter-spacing: -.035em; line-height: 1.06; }
.section h2 { font-size: clamp(1.75rem, 3vw, 2.7rem); }
.section-head p { max-width: 670px; margin: 9px 0 0; color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(15,107,255,.16);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-xs);
  font-size: .86rem;
  font-weight: 800;
}
.lead { color: var(--muted); font-size: 1.07rem; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.text-center { text-align: center; }

.announcement {
  position: relative;
  z-index: 52;
  color: #fff;
  background: linear-gradient(90deg, #064bbf, #0f6bff 50%, #0f766e);
  font-size: .9rem;
}
.announcement .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.announcement a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219,228,240,.86);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
}
.header-main {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 26px;
}
.logo { display: inline-flex; align-items: center; min-width: 225px; }
.logo img { width: 225px; height: auto; }
.search-form {
  position: relative;
  display: flex;
  align-items: center;
}
.search-form input {
  width: 100%;
  height: 48px;
  padding: 0 116px 0 45px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: var(--surface-2);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.search-form input:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15,107,255,.12);
}
.search-form .search-icon { position: absolute; left: 17px; width: 18px; color: var(--muted); pointer-events: none; }
.search-form button {
  position: absolute;
  right: 5px;
  height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}
.header-actions { display: flex; align-items: center; gap: 9px; }
.icon-btn {
  position: relative;
  width: 43px;
  height: 43px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  transition: transform .2s, border-color .2s, color .2s, box-shadow .2s;
}
.icon-btn:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand); box-shadow: var(--shadow-xs); }
.icon-btn svg { width: 20px; height: 20px; }
.count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: .69rem;
  font-weight: 900;
}
.menu-toggle { display: none; }
.nav-bar { border-top: 1px solid rgba(219,228,240,.75); }
.nav-inner { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.primary-nav { display: flex; align-items: center; gap: 24px; }
.primary-nav a {
  position: relative;
  padding: 13px 0;
  color: #334155;
  font-size: .91rem;
  font-weight: 750;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
  transition: right .2s ease;
}
.primary-nav a:hover, .primary-nav a.active { color: var(--brand); }
.primary-nav a:hover::after, .primary-nav a.active::after { right: 0; }
.nav-support { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-size: .88rem; font-weight: 800; }
.nav-support::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.13); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 62px;
  background:
    radial-gradient(circle at 10% 15%, rgba(15,107,255,.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(22,163,74,.12), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -240px;
  bottom: -290px;
  border-radius: 50%;
  border: 90px solid rgba(245,158,11,.08);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 58px; }
.hero h1 { max-width: 720px; margin-top: 18px; font-size: clamp(2.55rem, 5.2vw, 5rem); }
.hero h1 .gradient-text { color: transparent; background: linear-gradient(90deg, var(--brand), var(--green)); background-clip: text; -webkit-background-clip: text; }
.hero-copy > p { max-width: 675px; margin: 20px 0 0; color: #475569; font-size: clamp(1.02rem, 1.6vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 25px rgba(15,107,255,.20);
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--brand-dark); box-shadow: 0 14px 30px rgba(15,107,255,.27); }
.btn:active { transform: translateY(0); }
.btn.secondary { color: var(--ink); border-color: var(--line); background: #fff; box-shadow: var(--shadow-xs); }
.btn.secondary:hover { color: var(--brand); border-color: var(--brand); background: #fff; }
.btn.dark { background: var(--ink); box-shadow: 0 10px 25px rgba(15,23,42,.2); }
.btn.dark:hover { background: #020617; }
.btn.green { background: var(--green); box-shadow: 0 10px 25px rgba(22,163,74,.2); }
.btn.green:hover { background: var(--green-dark); }
.btn.gold { color: #4a3000; background: #fbbf24; box-shadow: 0 10px 25px rgba(245,158,11,.22); }
.btn.gold:hover { background: #f59e0b; }
.btn.danger { background: var(--red); box-shadow: 0 10px 25px rgba(220,38,38,.18); }
.btn.small { min-height: 38px; padding: 0 14px; border-radius: 10px; font-size: .87rem; }
.btn.block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn svg { width: 18px; height: 18px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: #475569; font-size: .9rem; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 18px; color: var(--green); }
.hero-art { position: relative; }
.hero-art > img { position: relative; z-index: 2; filter: drop-shadow(0 28px 50px rgba(15,23,42,.13)); }
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  font-size: .85rem;
  font-weight: 800;
  animation: float 5s ease-in-out infinite;
}
.floating-card strong { display: block; color: var(--ink); }
.floating-card span { color: var(--muted); font-size: .76rem; font-weight: 600; }
.floating-card.one { left: -18px; top: 14%; }
.floating-card.two { right: -8px; bottom: 12%; animation-delay: -2s; }
.floating-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: var(--brand-soft); color: var(--brand); }
.floating-card.two .floating-icon { color: var(--green); background: var(--green-soft); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.value-strip { border-block: 1px solid var(--line); background: #fff; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-item { display: flex; align-items: center; gap: 13px; padding: 22px 20px; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-icon { width: 45px; height: 45px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; color: var(--brand); background: var(--brand-soft); }
.value-icon.green { color: var(--green); background: var(--green-soft); }
.value-icon.gold { color: #b45309; background: var(--gold-soft); }
.value-icon.purple { color: var(--purple); background: #f5f3ff; }
.value-item strong { display: block; font-size: .94rem; }
.value-item span { color: var(--muted); font-size: .8rem; }

.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.category-card:hover { transform: translateY(-6px); border-color: rgba(15,107,255,.32); box-shadow: var(--shadow); }
.category-card img { width: 100%; height: 180px; object-fit: cover; }
.category-card-content { padding: 17px 18px 20px; }
.category-card h3 { margin: 0 0 3px; font-size: 1rem; }
.category-card p { margin: 0; color: var(--muted); font-size: .81rem; }
.category-card .arrow { position: absolute; right: 16px; bottom: 17px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--brand); background: var(--brand-soft); transition: transform .2s; }
.category-card:hover .arrow { transform: translateX(4px); }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover { transform: translateY(-7px); border-color: rgba(15,107,255,.28); box-shadow: var(--shadow); }
.product-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-badge {
  position: absolute;
  left: 13px;
  top: 13px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(15,23,42,.88);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .02em;
}
.card-actions { position: absolute; right: 12px; top: 12px; z-index: 2; display: grid; gap: 8px; }
.card-actions button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(219,228,240,.9); border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.94); box-shadow: var(--shadow-xs); transition: color .2s, transform .2s, background .2s; }
.card-actions button:hover, .card-actions button.active { color: #fff; background: var(--brand); transform: scale(1.06); }
.card-actions svg { width: 17px; }
.product-info { flex: 1; display: flex; flex-direction: column; padding: 18px; }
.product-category { margin-bottom: 7px; color: var(--brand); font-size: .72rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.product-title { margin: 0; min-height: 50px; font-size: 1.01rem; line-height: 1.35; }
.product-title a:hover { color: var(--brand); }
.product-summary { margin: 9px 0 0; min-height: 44px; color: var(--muted); font-size: .83rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; }
.stock { display: inline-flex; align-items: center; gap: 6px; color: var(--green-dark); font-size: .76rem; font-weight: 800; }
.stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.stock.low { color: #b45309; }
.stock.low::before { background: #f59e0b; }
.stock.out { color: var(--red); }
.stock.out::before { background: var(--red); }
.rating { color: #b45309; font-size: .76rem; font-weight: 800; }
.new-product { color: var(--muted); font-size: .76rem; font-weight: 750; }
.product-price-row { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 16px; }
.price-wrap { display: flex; flex-wrap: wrap; align-items: baseline; gap: 7px; }
.price { color: var(--ink); font-size: 1.17rem; font-weight: 900; letter-spacing: -.02em; }
.old-price { color: var(--muted-2); font-size: .8rem; text-decoration: line-through; }
.add-cart {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 18px rgba(15,107,255,.2);
  transition: transform .2s, background .2s;
}
.add-cart:hover { transform: scale(1.06); background: var(--brand-dark); }
.add-cart svg { width: 19px; }

.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.promise-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); }
.promise-number { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 15px; color: #fff; background: var(--brand); font-weight: 900; }
.promise-card:nth-child(2) .promise-number { background: var(--green); }
.promise-card:nth-child(3) .promise-number { color: #4a3000; background: #fbbf24; }
.promise-card h3 { margin: 0 0 8px; }
.promise-card p { margin: 0; color: var(--muted); }

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: flow;
}
.flow-step {
  position: relative;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 50%;
  z-index: 2;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--brand);
  background: #fff;
  font-weight: 900;
}
.flow-icon { width: 60px; height: 60px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 20px; color: var(--brand); background: var(--brand-soft); }
.flow-step:nth-child(2) .flow-icon { color: var(--green); background: var(--green-soft); }
.flow-step:nth-child(3) .flow-icon { color: #b45309; background: var(--gold-soft); }
.flow-step:nth-child(4) .flow-icon { color: var(--purple); background: #f5f3ff; }
.flow-step:nth-child(5) .flow-icon { color: var(--teal); background: #f0fdfa; }
.flow-step h3 { margin: 0 0 6px; font-size: 1rem; }
.flow-step p { margin: 0; color: var(--muted); font-size: .81rem; }

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 42px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(125deg, #083c94, #0f6bff 52%, #0f766e);
  box-shadow: var(--shadow-lg);
}
.cta-panel::before { content: ""; position: absolute; width: 260px; height: 260px; right: -80px; top: -120px; border-radius: 50%; border: 55px solid rgba(255,255,255,.08); }
.cta-panel h2 { position: relative; font-size: clamp(1.8rem, 3vw, 3rem); }
.cta-panel p { position: relative; max-width: 680px; margin: 10px 0 0; color: rgba(255,255,255,.82); }
.cta-panel .btn { position: relative; color: var(--ink); background: #fff; box-shadow: none; }
.cta-panel .btn:hover { color: var(--brand); }

.page-hero {
  padding: 54px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(22,163,74,.11), transparent 25%),
    linear-gradient(180deg, #f8fbff, #fff);
  border-bottom: 1px solid var(--line);
}
.page-hero-grid { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.page-hero h1 { margin-top: 11px; font-size: clamp(2.2rem, 4.5vw, 4rem); }
.page-hero p { max-width: 700px; margin: 13px 0 0; color: var(--muted); font-size: 1.04rem; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; color: var(--muted); font-size: .82rem; }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs span::before { content: "/"; margin-right: 7px; color: var(--muted-2); }

.shop-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 30px; align-items: start; }
.filters {
  position: sticky;
  top: 152px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.filter-group + .filter-group { margin-top: 25px; padding-top: 22px; border-top: 1px solid var(--line); }
.filter-group h3 { margin: 0 0 13px; font-size: .94rem; }
.filter-options { display: grid; gap: 10px; }
.check-row { display: flex; align-items: center; gap: 10px; color: #334155; font-size: .86rem; cursor: pointer; }
.check-row input { width: 17px; height: 17px; accent-color: var(--brand); }
.price-range { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.price-range input { width: 100%; height: 42px; padding: 0 10px; border: 1px solid var(--line); border-radius: 10px; outline: none; }
.price-range input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(15,107,255,.1); }
.shop-toolbar { min-height: 55px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.results-count { color: var(--muted); font-size: .9rem; }
.toolbar-actions { display: flex; align-items: center; gap: 10px; }
.select {
  height: 43px;
  padding: 0 36px 0 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: #fff;
}
.select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(15,107,255,.1); }
.mobile-filter-btn { display: none; }
.empty-state { grid-column: 1 / -1; padding: 55px 25px; border: 1px dashed var(--line); border-radius: var(--radius-lg); text-align: center; background: var(--surface-2); }
.empty-state .empty-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 15px; border-radius: 22px; color: var(--brand); background: var(--brand-soft); }
.empty-state h3 { margin: 0 0 6px; }
.empty-state p { margin: 0 0 18px; color: var(--muted); }

.product-detail { display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: start; }
.product-gallery-main { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface-2); box-shadow: var(--shadow-xs); }
.product-gallery-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-detail-content { padding: 6px 0; }
.product-detail-content h1 { margin: 10px 0 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; letter-spacing: -.035em; }
.product-detail-price { display: flex; align-items: baseline; gap: 12px; margin-top: 18px; }
.product-detail-price .price { font-size: 1.8rem; }
.product-detail-price .old-price { font-size: 1rem; }
.product-detail-description { margin: 18px 0 0; color: var(--muted); font-size: 1.02rem; }
.detail-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; padding: 0; list-style: none; }
.detail-feature-list li { display: flex; align-items: flex-start; gap: 9px; padding: 12px; border-radius: 13px; background: var(--surface-2); font-size: .87rem; }
.detail-feature-list li::before { content: "✓"; color: var(--green); font-weight: 900; }
.purchase-box { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.qty-row { display: flex; align-items: center; gap: 11px; }
.qty-control { display: inline-grid; grid-template-columns: 38px 48px 38px; align-items: center; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.qty-control button { height: 42px; border: 0; color: var(--ink); background: var(--surface-2); font-weight: 900; }
.qty-control input { width: 100%; height: 42px; border: 0; outline: 0; text-align: center; font-weight: 850; }
.purchase-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.detail-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.detail-note { padding: 12px; border-radius: 13px; background: var(--surface-2); color: var(--muted); font-size: .78rem; text-align: center; }
.detail-note strong { display: block; color: var(--ink); font-size: .83rem; }

.content-grid { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr); gap: 30px; align-items: start; }
.card, .panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.panel { padding: 28px; }
.panel h2, .panel h3 { margin-top: 0; }
.panel.soft { background: var(--surface-2); }

.cart-list { display: grid; gap: 14px; }
.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0,1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.cart-item img { width: 110px; aspect-ratio: 4/3; object-fit: cover; border-radius: 13px; background: var(--surface-2); }
.cart-item h3 { margin: 0; font-size: .98rem; }
.cart-item .meta { margin-top: 4px; color: var(--muted); font-size: .8rem; }
.cart-item-controls { display: flex; align-items: center; gap: 11px; margin-top: 12px; }
.link-button { padding: 0; border: 0; color: var(--red); background: transparent; font-size: .8rem; font-weight: 800; }
.cart-item-total { min-width: 115px; text-align: right; }
.cart-item-total strong { display: block; }
.cart-item-total span { color: var(--muted); font-size: .77rem; }
.summary-card { position: sticky; top: 152px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.summary-card h2 { margin: 0 0 18px; font-size: 1.35rem; }
.summary-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; color: var(--muted); font-size: .9rem; }
.summary-row.total { margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink); font-size: 1.08rem; font-weight: 900; }
.free-delivery { margin: 14px 0; padding: 12px; border-radius: 12px; color: var(--green-dark); background: var(--green-soft); font-size: .82rem; font-weight: 750; }
.coupon-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin: 15px 0; }
.coupon-row input { min-width: 0; height: 43px; padding: 0 12px; border: 1px solid var(--line); border-radius: 11px; outline: none; }

.form-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); }
.form-card + .form-card { margin-top: 20px; }
.form-card h2 { margin: 0 0 6px; font-size: 1.3rem; }
.form-card > p { margin: 0 0 20px; color: var(--muted); font-size: .89rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { color: #334155; font-size: .82rem; font-weight: 800; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  min-height: 47px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-group textarea { min-height: 105px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(15,107,255,.1); }
.form-help { color: var(--muted); font-size: .73rem; }
.payment-options { display: grid; gap: 12px; }
.payment-option { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: start; padding: 16px; border: 1px solid var(--line); border-radius: 15px; cursor: pointer; transition: border-color .2s, box-shadow .2s, background .2s; }
.payment-option:hover { border-color: rgba(15,107,255,.4); background: #fbfdff; }
.payment-option:has(input:checked) { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(15,107,255,.1); background: var(--brand-soft); }
.payment-option input { margin-top: 4px; accent-color: var(--brand); }
.payment-option strong { display: block; }
.payment-option p { margin: 3px 0 0; color: var(--muted); font-size: .8rem; }
.payment-tag { padding: 5px 8px; border-radius: 999px; color: var(--green-dark); background: var(--green-soft); font-size: .66rem; font-weight: 900; }
.checkout-consent { display: flex; align-items: flex-start; gap: 9px; margin: 18px 0; color: var(--muted); font-size: .8rem; }
.checkout-consent input { margin-top: 3px; accent-color: var(--brand); }
.payment-result { margin-top: 16px; padding: 16px; border-radius: 14px; display: none; }
.payment-result.show { display: block; }
.payment-result.pending { color: #854d0e; background: #fefce8; border: 1px solid #fde68a; }
.payment-result.success { color: var(--green-dark); background: var(--green-soft); border: 1px solid #bbf7d0; }
.payment-result.error { color: #991b1b; background: var(--red-soft); border: 1px solid #fecaca; }

.pay-number-box { padding: 24px; border: 1px dashed rgba(15,107,255,.45); border-radius: var(--radius-lg); background: var(--brand-soft); text-align: center; }
.pay-number-box .label { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.pay-number { margin: 8px 0 13px; color: var(--brand-dark); font-size: clamp(2rem, 5vw, 3.3rem); font-weight: 950; letter-spacing: .04em; }
.instruction-list { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.instruction-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.instruction-list span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: var(--brand); font-size: .82rem; font-weight: 900; }
.instruction-list p { margin: 3px 0 0; color: var(--muted); font-size: .86rem; }

.track-box { max-width: 720px; margin-inline: auto; }
.track-result { margin-top: 24px; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 999px; font-size: .75rem; font-weight: 900; text-transform: capitalize; }
.status-pill.pending { color: #854d0e; background: #fef3c7; }
.status-pill.paid, .status-pill.successful, .status-pill.completed { color: var(--green-dark); background: var(--green-soft); }
.status-pill.failed, .status-pill.cancelled { color: #991b1b; background: var(--red-soft); }
.order-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
.order-detail { padding: 14px; border-radius: 13px; background: var(--surface-2); }
.order-detail span { display: block; color: var(--muted); font-size: .72rem; }
.order-detail strong { display: block; margin-top: 2px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.about-visual { min-height: 430px; display: grid; place-items: center; border-radius: var(--radius-xl); background: linear-gradient(135deg, #eaf3ff, #ecfdf3); overflow: hidden; }
.about-visual img { width: 82%; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 24px; }
.value-card { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.value-card strong { display: block; }
.value-card span { color: var(--muted); font-size: .82rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); }
.contact-list { display: grid; gap: 15px; margin-top: 22px; }
.contact-item { display: grid; grid-template-columns: 45px 1fr; gap: 12px; align-items: center; }
.contact-item .icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; color: var(--brand); background: var(--brand-soft); }
.contact-item strong { display: block; }
.contact-item span, .contact-item a { color: var(--muted); font-size: .84rem; }
.map-placeholder { min-height: 280px; display: grid; place-items: center; border-radius: var(--radius-lg); color: var(--muted); background: linear-gradient(135deg, #e2e8f0, #f8fafc); text-align: center; }

.policy-layout { display: grid; grid-template-columns: 240px minmax(0,1fr); gap: 34px; align-items: start; }
.policy-nav { position: sticky; top: 152px; display: grid; gap: 6px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.policy-nav a { padding: 10px 12px; border-radius: 10px; color: #475569; font-size: .84rem; font-weight: 750; }
.policy-nav a:hover { color: var(--brand); background: var(--brand-soft); }
.policy-content { display: grid; gap: 18px; }
.policy-section { scroll-margin-top: 160px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.policy-section h2 { margin: 0 0 12px; font-size: 1.45rem; }
.policy-section h3 { margin: 20px 0 7px; }
.policy-section p, .policy-section li { color: #475569; }
.policy-section ul { padding-left: 20px; }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 15px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; border: 0; color: var(--ink); background: #fff; text-align: left; font-weight: 850; }
.faq-question svg { width: 18px; transition: transform .2s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 18px; color: var(--muted); font-size: .88rem; }
.faq-item.open .faq-answer { display: block; }

.admin-shell { min-height: 100vh; background: var(--surface-2); }
.admin-header { color: #fff; background: var(--ink); }
.admin-header .container { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-brand { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.admin-brand img { width: 42px; height: 42px; }
.admin-main { padding: 38px 0 70px; }
.admin-login { max-width: 570px; margin: 0 auto 28px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.admin-status { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.system-chip { padding: 7px 10px; border-radius: 999px; color: #475569; background: var(--surface-2); font-size: .74rem; font-weight: 800; }
.system-chip.ok { color: var(--green-dark); background: var(--green-soft); }
.system-chip.warn { color: #854d0e; background: #fef3c7; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.admin-tabs button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 11px; color: #475569; background: #fff; font-weight: 800; }
.admin-tabs button.active { color: #fff; border-color: var(--brand); background: var(--brand); }
.admin-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 850px; }
.admin-table th, .admin-table td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: .82rem; vertical-align: middle; }
.admin-table th { color: #475569; background: var(--surface-2); font-size: .73rem; text-transform: uppercase; letter-spacing: .04em; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-product { display: flex; align-items: center; gap: 10px; min-width: 250px; }
.admin-product img { width: 54px; height: 42px; object-fit: cover; border-radius: 8px; }
.admin-actions { display: flex; gap: 7px; }
.icon-small { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; color: var(--ink); background: #fff; }
.icon-small:hover { color: var(--brand); border-color: var(--brand); }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2,6,23,.68);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  width: min(940px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(15px) scale(.98);
  transition: transform .2s;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-header { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 20px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.95); backdrop-filter: blur(10px); }
.modal-header h2 { margin: 0; font-size: 1.15rem; }
.modal-close { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; }
.modal-body { padding: 22px; }
.quick-view { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; }
.quick-view img { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); }
.quick-view h2 { margin: 8px 0 0; }
.quick-view p { color: var(--muted); }
.quick-actions { display: flex; gap: 10px; margin-top: 18px; }

.cart-drawer-backdrop { position: fixed; inset: 0; z-index: 900; background: rgba(2,6,23,.52); opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
.cart-drawer-backdrop.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; z-index: 910; top: 0; right: 0; width: min(430px, 100%); height: 100%; display: flex; flex-direction: column; background: #fff; box-shadow: -20px 0 60px rgba(15,23,42,.2); transform: translateX(100%); transition: transform .28s ease; }
.cart-drawer.open { transform: translateX(0); }
.drawer-header { min-height: 70px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 0; font-size: 1.2rem; }
.drawer-items { flex: 1; overflow: auto; padding: 16px; }
.drawer-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.drawer-item img { width: 76px; height: 60px; object-fit: cover; border-radius: 10px; }
.drawer-item h3 { margin: 0; font-size: .84rem; }
.drawer-item p { margin: 4px 0 0; color: var(--muted); font-size: .74rem; }
.drawer-item button { align-self: start; border: 0; color: var(--red); background: transparent; }
.drawer-footer { padding: 18px; border-top: 1px solid var(--line); background: #fff; }
.drawer-total { display: flex; justify-content: space-between; margin-bottom: 14px; font-weight: 900; }
.drawer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }

.toast-stack { position: fixed; z-index: 1200; right: 18px; bottom: 18px; display: grid; gap: 10px; }
.toast { min-width: 270px; max-width: 380px; display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: start; padding: 13px 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); animation: toast-in .25s ease; }
.toast.success { border-color: #bbf7d0; }
.toast.error { border-color: #fecaca; }
.toast-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; color: var(--green-dark); background: var(--green-soft); }
.toast.error .toast-icon { color: #991b1b; background: var(--red-soft); }
.toast p { margin: 2px 0 0; color: var(--muted); font-size: .78rem; }
.toast button { border: 0; color: var(--muted); background: transparent; }
@keyframes toast-in { from { transform: translateY(12px); opacity: 0; } }

.loading-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.skeleton { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.skeleton::before { content: ""; display: block; aspect-ratio: 4/3; background: linear-gradient(90deg,#eef2f7 25%,#f8fafc 50%,#eef2f7 75%); background-size: 200% 100%; animation: shimmer 1.2s infinite; }
.skeleton-lines { padding: 18px; }
.skeleton-line { height: 11px; margin-bottom: 10px; border-radius: 999px; background: #eef2f7; }
.skeleton-line.short { width: 55%; }
@keyframes shimmer { to { background-position: -200% 0; } }

.site-footer { margin-top: auto; color: #cbd5e1; background: #07111f; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 42px; padding: 62px 0 42px; }
.footer-brand img { width: 220px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { max-width: 420px; color: #94a3b8; }
.footer-title { margin: 0 0 16px; color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #94a3b8; font-size: .86rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 9px; margin-top: 17px; color: #94a3b8; font-size: .84rem; }
.footer-contact strong { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0 28px; border-top: 1px solid rgba(148,163,184,.16); color: #64748b; font-size: .78rem; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom a:hover { color: #fff; }

.whatsapp-fab { position: fixed; z-index: 800; right: 20px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #22c55e; box-shadow: 0 15px 35px rgba(34,197,94,.32); transition: transform .2s; }
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-fab svg { width: 28px; height: 28px; }
body:has(.toast-stack .toast) .whatsapp-fab { bottom: 96px; }
.product-whatsapp { margin-top: 12px; min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 9px; border-radius: 11px; color: #fff; background: #168a45; font-weight: 800; font-size: .9rem; transition: transform .2s, background .2s; }
.product-whatsapp:hover { color: #fff; background: #0d7437; transform: translateY(-2px); }
.product-whatsapp svg { width: 18px; height: 18px; }
.launch-band { background: #082a21; color: #fff; overflow: hidden; }
.launch-band .container { padding-top: 16px; padding-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 20px; text-align: center; }
.launch-band strong { color: #ffd15c; }
.launch-band a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 800; }

@media (min-width: 1400px) {
  .container { --container: 1320px; }
  .product-grid, .loading-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { gap: 80px; }
}

.notice { padding: 14px 16px; border-left: 4px solid var(--brand); border-radius: 0 12px 12px 0; color: #334155; background: var(--brand-soft); font-size: .85rem; }
.notice.warning { border-color: var(--gold); background: var(--gold-soft); }
.notice.danger { border-color: var(--red); background: var(--red-soft); }
.notice.success { border-color: var(--green); background: var(--green-soft); }

@media (max-width: 1100px) {
  .header-main { grid-template-columns: auto 1fr auto; gap: 16px; }
  .logo, .logo img { width: 190px; min-width: 190px; }
  .primary-nav { gap: 17px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid, .loading-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .flow-step:not(:last-child)::after { display: none; }
}

@media (max-width: 880px) {
  :root { --header-height: 70px; }
  .announcement .container { justify-content: center; text-align: center; }
  .announcement .desktop-only { display: none; }
  .header-main { grid-template-columns: auto 1fr auto; }
  .logo, .logo img { width: 176px; min-width: 176px; }
  .header-main > .search-form { display: none; }
  .menu-toggle { display: inline-grid; }
  .nav-bar { position: fixed; inset: 108px 0 auto; max-height: calc(100vh - 108px); overflow: auto; background: #fff; box-shadow: var(--shadow); transform: translateY(-120%); opacity: 0; transition: transform .25s, opacity .25s; }
  .nav-bar.open { transform: translateY(0); opacity: 1; }
  .nav-inner { display: block; padding: 18px 16px 26px; }
  .primary-nav { display: grid; gap: 0; }
  .primary-nav a { padding: 13px 8px; border-bottom: 1px solid var(--line); }
  .nav-support { margin: 18px 8px 0; }
  .hero { padding-top: 52px; }
  .hero-grid, .product-detail, .about-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 650px; margin-inline: auto; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .loading-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { grid-template-columns: 1fr; padding: 34px; text-align: center; }
  .cta-panel .btn { justify-self: center; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; z-index: 1000; inset: 0 auto 0 0; width: min(340px, 90%); overflow: auto; border-radius: 0; transform: translateX(-105%); transition: transform .25s; }
  .filters.open { transform: translateX(0); }
  .filter-backdrop { position: fixed; inset: 0; z-index: 990; background: rgba(2,6,23,.55); opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
  .filter-backdrop.open { opacity: 1; visibility: visible; }
  .mobile-filter-btn { display: inline-flex; }
  .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; display: flex; overflow-x: auto; }
  .policy-nav a { white-space: nowrap; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 58px 0; }
  .header-actions .wishlist-trigger { display: none; }
  .logo, .logo img { width: 154px; min-width: 154px; }
  .header-actions { gap: 6px; }
  .icon-btn { width: 40px; height: 40px; }
  .hero { padding: 42px 0 48px; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 3.6rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .floating-card { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .category-grid, .flow { grid-template-columns: 1fr; }
  .product-grid, .loading-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card { border-radius: 15px; }
  .product-media { border-radius: 15px 15px 0 0; }
  .product-info { padding: 12px; }
  .product-category { font-size: .62rem; }
  .product-title { font-size: .88rem; line-height: 1.25; }
  .product-summary { display: none; }
  .product-meta { margin-top: 7px; }
  .new-product { display: none; }
  .price { font-size: .92rem; }
  .old-price { display: none; }
  .add-cart { width: 38px; height: 38px; }
  .product-whatsapp { min-height: 38px; padding-inline: 7px; font-size: .72rem; }
  .product-whatsapp svg { width: 15px; height: 15px; }
  .category-card { min-height: 0; }
  .category-card img { height: 195px; }
  .section-head { align-items: start; flex-direction: column; }
  .product-title { min-height: 0; }
  .product-summary { min-height: 0; }
  .page-hero { padding: 42px 0; }
  .page-hero-grid { align-items: start; flex-direction: column; }
  .shop-toolbar { align-items: stretch; flex-direction: column; }
  .toolbar-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .select { width: 100%; }
  .detail-feature-list, .detail-notes { grid-template-columns: 1fr; }
  .purchase-actions { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 82px 1fr; align-items: start; }
  .cart-item img { width: 82px; }
  .cart-item-total { grid-column: 2; text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .payment-option { grid-template-columns: auto 1fr; }
  .payment-tag { grid-column: 2; justify-self: start; }
  .order-details { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .quick-view { grid-template-columns: 1fr; }
  .quick-actions { display: grid; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-main > :first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .drawer-actions { grid-template-columns: 1fr; }
  .toast-stack { left: 12px; right: 12px; bottom: 12px; }
  .toast { min-width: 0; max-width: none; }
  .whatsapp-fab { width: 54px; height: 54px; right: 14px; bottom: 16px; }
  .cta-panel { padding: 28px 22px; border-radius: 28px; }
  .launch-band .container { align-items: stretch; flex-direction: column; gap: 7px; font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
