:root {
  --ink: #0b0d0c;
  --ink-soft: #121613;
  --muted: #5f6368;
  --line: #d9ded6;
  --paper: #0e1110;
  --panel: #ffffff;
  --lime: #a6df2f;
  --lime-strong: #8fd21f;
  --lime-soft: #eaf8c6;
  --blue: #25aeea;
  --blue-deep: #1f62b3;
  --shadow: 0 18px 42px rgba(11, 13, 12, 0.16);
  --page-pad: clamp(18px, 4vw, 56px);
  --menu-safe-pad: clamp(92px, 9vw, 126px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #f7f9f2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 80% 8%, rgba(37, 174, 234, 0.16), transparent 28%),
    var(--paper);
  background-size: 38px 38px, 38px 38px, auto, auto;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(8, 10, 9, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.button,
.header-cart {
  display: inline-flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  justify-self: start;
  transition: transform 160ms ease, opacity 160ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  background: var(--ink);
  border: 2px solid rgba(166, 223, 47, 0.7);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(37, 174, 234, 0.16);
}

.nav {
  display: flex;
  justify-self: center;
  gap: 8px;
  padding: 6px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(31, 98, 179, 0.22);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.is-scrolled .topbar .nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
}

.nav a {
  padding: 9px 12px;
  border-radius: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.header-cart {
  justify-self: end;
  gap: 9px;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(166, 223, 47, 0.16);
  cursor: pointer;
  font-weight: 900;
}

.header-cart svg {
  width: 18px;
  height: 18px;
}

.header-cart span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 7px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
}

.menu-toggle {
  position: fixed;
  left: clamp(16px, 3vw, 30px);
  top: 96px;
  z-index: 40;
  display: grid;
  gap: 5px;
  width: 52px;
  height: 52px;
  place-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-14px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.is-scrolled .menu-toggle {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(4px);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.side-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: min(82vw, 330px);
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(37, 174, 234, 0.12), transparent 40%),
    #090c0b;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 28px 0 60px rgba(0, 0, 0, 0.42);
  transform: translateX(-102%);
  transition: transform 220ms ease;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.side-menu-head img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border: 2px solid rgba(166, 223, 47, 0.7);
  border-radius: 8px;
}

.menu-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  cursor: pointer;
}

.menu-close svg {
  width: 20px;
  height: 20px;
}

.side-nav {
  display: grid;
  gap: 10px;
}

.side-nav a {
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-weight: 800;
}

.side-nav a:hover {
  background: linear-gradient(135deg, rgba(37, 174, 234, 0.36), rgba(166, 223, 47, 0.18));
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(92vw, 430px);
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(166, 223, 47, 0.1), transparent 42%),
    #090c0b;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: -28px 0 60px rgba(0, 0, 0, 0.42);
  transform: translateX(102%);
  transition: transform 220ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
}

.cart-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.cart-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  cursor: pointer;
}

