/* ==========================================================================
   TechBR Store — Identidade visual compartilhada
   Paleta: azul-escuro corporativo + ciano tech + âmbar de destaque
   Tipografia: Space Grotesk (display) + Poppins (texto)
   ========================================================================== */

:root {
  /* Cores base */
  --navy-900: #0a1626;
  --navy-800: #0f2138;
  --navy-700: #16304f;
  --navy-600: #1d3e66;
  --steel-500: #2f5887;
  --slate-400: #6f86a6;
  --slate-300: #9fb2cc;
  --mist-200: #d6e1f0;
  --mist-100: #eef3fa;
  --white: #ffffff;

  /* Acentos */
  --cyan-500: #00c2d1;
  --cyan-400: #2fd9e6;
  --cyan-300: #74e8f0;
  --amber-500: #ffb020;
  --amber-400: #ffc04d;
  --green-500: #1fbf75;
  --red-500: #e5484d;

  /* Tokens semânticos */
  --bg: #f4f7fc;
  --bg-elevated: #ffffff;
  --text: #102035;
  --text-soft: #45597a;
  --border: #e1e8f2;

  --shadow-sm: 0 1px 2px rgba(13, 32, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 32, 58, 0.08);
  --shadow-lg: 0 20px 48px rgba(13, 32, 58, 0.14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --maxw: 1200px;
  --header-h: 76px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------------------- Reset ----------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", "Poppins", sans-serif;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-500);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-top: 10px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.section-head p {
  color: var(--text-soft);
  max-width: 460px;
  margin-top: 8px;
}

/* ----------------------------- Buttons --------------------------------- */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(10, 22, 38, 0.25);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  --btn-bg: linear-gradient(135deg, var(--cyan-500), #008fa6);
  --btn-fg: #04222a;
  font-weight: 700;
}

.btn--primary:hover {
  box-shadow: 0 12px 26px rgba(0, 194, 209, 0.4);
}

.btn--amber {
  --btn-bg: linear-gradient(135deg, var(--amber-500), #ff9a00);
  --btn-fg: #2a1c00;
  font-weight: 700;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-900);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--cyan-500);
  color: var(--cyan-500);
  box-shadow: none;
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 16px 34px;
  font-size: 1.02rem;
}

/* ----------------------------- Header ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  background: var(--navy-900);
  color: var(--mist-200);
  font-size: 0.8rem;
}

.topbar .container {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar a:hover {
  color: var(--cyan-400);
}

.topbar .topbar-links {
  display: flex;
  gap: 20px;
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.brand .logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--cyan-500), var(--navy-700));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.brand .logo-mark span {
  display: block;
  transform: skewX(-6deg);
}

.brand b {
  color: var(--cyan-500);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 18px;
  list-style: none;
}

.nav-menu a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-soft);
  transition: color 0.2s, background 0.2s;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--navy-900);
  background: var(--mist-100);
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--navy-800);
  transition: border-color 0.2s, transform 0.2s;
}

.icon-btn:hover {
  border-color: var(--cyan-500);
  transform: translateY(-1px);
}

.icon-btn .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--amber-500);
  color: #2a1c00;
  font-size: 0.68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.search {
  flex: 1;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--mist-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
}

.search input {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
}

.search svg {
  color: var(--slate-400);
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  place-items: center;
}

/* ----------------------------- Hero ------------------------------------ */
.hero {
  background: radial-gradient(
      1100px 480px at 80% -10%,
      rgba(0, 194, 209, 0.18),
      transparent 60%
    ),
    linear-gradient(160deg, var(--navy-900), var(--navy-700) 70%, var(--navy-600));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding-block: 84px;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.05;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--cyan-400);
}

.hero-copy p {
  color: var(--mist-200);
  font-size: 1.1rem;
  margin-top: 18px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 38px;
  margin-top: 44px;
}

.hero-stats .stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  color: #fff;
  display: block;
}

