:root {
  --bg: #f6f8fb;
  --bg-soft: #edf2f7;
  --panel: #ffffff;
  --panel-glass: rgba(255, 255, 255, 0.82);
  --line: #d8e1ec;
  --text: #17212b;
  --muted: #637386;
  --muted-soft: #8a98a8;
  --accent: #1d4ed8;
  --accent-soft: #0e7490;
  --tech-blue: #38bdf8;
  --green: #18a058;
  --primary: #1d4ed8;
  --primary-dark: #0f3f82;
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 16px 36px rgba(15, 23, 42, 0.08);
  --glow: 0 0 34px rgba(29, 78, 216, 0.18);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(56, 189, 248, 0.14), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(29, 78, 216, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(14, 116, 144, 0.08), transparent 280px),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(14, 116, 144, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.12), transparent 18%),
    radial-gradient(circle at 75% 65%, rgba(29, 78, 216, 0.10), transparent 22%);
  background-size: 42px 42px, 42px 42px, 100% 100%, 100% 100%;
  animation: circuitDrift 18s linear infinite;
}

@keyframes circuitDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 42px 42px, -42px 42px, 0 0, 0 0; }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orbitSpin {
  from { transform: rotateX(64deg) rotateZ(0deg); }
  to { transform: rotateX(64deg) rotateZ(360deg); }
}

@keyframes levitate {
  0%, 100% { transform: translateY(0) rotateX(-14deg) rotateY(28deg); }
  50% { transform: translateY(-12px) rotateX(-8deg) rotateY(40deg); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.30); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(56, 189, 248, 0); }
}

@keyframes propFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

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

.wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 48px;
}

header {
  width: min(1200px, calc(100% - 28px));
  margin: 10px auto 0;
  position: sticky;
  top: 8px;
  z-index: 30;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 14px;
  border: 1px solid rgba(216, 225, 236, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  position: relative;
  animation: floatIn 0.55s ease both;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.55), rgba(255, 255, 255, 0), rgba(29, 78, 216, 0.35));
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.16);
}

.logo-text {
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  white-space: nowrap;
}

.accent {
  color: var(--accent);
}

.nav > div:last-child {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 78, 216, 0.28);
  box-shadow: var(--glow);
}