.cart-close svg {
  width: 20px;
  height: 20px;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.cart-item {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-item h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.cart-item small,
.cart-summary span,
.cart-empty span {
  color: rgba(247, 249, 242, 0.66);
}

.cart-item-price {
  white-space: nowrap;
  color: var(--lime);
  font-weight: 900;
}

.cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.qty-controls {
  display: inline-grid;
  grid-template-columns: 38px 42px 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.qty-controls button,
.remove-item,
.cart-clear {
  cursor: pointer;
}

.qty-controls button {
  height: 38px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
}

.qty-controls span {
  text-align: center;
  font-weight: 900;
}

.qty-controls.fixed {
  grid-template-columns: auto;
  padding: 0 14px;
  min-height: 38px;
}

.qty-controls.fixed button {
  display: none;
}

.remove-item,
.cart-clear {
  color: rgba(247, 249, 242, 0.78);
  background: transparent;
  border: 0;
  font-weight: 800;
}

.cart-empty {
  display: none;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 280px;
  text-align: center;
}

.cart-empty.visible {
  display: grid;
}

.cart-empty svg {
  width: 42px;
  height: 42px;
  color: var(--lime);
}

.cart-summary {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.cart-summary > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-summary > div + div {
  padding-top: 0;
  border-top: 0;
}

.cart-summary .cart-discount span,
.cart-summary .cart-discount strong {
  color: var(--lime);
}

.cart-summary strong {
  color: var(--lime);
  font-size: 28px;
}

.cart-summary .cart-discount strong,
.cart-summary > div:first-child strong {
  font-size: 18px;
}

.cart-summary .button {
  width: 100%;
  cursor: pointer;
}

.cart-summary .checkout-whatsapp-mark {
  color: #25d366;
  fill: currentColor;
}

.button svg {
  width: 18px;
  height: 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 74px);
  padding: clamp(34px, 6vw, 76px) var(--page-pad) 38px;
  transition: padding-left 180ms ease;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 9vw, 116px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 22px);
}

.hero-title img {
  width: clamp(58px, 9vw, 118px);
  height: clamp(58px, 9vw, 118px);
  flex: 0 0 auto;
  object-fit: cover;
  border: 2px solid rgba(166, 223, 47, 0.68);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(37, 174, 234, 0.22);
}

.hero-title span {
  min-width: 0;
}

.hero-title strong {
  color: var(--lime);
  font-weight: inherit;
}

.section .eyebrow {
  font-size: clamp(15px, 1.6vw, 20px);
  margin-bottom: 16px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(247, 249, 242, 0.78);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #1c2516);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.print-plate {
  position: relative;
  width: min(100%, 680px);
  aspect-ratio: 1.12;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    radial-gradient(circle at 26% 20%, rgba(37, 174, 234, 0.2), transparent 30%),
    linear-gradient(145deg, #151814, #0b0d0c 62%, #050706);
  background-size: 28px 28px, 28px 28px, auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(9deg) rotateZ(-2deg);
}

.print-plate::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 2px solid rgba(166, 223, 47, 0.38);
  border-radius: 6px;
}

.object,
.nozzle {
  position: absolute;
}

.object {
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.35));
}

.object-a {
  left: 12%;
  bottom: 15%;
  width: 31%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 36%, transparent 0 26%, #b9ed45 27% 40%, transparent 41%),
    conic-gradient(from 90deg, #9bd829, #c7f15a, #9bd829, #6fa915, #9bd829);
  border-radius: 50%;
}

.object-b {
  right: 14%;
  bottom: 18%;
  width: 30%;
  height: 36%;
  background:
    linear-gradient(90deg, transparent 0 21%, rgba(255, 255, 255, 0.18) 22% 24%, transparent 25% 47%, rgba(255, 255, 255, 0.18) 48% 50%, transparent 51%),
    linear-gradient(145deg, #36c8f4, #1f62b3);
  border-radius: 14px 14px 8px 8px;
}

.object-c {
  left: 39%;
  top: 22%;
  width: 22%;
  height: 29%;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0 3px, transparent 3px 10px),
    linear-gradient(135deg, #c4ed3e, #8fd21f);
  clip-path: polygon(50% 0, 100% 24%, 100% 76%, 50% 100%, 0 76%, 0 24%);
}

.nozzle {
  top: 0;
  left: 45%;
  width: 98px;
  height: 150px;
  background: linear-gradient(180deg, #d1d5db, #64748b);
  clip-path: polygon(16% 0, 84% 0, 84% 54%, 62% 54%, 50% 100%, 38% 54%, 16% 54%);
}

.nozzle span {
  position: absolute;
  left: 48px;
  top: 138px;
  width: 4px;
  height: 120px;
  background: var(--blue);
  border-radius: 99px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 var(--page-pad);
  transition: margin-left 180ms ease;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.stats div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 22px;
}

.stats span {
  margin-top: 5px;
  color: rgba(247, 249, 242, 0.66);
}

.section {
  padding: 78px var(--page-pad);
  transition: padding-left 180ms ease;
}

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

.section-heading h2,
.custom-band h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
}

.about-copy h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(32px, 5.4vw, 68px);
  line-height: 0.98;
}

.about-copy p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(247, 249, 242, 0.72);
  font-size: 18px;
  line-height: 1.62;
}