.hero-stats .stat span {
  font-size: 0.85rem;
  color: var(--slate-300);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual .float-card {
  position: absolute;
  background: #fff;
  color: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-visual .float-card .dot {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--mist-100);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.hero-visual .float-card.fc-1 {
  bottom: -22px;
  left: -24px;
}

.hero-visual .float-card.fc-2 {
  top: -20px;
  right: -18px;
}

.hero-visual .float-card small {
  display: block;
  font-weight: 500;
  color: var(--text-soft);
  font-size: 0.74rem;
}

/* ----------------------------- Marquee --------------------------------- */
.trust-strip {
  background: var(--navy-800);
  color: var(--mist-200);
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  flex-wrap: wrap;
}

.trust-strip .trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.92rem;
  font-weight: 500;
}

.trust-strip .trust-item svg {
  color: var(--cyan-400);
  flex-shrink: 0;
}

/* ----------------------------- Categories ------------------------------ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-800);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 0.5s var(--ease), opacity 0.35s;
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 38, 0.88),
    rgba(10, 22, 38, 0.12)
  );
}

.cat-card .cat-label {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  color: #fff;
}

.cat-card .cat-label strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  display: block;
}

.cat-card .cat-label span {
  font-size: 0.82rem;
  color: var(--cyan-300);
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cat-card:hover img {
  transform: scale(1.07);
  opacity: 0.65;
}

/* ----------------------------- Products -------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 194, 209, 0.4);
}

.product-media {
  position: relative;
  background: var(--mist-100);
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--amber-500);
  color: #2a1c00;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.product-tag.tag-new {
  background: var(--cyan-500);
  color: #04222a;
}

.wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: grid;
  place-items: center;
  color: var(--slate-400);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s, transform 0.3s, color 0.2s;
}

.product-card:hover .wish {
  opacity: 1;
  transform: translateY(0);
}

.wish:hover {
  color: var(--red-500);
}

.product-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-500);
  font-weight: 600;
}

.product-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  margin-top: 4px;
  color: var(--navy-900);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.stars {
  color: var(--amber-500);
  letter-spacing: 1px;
}

.product-price {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.product-price .now {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.36rem;
  font-weight: 700;
  color: var(--navy-900);
}

.product-price .was {
  font-size: 0.9rem;
  color: var(--slate-400);
  text-decoration: line-through;
}

.product-install {
  font-size: 0.8rem;
  color: var(--green-500);
  font-weight: 600;
  margin-top: 2px;
}

.product-body .btn {
  margin-top: 16px;
}

/* ----------------------------- Promo banner ---------------------------- */
.promo {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.promo::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 209, 0.35), transparent 70%);
  right: -60px;
  top: -90px;
}

.promo h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
}

.promo p {
  color: var(--mist-200);
  margin-top: 12px;
  position: relative;
}

.promo .promo-actions {
  position: relative;
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.countdown {
  display: flex;
  gap: 12px;
  position: relative;
  justify-content: flex-end;
}

.countdown .unit {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
  min-width: 72px;
}

.countdown .unit strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  display: block;
}

.countdown .unit span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-300);
}