.btn.green,
.btn-whatsapp {
  border-color: transparent;
  background: linear-gradient(135deg, #18a058, #0e7490);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(14, 116, 144, 0.18);
}

main {
  width: min(1200px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0 26px;
}

.store-hero,
.store-controls,
.card,
.modal-content {
  border: 1px solid rgba(216, 225, 236, 0.9);
  background: var(--panel-glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.store-hero {
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
  align-items: center;
  gap: 18px;
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 14px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.18), transparent 24%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.68), transparent 58%),
    linear-gradient(135deg, rgba(29, 78, 216, 0.10), rgba(14, 116, 144, 0.08)),
    var(--panel);
  animation: floatIn 0.7s ease both;
}

.store-hero::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  border: 1px solid rgba(29, 78, 216, 0.22);
  box-shadow: inset 0 0 36px rgba(56, 189, 248, 0.12);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--accent-soft);
  background: rgba(14, 116, 144, 0.08);
  border: 1px solid rgba(14, 116, 144, 0.13);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-hero h1 {
  margin: 12px 0 10px;
  max-width: 720px;
  font-size: clamp(2.05rem, 4.2vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.muted {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.store-visual {
  min-height: 255px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.tech-prop {
  position: absolute;
  z-index: 4;
  transform-style: preserve-3d;
  filter: drop-shadow(0 16px 18px rgba(15, 23, 42, 0.14));
  animation: propFloat 2.8s ease-in-out infinite;
}

.store-esp32 {
  left: 8px;
  top: 18px;
  width: 92px;
  height: 62px;
  transform: rotateX(58deg) rotateZ(-16deg);
}

.store-esp32 .board {
  position: absolute;
  inset: 8px 10px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 76%, rgba(255,255,255,0.78) 0 2px, transparent 3px),
    linear-gradient(145deg, #0f766e, #0e7490);
  border: 1px solid rgba(15, 118, 110, 0.65);
  box-shadow: inset 0 0 16px rgba(255,255,255,0.18), 0 12px 24px rgba(14, 116, 144, 0.16);
}

.store-esp32 .board::before,
.store-esp32 .board::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(180deg, #dbeafe 0 3px, transparent 3px 7px);
}

.store-esp32 .board::before { left: -6px; }
.store-esp32 .board::after { right: -6px; }

.store-esp32 .chip {
  position: absolute;
  left: 29px;
  top: 18px;
  width: 30px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(145deg, #111827, #334155);
}

.store-bulb {
  right: 18px;
  top: 34px;
  width: 64px;
  height: 82px;
  animation-delay: -0.8s;
}

.store-bulb .glass {
  position: absolute;
  left: 10px;
  top: 0;
  width: 44px;
  height: 50px;
  border-radius: 50% 50% 43% 43%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.96), rgba(255,255,255,0.2) 20%, transparent 34%),
    radial-gradient(circle, rgba(56,189,248,0.48), rgba(29,78,216,0.12) 58%, rgba(255,255,255,0.1));
  border: 1px solid rgba(29,78,216,0.25);
  box-shadow: 0 0 30px rgba(56,189,248,0.44), inset 0 0 16px rgba(255,255,255,0.54);
}

.store-bulb .base {
  position: absolute;
  left: 21px;
  top: 49px;
  width: 24px;
  height: 21px;
  border-radius: 5px 5px 10px 10px;
  background: repeating-linear-gradient(180deg, #94a3b8 0 4px, #e2e8f0 4px 7px);
  border: 1px solid rgba(100,116,139,0.36);
}

.store-bot {
  left: 42px;
  bottom: 18px;
  width: 74px;
  height: 56px;
  animation-delay: -1.4s;
}

.store-bot .arm {
  position: absolute;
  left: 8px;
  top: 24px;
  width: 44px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(145deg, #e2e8f0, #94a3b8);
  transform: rotate(-18deg);
}

.store-bot .arm::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -7px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, #38bdf8 42%, #1d4ed8 72%);
}

.store-bot .claw {
  position: absolute;
  right: 4px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-top: 5px solid #1f2937;
  border-right: 5px solid #1f2937;
  border-radius: 0 13px 0 0;
  transform: rotate(32deg);
}

.store-bot .claw::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -20px;
  width: 26px;
  height: 26px;
  border-bottom: 5px solid #1f2937;
  border-right: 5px solid #1f2937;
  border-radius: 0 0 13px 0;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(29, 78, 216, 0.22);
  background:
    radial-gradient(circle, transparent 0 34%, rgba(56, 189, 248, 0.13) 35%, transparent 58%),
    conic-gradient(from 90deg, transparent, rgba(29, 78, 216, 0.45), rgba(56, 189, 248, 0.12), rgba(56, 189, 248, 0.38), transparent);
  box-shadow: 0 18px 42px rgba(29, 78, 216, 0.14);
  transform: rotateX(64deg);
  animation: orbitSpin 6s linear infinite;
}

.orbit-one {
  width: 245px;
  height: 245px;
}

.orbit-two {
  width: 176px;
  height: 176px;
  animation-duration: 4.5s;
  animation-direction: reverse;
  opacity: 0.72;
}

.chip-plate {
  width: 124px;
  height: 124px;
  border-radius: 31px;
  position: relative;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.18) 44%, transparent 45%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(226,241,255,0.92)),
    linear-gradient(135deg, rgba(29,78,216,0.12), rgba(56,189,248,0.2));
  border: 1px solid rgba(29, 78, 216, 0.24);
  box-shadow:
    20px 22px 0 rgba(15, 23, 42, 0.08),
    0 28px 68px rgba(29, 78, 216, 0.22),
    inset 0 0 28px rgba(56, 189, 248, 0.16);
  animation: levitate 3.4s ease-in-out infinite;
  z-index: 5;
}

.chip-plate::before,
.chip-plate::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  inset: 8px;
  border: 1px solid rgba(14, 116, 144, 0.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.72), rgba(226,241,255,0.16)),
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(29,78,216,0.08) 10px 11px);
}

.chip-plate::before {
  transform: translate3d(-18px, -10px, -16px);
  opacity: 0.55;
}

.chip-plate::after {
  transform: translateZ(24px);
}

.chip-core {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(145deg, #111827, #334155);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 10px 20px rgba(15,23,42,0.18);
}

.hero-logo-mark {
  position: relative;
  z-index: 5;
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 50%;
  transform: translateZ(46px);
  filter: drop-shadow(0 14px 16px rgba(15, 23, 42, 0.22));
}

.chip-pin {
  position: absolute;
  z-index: 3;
  top: 31px;
  bottom: 31px;
  width: 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(180deg, #dbeafe 0 4px, transparent 4px 9px);
}

.pin-left { left: 11px; }
.pin-right { right: 11px; }

.sensor-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, #38bdf8 42%, #1d4ed8 72%);
  animation: pulseDot 2.1s ease-in-out infinite;
}

.sensor-a { top: 34px; right: 72px; }
.sensor-b { bottom: 48px; left: 58px; animation-delay: -0.8s; }
.sensor-c { bottom: 72px; right: 36px; animation-delay: -1.3s; }

.store-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: var(--radius);
  padding: 16px;
  margin: 14px 0;
  animation: floatIn 0.8s ease both;
}