.about-card {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(37, 174, 234, 0.2), rgba(166, 223, 47, 0.12)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.about-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
}

.about-card strong {
  font-size: 24px;
}

.about-card span {
  color: rgba(247, 249, 242, 0.68);
  line-height: 1.45;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: min(100%, 620px);
}

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

.filter-arrow {
  display: none;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime-strong);
  border-radius: 8px;
  cursor: pointer;
}

.filter-arrow svg {
  width: 18px;
  height: 18px;
}

.filter {
  min-height: 38px;
  padding: 0 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.filter.active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime-strong);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
  justify-content: space-between;
  align-items: stretch;
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  color: #f7f9f2;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.product-art {
  position: relative;
  aspect-ratio: 1.18;
  min-height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 23, 23, 0.04) 1px, transparent 1px),
    var(--product-bg);
  background-size: 22px 22px, 22px 22px, auto;
}

.product-gallery-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(calc(var(--gallery-index, 0) * -100%));
  transition: transform 260ms ease;
  touch-action: pan-y;
  cursor: grab;
}

.product-gallery-track:active {
  cursor: grabbing;
}

.product-photo {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-photo.contain {
  object-fit: contain;
  padding: 10px;
}

.product-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 9px;
  transform: translateX(-50%);
  background: rgba(8, 10, 9, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.product-gallery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.48);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.product-gallery-dots button.active {
  background: var(--lime);
  transform: scale(1.35);
}

.product-shape {
  width: 46%;
  aspect-ratio: 1;
  background: var(--product-color);
  filter: drop-shadow(0 16px 18px rgba(23, 23, 23, 0.2));
}

.shape-hex {
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
}

.shape-ring {
  border-radius: 50%;
  background: radial-gradient(circle, transparent 0 33%, var(--product-color) 34% 63%, transparent 64%);
}

.shape-stand {
  width: 58%;
  height: 46%;
  border-radius: 12px 12px 5px 5px;
}

.shape-box {
  width: 52%;
  height: 45%;
  border-radius: 8px;
}

.product-info {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  height: 100%;
  padding: 18px;
}

.product-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 12px;
}

.product-top > div {
  display: contents;
  min-width: 0;
}

.product-card h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.product-card p {
  grid-column: 1 / -1;
  color: rgba(247, 249, 242, 0.68);
  line-height: 1.45;
}

.product-measure {
  display: block;
  margin-top: 8px;
  color: rgba(247, 249, 242, 0.82);
  font-weight: 800;
}

.price {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  white-space: nowrap;
  font-weight: 900;
}

.product-bottom {
  align-self: end;
  display: grid;
  gap: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  align-items: start;
  gap: 6px;
  min-height: 38px;
  overflow: hidden;
}

.tag {
  padding: 5px 8px;
  background: rgba(166, 223, 47, 0.16);
  border-radius: 6px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.card-actions {
  display: grid;
  grid-template-columns: minmax(104px, 118px) minmax(0, 1fr);
  gap: 10px;
  align-items: end;
  align-self: end;
}

.card-actions .button {
  min-height: 42px;
  padding: 0 12px;
  align-self: end;
}

.product-card .button.primary {
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.product-quantity {
  display: grid;
  gap: 5px;
}

.product-quantity span {
  color: rgba(247, 249, 242, 0.68);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.quantity-field {
  position: relative;
}

.product-quantity input {
  width: 100%;
  min-height: 42px;
  padding: 0 28px 0 10px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime-strong);
  border-radius: 8px;
  caret-color: var(--ink);
  font-weight: 900;
}

.product-quantity select {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime-strong);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.product-quantity-select {
  grid-column: 1 / -1;
}

.product-quantity-select + .button {
  grid-column: 1 / -1;
}

.product-quantity input::-webkit-inner-spin-button,
.product-quantity input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-quantity input[type="number"] {
  -moz-appearance: textfield;
}

.quantity-arrows {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  gap: 1px;
  transform: translateY(-50%);
}

.quantity-arrows button {
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  padding: 0;
  color: #0b0d0c;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  -webkit-text-stroke: 0.35px currentColor;
  line-height: 1;
}

.custom-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 20px var(--page-pad);
  transition: margin-left 180ms ease;
  padding: clamp(26px, 5vw, 52px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(37, 174, 234, 0.9), rgba(166, 223, 47, 0.82) 44%, rgba(11, 13, 12, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: auto, 26px 26px;
  border-radius: 8px;
}

.custom-band .eyebrow,
.custom-band p {
  color: rgba(255, 255, 255, 0.82);
}

.custom-band p {
  max-width: 760px;
  margin: 16px 0 0;
  line-height: 1.55;
}

.custom-band .button.primary {
  color: var(--ink);
  background: #fff;
}

.custom-band .button.primary.quote-whatsapp {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  padding-inline: 24px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.24);
}

.custom-band .button.primary.quote-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.32);
}