/* ----------------------------- Footer ---------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: var(--mist-200);
  margin-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 60px;
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--slate-300);
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--mist-200);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  background: var(--cyan-500);
  color: #04222a;
  border-color: var(--cyan-500);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--slate-300);
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  color: var(--cyan-400);
  padding-left: 4px;
}

.footer-pay {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.footer-pay span {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--mist-100);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--slate-400);
}

.footer-bottom a:hover {
  color: var(--cyan-400);
}

/* ----------------------------- Auth pages ------------------------------ */
.auth-wrap {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-aside {
  background: radial-gradient(
      800px 400px at 30% 20%,
      rgba(0, 194, 209, 0.22),
      transparent 60%
    ),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-aside h2 {
  color: #fff;
  font-size: 2rem;
  margin-top: 18px;
}

.auth-aside p {
  color: var(--mist-200);
  margin-top: 14px;
  max-width: 380px;
}

.auth-aside .auth-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 20px;
}

.auth-aside .auth-feature svg {
  color: var(--cyan-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.auth-aside .auth-feature strong {
  display: block;
  color: #fff;
}

.auth-aside .auth-feature span {
  font-size: 0.86rem;
  color: var(--slate-300);
}

.auth-main {
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: var(--bg);
}

.auth-card {
  width: 100%;
  max-width: 420px;
}

.auth-card h1 {
  font-size: 1.9rem;
}

.auth-card > p {
  color: var(--text-soft);
  margin-top: 8px;
  margin-bottom: 28px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.96rem;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(0, 194, 209, 0.15);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-hint {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  margin-bottom: 22px;
}

.field-hint a {
  color: var(--cyan-500);
  font-weight: 600;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
}

.checkbox input {
  width: 17px;
  height: 17px;
  accent-color: var(--cyan-500);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  color: var(--slate-400);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-row .btn--ghost {
  background: #fff;
}

.auth-foot {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.auth-foot a {
  color: var(--cyan-500);
  font-weight: 600;
}

.form-msg {
  font-size: 0.86rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  display: none;
}

.form-msg.is-error {
  display: block;
  background: rgba(229, 72, 77, 0.1);
  color: var(--red-500);
  border: 1px solid rgba(229, 72, 77, 0.25);
}

.form-msg.is-ok {
  display: block;
  background: rgba(31, 191, 117, 0.1);
  color: var(--green-500);
  border: 1px solid rgba(31, 191, 117, 0.25);
}

/* ----------------------------- Breadcrumb ------------------------------ */
.page-head {
  background: var(--mist-100);
  border-bottom: 1px solid var(--border);
  padding-block: 26px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.breadcrumb a:hover {
  color: var(--cyan-500);
}

.breadcrumb .sep {
  color: var(--slate-400);
}

/* ----------------------------- Product detail -------------------------- */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: flex-start;
}

.gallery .gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.gallery .thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.gallery .thumbs button {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  transition: border-color 0.2s;
}

.gallery .thumbs button.is-active,
.gallery .thumbs button:hover {
  border-color: var(--cyan-500);
}

.pdp-info .product-cat {
  font-size: 0.82rem;
}

.pdp-info h1 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-top: 6px;
}

.pdp-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.pill-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-500);
  font-weight: 600;
}

.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 22px 0 8px;
}

.pdp-price .now {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-900);
}

.pdp-price .was {
  font-size: 1.1rem;
  color: var(--slate-400);
  text-decoration: line-through;
}

.pdp-price .off {
  background: rgba(31, 191, 117, 0.12);
  color: var(--green-500);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.pdp-info > p.lead {
  color: var(--text-soft);
  margin: 18px 0;
}

.spec-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
}

.spec-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.94rem;
}