.store-controls h2 {
  margin: 8px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: -0.04em;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(216, 225, 236, 0.95);
  cursor: pointer;
  background: #ffffff;
  color: var(--text);
  font-weight: 800;
  font-size: 0.86rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.filter:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 78, 216, 0.28);
  box-shadow: var(--glow);
}

.filter.active {
  background: linear-gradient(135deg, var(--accent), var(--tech-blue));
  color: #ffffff;
  border-color: transparent;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(218px, 1fr));
  gap: 18px;
}

.card {
  min-height: 304px;
  border-radius: 22px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 10%, rgba(56, 189, 248, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.38), transparent 48%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.card:hover {
  transform: translateY(-6px) rotateX(1deg);
  border-color: rgba(29, 78, 216, 0.25);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.card:hover::before {
  opacity: 1;
}

.card img {
  width: 100%;
  height: 152px;
  object-fit: contain;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(56, 189, 248, 0.12), transparent 48%),
    linear-gradient(145deg, #f8fbff, #eef5fb);
  border: 1px solid rgba(216, 225, 236, 0.82);
  padding: 10px;
  position: relative;
  z-index: 1;
}

.card h4 {
  margin: 12px 0 6px;
  min-height: 44px;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif !important;
  font-size: 0.98rem;
  font-weight: 800 !important;
  line-height: 1.25;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}

.price {
  width: fit-content;
  margin: 2px 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.12);
  font-size: 1.02rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.card .btn,
.card button {
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--accent), var(--tech-blue));
  border-color: transparent;
  color: #ffffff;
}

.add-btn.added {
  transform: scale(1.04);
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.cart-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px solid rgba(216, 225, 236, 0.9);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(226,241,255,0.86)),
    linear-gradient(135deg, rgba(29, 78, 216, 0.16), rgba(56, 189, 248, 0.16));
  box-shadow: 0 20px 46px rgba(29, 78, 216, 0.20);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cart-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(29, 78, 216, 0.26);
}

.cart-symbol {
  width: 29px;
  height: 23px;
  position: relative;
  border: 3px solid var(--accent);
  border-top: 0;
  border-radius: 6px 6px 9px 9px;
}

.cart-symbol::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -9px;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  transform: skewX(-16deg);
}

.cart-symbol::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -9px;
  height: 5px;
  background:
    radial-gradient(circle at left center, var(--accent) 0 3px, transparent 3.5px),
    radial-gradient(circle at right center, var(--accent) 0 3px, transparent 3.5px);
}

.badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #f97316);
  border: 2px solid #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 18px;
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(10px);
}

.modal-content {
  width: min(480px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 24px;
  padding: 20px;
}

.modal-content h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.modal-content h4 {
  margin: 14px 0;
  color: var(--accent);
  font-size: 1.2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(216, 225, 236, 0.86);
  color: var(--text);
}

.cart-item > span:first-child {
  font-weight: 800;
  line-height: 1.25;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.qty button {
  min-width: 28px;
  height: 28px;
  border: 1px solid rgba(216, 225, 236, 0.9);
  border-radius: 9px;
  background: #ffffff;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.qty button:hover {
  border-color: rgba(29, 78, 216, 0.28);
  color: var(--accent);
}

footer {
  width: min(1200px, calc(100% - 28px));
}

@media (max-width: 760px) {
  header,
  main,
  footer {
    width: min(100% - 20px, 1200px);
  }

  .nav {
    align-items: stretch;
    flex-direction: column;
  }

  .nav > div:last-child {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }

  .nav .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .store-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .store-visual {
    min-height: 210px;
    order: -1;
  }

  .store-esp32 {
    left: 8px;
    top: 10px;
    transform: rotateX(58deg) rotateZ(-16deg) scale(0.88);
  }

  .store-bulb {
    right: 8px;
    top: 24px;
    transform: scale(0.88);
  }

  .store-bot {
    left: 28px;
    bottom: 8px;
    transform: scale(0.88);
  }

  .chip-plate {
    width: 112px;
    height: 112px;
  }

  .hero-logo-mark {
    width: 74px;
    height: 74px;
  }

  .store-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .filters {
    justify-content: flex-start;
  }

  .filter {
    flex: 1 1 auto;
    text-align: center;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .card {
    min-height: 282px;
    padding: 10px;
  }

  .card img {
    height: 130px;
  }

  .cart-btn {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .store-hero h1 {
    font-size: clamp(2rem, 13vw, 3rem);
  }

  .hero-actions {
    display: grid;
  }

  .nav > div:last-child {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .card h4 {
    font-size: 0.9rem;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }
}