.quote-whatsapp .whatsapp-mark {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.steps article {
  padding: 24px;
  color: #f7f9f2;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.steps span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.steps p {
  color: rgba(247, 249, 242, 0.66);
  line-height: 1.45;
}

code {
  padding: 2px 6px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 5px;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 32px);
  bottom: clamp(18px, 3vw, 32px);
  z-index: 30;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34), 0 0 0 8px rgba(37, 211, 102, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.is-scrolled .hero,
.is-scrolled .section {
  padding-left: var(--menu-safe-pad);
}

.is-scrolled .stats,
.is-scrolled .custom-band {
  margin-left: var(--menu-safe-pad);
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38), 0 0 0 10px rgba(37, 211, 102, 0.15);
}

.whatsapp-float svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 16px;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand,
  .header-cart {
    justify-self: auto;
  }

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

  .nav {
    display: none;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .header-cart {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: auto;
    justify-self: end;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    color: var(--ink);
    background: var(--lime);
    border-color: rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    font-size: 0;
  }

  .menu-toggle,
  .is-scrolled .menu-toggle {
    top: 78px;
    left: 16px;
    width: 48px;
    height: 48px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero {
    gap: 26px;
    padding-top: 78px;
    padding-bottom: 24px;
  }

  .is-scrolled .hero,
  .is-scrolled .section {
    padding-left: var(--page-pad);
  }

  .is-scrolled .stats,
  .is-scrolled .custom-band {
    margin-left: var(--page-pad);
  }

  .hero-visual {
    min-height: 260px;
  }

  h1 {
    font-size: clamp(42px, 15vw, 64px);
    line-height: 0.94;
  }

  .hero-title {
    align-items: flex-start;
  }

  .hero-title img {
    width: 58px;
    height: 58px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .print-plate {
    width: min(100%, 340px);
    transform: perspective(900px) rotateX(7deg);
  }

  .stats,
  .steps,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .custom-band {
    align-items: stretch;
    flex-direction: column;
  }

  .section-heading,
  .custom-band {
    display: flex;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-heading h2,
  .custom-band h2,
  .about-copy h2 {
    line-height: 1.04;
  }

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

  .filter-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    max-width: 100%;
  }

  .filter-arrow {
    display: grid;
  }

  .filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
  }

  .product-art {
    min-height: 240px;
  }

  .product-top {
    align-items: flex-start;
  }

  .custom-band .button {
    width: 100%;
    justify-content: center;
  }

  .cart-drawer {
    width: 100vw;
    padding: 16px;
  }

  .cart-head h2 {
    font-size: 28px;
  }

  .cart-summary strong {
    font-size: 24px;
  }

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

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float svg {
    width: 34px;
    height: 34px;
  }

  .header-cart svg {
    width: 22px;
    height: 22px;
  }

  .header-cart span {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    font-size: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  }

}

@media (max-width: 420px) {
  .topbar {
    padding-right: 12px;
  }

  .header-cart svg {
    width: 22px;
    height: 22px;
  }

  .stats div,
  .product-info,
  .steps article {
    padding: 16px;
  }

  .product-top {
    display: grid;
  }

  .price {
    justify-self: start;
  }

  .cart-item-top {
    display: grid;
  }
}