.spec-list svg {
  color: var(--cyan-500);
  flex-shrink: 0;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.qty button {
  width: 44px;
  height: 48px;
  border: none;
  background: #fff;
  font-size: 1.2rem;
  color: var(--navy-800);
  transition: background 0.2s;
}

.qty button:hover {
  background: var(--mist-100);
}

.qty input {
  width: 48px;
  text-align: center;
  border: none;
  outline: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.pdp-buy {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

.pdp-trust {
  display: flex;
  gap: 22px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.pdp-trust .t {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.pdp-trust svg {
  color: var(--cyan-500);
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.rating-box {
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.rating-box .big {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.rating-box .stars {
  font-size: 1.3rem;
  margin: 8px 0;
}

.rating-box small {
  color: var(--text-soft);
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.bar {
  flex: 1;
  height: 7px;
  border-radius: 999px;
  background: var(--mist-200);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  background: var(--amber-500);
  border-radius: 999px;
}

.review {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-head .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-500), var(--navy-700));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.review-head strong {
  display: block;
  color: var(--navy-900);
}

.review-head .stars {
  font-size: 0.9rem;
}

.review-head .when {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--slate-400);
}

.review p {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--green-500);
  font-weight: 600;
  margin-top: 8px;
}

/* ----------------------------- Checkout -------------------------------- */
.checkout {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 36px;
  align-items: flex-start;
}

.checkout-form .block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}

.block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.block-head .step-no {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.block-head h3 {
  font-size: 1.15rem;
}

.card-input-wrap {
  position: relative;
}

.card-input-wrap .card-brands {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
}

.card-brands span {
  font-size: 0.62rem;
  font-weight: 700;
  background: var(--mist-100);
  border: 1px solid var(--border);
  padding: 3px 6px;
  border-radius: 4px;
  color: var(--slate-400);
}

.summary {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.summary h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.summary-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.summary-item img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border);
}

.summary-item .si-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
}

.summary-item .si-qty {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.summary-item .si-price {
  margin-left: auto;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 6px;
}

.summary-total strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: var(--navy-900);
}

.summary .coupon {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.summary .coupon input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.secure-note svg {
  color: var(--green-500);
}

/* ----------------------------- Account --------------------------------- */
.account {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.account-side {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.account-user {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.account-user .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--cyan-500), var(--navy-700));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.account-user strong {
  display: block;
  color: var(--navy-900);
}

.account-user span {
  font-size: 0.84rem;
  color: var(--text-soft);
}

.account-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: background 0.2s, color 0.2s;
}

.account-nav a svg {
  flex-shrink: 0;
}

.account-nav a:hover,
.account-nav a.is-active {
  background: var(--mist-100);
  color: var(--navy-900);
}

.account-nav a.danger:hover {
  background: rgba(229, 72, 77, 0.08);
  color: var(--red-500);
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.stat-card .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--mist-100);
  display: grid;
  place-items: center;
  color: var(--cyan-500);
  margin-bottom: 12px;
}

.stat-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  display: block;
  color: var(--navy-900);
}

.stat-card span {
  font-size: 0.84rem;
  color: var(--text-soft);
}

.panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.panel-head h3 {
  font-size: 1.12rem;
}

.panel-body {
  padding: 8px 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  text-align: left;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-400);
  font-weight: 600;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 15px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr {
  transition: background 0.15s;
}

.data-table tbody tr:hover {
  background: var(--mist-100);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
}

.status-pill.s-ok {
  background: rgba(31, 191, 117, 0.12);
  color: var(--green-500);
}

.status-pill.s-pending {
  background: rgba(255, 176, 32, 0.14);
  color: #b97c00;
}

.status-pill.s-transit {
  background: rgba(0, 194, 209, 0.12);
  color: #0090a0;
}

.status-pill.s-cancel {
  background: rgba(229, 72, 77, 0.1);
  color: var(--red-500);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  padding: 24px;
}

.info-grid .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  font-weight: 600;
}

.info-grid .value {
  font-weight: 500;
  color: var(--navy-900);
  margin-top: 3px;
}

/* ----------------------------- Admin ----------------------------------- */
.admin-login-bg {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(0, 194, 209, 0.18),
      transparent 60%
    ),
    linear-gradient(160deg, var(--navy-900), #050d18);
  padding: 24px;
}

.admin-login-card {
  width: 100%;
  max-width: 400px;
  background: rgba(15, 33, 56, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.admin-login-card .brand {
  color: #fff;
  justify-content: center;
  margin-bottom: 8px;
}

.admin-login-card .admin-tag {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-400);
  font-weight: 600;
  margin-bottom: 28px;
}

.admin-login-card .field label {
  color: var(--mist-200);
}

.admin-login-card .field input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.admin-login-card .field input::placeholder {
  color: var(--slate-400);
}

.admin-login-card .field input:focus {
  border-color: var(--cyan-400);
}

.admin-foot-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate-400);
  margin-top: 22px;
}

/* Admin shell */
.admin-shell {
  display: grid;
  grid-template-columns: 248px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--navy-900);
  color: var(--mist-200);
  padding: 24px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-sidebar .brand {
  color: #fff;
  padding: 0 8px 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.admin-menu .group-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-400);
  padding: 16px 12px 8px;
}

.admin-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--slate-300);
  transition: background 0.18s, color 0.18s;
}

.admin-menu a svg {
  flex-shrink: 0;
}

.admin-menu a:hover,
.admin-menu a.is-active {
  background: rgba(0, 194, 209, 0.14);
  color: #fff;
}

.admin-userbox {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  margin-top: 12px;
}

.admin-userbox .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-500), var(--navy-600));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.admin-userbox strong {
  display: block;
  color: #fff;
  font-size: 0.86rem;
}

.admin-userbox span {
  font-size: 0.74rem;
  color: var(--slate-400);
}

.admin-main {
  background: var(--bg);
  min-height: 100vh;
}

.admin-topbar {
  height: 68px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.admin-topbar h1 {
  font-size: 1.3rem;
}

.admin-topbar .search {
  max-width: 320px;
}

.admin-topbar .spacer {
  margin-left: auto;
}

.admin-content {
  padding: 28px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.kpi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.kpi .kpi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.kpi .kpi-top .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
}

.kpi .ic.b1 {
  background: linear-gradient(135deg, var(--cyan-500), #0090a0);
}
.kpi .ic.b2 {
  background: linear-gradient(135deg, var(--amber-500), #ff9a00);
}
.kpi .ic.b3 {
  background: linear-gradient(135deg, var(--green-500), #119a5c);
}
.kpi .ic.b4 {
  background: linear-gradient(135deg, var(--steel-500), var(--navy-700));
}

.kpi .trend {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.kpi .trend.up {
  background: rgba(31, 191, 117, 0.12);
  color: var(--green-500);
}

.kpi .trend.down {
  background: rgba(229, 72, 77, 0.1);
  color: var(--red-500);
}

.kpi strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  color: var(--navy-900);
  display: block;
}

.kpi span {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.admin-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admin-panel .ap-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.admin-panel .ap-head h3 {
  font-size: 1.05rem;
}

.admin-panel .ap-head .muted {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* CSS bar chart */
.chart {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 220px;
  padding: 24px 22px;
}

.chart .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.chart .col .bar {
  width: 100%;
  max-width: 46px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(to top, var(--cyan-500), var(--cyan-300));
  transition: height 0.6s var(--ease), filter 0.2s;
  position: relative;
}

.chart .col:nth-child(even) .bar {
  background: linear-gradient(to top, var(--navy-700), var(--steel-500));
}

.chart .col .bar:hover {
  filter: brightness(1.08);
}

.chart .col .bar .val {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-800);
  white-space: nowrap;
}

.chart .col label {
  font-size: 0.76rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* Donut via conic-gradient */
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 22px;
}

.donut {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(
    var(--cyan-500) 0 42%,
    var(--amber-500) 42% 68%,
    var(--green-500) 68% 86%,
    var(--steel-500) 86% 100%
  );
  display: grid;
  place-items: center;
  position: relative;
}

.donut::after {
  content: "";
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
}

.donut .center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.donut .center strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  display: block;
  color: var(--navy-900);
}

.donut .center span {
  font-size: 0.7rem;
  color: var(--text-soft);
}

.legend {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.88rem;
}

.legend li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
}

.legend .sw {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.legend .pct {
  margin-left: auto;
  font-weight: 700;
  color: var(--navy-900);
}

.mono {
  font-family: "Space Grotesk", monospace;
  letter-spacing: -0.01em;
}

.sensitive {
  color: var(--red-500);
  font-weight: 600;
}

.banner-warn {
  background: rgba(255, 176, 32, 0.12);
  border: 1px solid rgba(255, 176, 32, 0.3);
  color: #8a5a00;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.88rem;
  margin-bottom: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ----------------------------- Responsive ------------------------------ */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero .container,
  .pdp,
  .checkout,
  .reviews {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-row {
    grid-template-columns: 1fr;
  }
  .auth-wrap {
    grid-template-columns: 1fr;
  }
  .auth-aside {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-menu,
  .search,
  .topbar .topbar-links {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .account {
    grid-template-columns: 1fr;
  }
  .account-side {
    position: static;
  }
  .stat-cards {
    grid-template-columns: 1fr;
  }
  .promo,
  .checkout {
    grid-template-columns: 1fr;
  }
  .countdown {
    justify-content: flex-start;
  }
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    display: none;
  }
  .info-grid,
  .field-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding-block: 48px;
  }
}

@media (max-width: 480px) {
  .product-grid,
  .cat-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 24px;
  }
}
