/* Matovu Electronics — luminous tech retail theme */
:root {
  --ink: #071018;
  --ink-soft: #13222c;
  --paper: #eef4f7;
  --mist: #d7e6ec;
  --teal: #00c4d6;
  --teal-deep: #008fa0;
  --amber: #e8a012;
  --steel: #8aa4b0;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.08);
  --line: rgba(7, 16, 24, 0.1);
  --shadow: 0 24px 60px rgba(7, 16, 24, 0.18);
  --radius: 18px;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}

.bg-pattern {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(7, 16, 24, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 24, 0.045) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px;
}

main, .site-footer, .cta-band, .brand-marquee {
  position: relative;
  z-index: 1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.shell {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(238, 244, 247, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(238, 244, 247, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(0, 196, 214, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after,
.nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(7, 16, 24, 0.25);
}

.btn-primary:hover {
  background: var(--teal-deep);
  box-shadow: 0 14px 34px rgba(0, 143, 160, 0.35);
}

.btn-accent {
  background: var(--teal);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 24, 0.72);
}

@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-1.5%); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 4.5rem;
  max-width: 720px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
  color: var(--teal);
}

.hero-lead {
  margin: 1.25rem 0 2rem;
  max-width: 34rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-head p {
  margin: 0.5rem 0 0;
  color: var(--steel);
  max-width: 36rem;
}

.eyebrow {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

/* Category runway */
.category-runway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cat-tile {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}

.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.cat-tile:hover img { transform: scale(1.08); }

.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 24, 0.72);
}

.cat-tile span {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 16, 24, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-media {
  aspect-ratio: 1;
  background: #f4f8fa;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.product-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.product-price {
  margin-top: auto;
  padding-top: 0.6rem;
  font-weight: 800;
  font-size: 1.02rem;
}

.product-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.product-actions .btn {
  flex: 1;
  padding: 0.65rem 0.7rem;
  font-size: 0.82rem;
}

/* Brand marquee */
.brand-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  padding: 1.4rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  align-items: center;
}

.marquee-track img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  opacity: 0.85;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Visit strip */
.visit-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.visit-copy,
.visit-panel {
  border-radius: calc(var(--radius) + 6px);
  padding: 2.2rem;
}

.visit-copy {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}

.visit-copy::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: rgba(0, 196, 214, 0.22);
}

.visit-copy h2 {
  position: relative;
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

.visit-copy p,
.visit-panel p {
  position: relative;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.visit-panel {
  background: white;
  border: 1px solid var(--line);
}

.visit-panel h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
}

.visit-panel p { color: var(--ink-soft); }

.visit-panel a { color: var(--teal-deep); font-weight: 700; }

/* Page hero (inner) */
.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.page-hero p {
  margin: 0.9rem 0 0;
  max-width: 40rem;
  color: var(--steel);
  font-size: 1.08rem;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.chip {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: 0.2s;
}

.chip.is-active,
.chip:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* Brands grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.brand-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

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

.brand-card img {
  height: 42px;
  width: auto;
  margin: 0 auto 0.8rem;
  object-fit: contain;
}

.brand-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.brand-card p {
  margin: 0.35rem 0 0;
  color: var(--steel);
  font-size: 0.88rem;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 3rem;
}

.detail-gallery {
  background: white;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  padding: 1.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.detail-gallery img {
  max-height: 100%;
  object-fit: contain;
}

.detail-copy h1 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.detail-price {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.8rem 0 1rem;
}

.detail-copy p { color: var(--ink-soft); }

.spec-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: grid;
  gap: 0.45rem;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.spec-list span:first-child { color: var(--steel); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.8rem;
}

.contact-card h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
}

.map-frame {
  min-height: 280px;
  border-radius: var(--radius);
  background: #13222c url("../img/hero/hero-shop.jpg") center/cover;
  display: grid;
  place-items: end start;
  padding: 1.2rem;
  color: white;
  font-weight: 700;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.footer-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 0.45rem 0.55rem;
  flex-shrink: 0;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  color: var(--steel);
  font-size: 0.92rem;
}

.site-footer h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  color: white;
  font-size: 1rem;
}

.site-footer a:hover { color: var(--teal); }

.footer-base {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--steel);
}

.empty {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.75);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

@media (max-width: 980px) {
  .category-runway,
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .visit-strip,
  .product-detail,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .header-actions .btn-ghost { display: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 76px 1rem auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    flex-direction: column;
    gap: 0.9rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .product-grid,
  .brand-grid,
  .category-runway { grid-template-columns: 1fr 1fr; }
  .hero-content { padding-top: 7rem; }
  .section-head { flex-direction: column; align-items: start; }
  .footer-base { flex-direction: column; }
}

@media (max-width: 480px) {
  .shell { width: min(100% - 1.4rem, 1180px); }
  .product-grid,
  .category-runway { grid-template-columns: 1fr; }
  .whatsapp-float-label { display: none; }
  .whatsapp-float { width: 58px; padding: 0; justify-content: center; }
  .brand-logo { height: 48px; }
}

/* ===== Professional polish: trust, forms, WhatsApp, product order ===== */
.btn-xl {
  padding: 0.95rem 1.35rem;
  font-size: 0.98rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: -1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.trust-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 28px rgba(7, 16, 24, 0.06);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.trust-item span {
  color: var(--steel);
  font-size: 0.88rem;
}

.cta-band {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 2.4rem 0;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2 {
  margin: 0.2rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 36rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cta-band-ghost {
  background: rgba(255, 255, 255, 0.7);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem 0.85rem 0.95rem;
  border-radius: 999px;
  background: #1fad5b;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(31, 173, 91, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: floatIn 0.7s var(--ease) both;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 48px rgba(31, 173, 91, 0.5);
}

.whatsapp-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(31, 173, 91, 0.45);
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.92); opacity: 0.9; }
  100% { transform: scale(1.25); opacity: 0; }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: none; }
}

.detail-gallery {
  position: relative;
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(7, 16, 24, 0.86);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.highlight-row {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.highlight-row li {
  background: rgba(0, 196, 214, 0.12);
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

.compat-block {
  margin: 1rem 0 1.2rem;
}

.compat-block strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.85rem;
}

.compat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.compat-tags span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.35rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.order-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.2rem;
  margin: 1.2rem 0;
  box-shadow: 0 12px 32px rgba(7, 16, 24, 0.06);
}

.variety-group {
  margin-bottom: 1rem;
}

.variety-group label,
.qty-row label,
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
}

.variety-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.variety-chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  transition: 0.2s;
}

.variety-chip:hover,
.variety-chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.qty-control button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.qty-control input {
  width: 48px;
  height: 40px;
  border: 0;
  text-align: center;
  font-weight: 700;
  border-inline: 1px solid var(--line);
}

.fineprint {
  margin: 0.8rem 0 0;
  color: var(--steel);
  font-size: 0.86rem;
}

.specs-card {
  margin-top: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}

.specs-card h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.trust-mini { padding-top: 0; }
.trust-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.trust-pill strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.trust-pill span {
  color: var(--steel);
  font-size: 0.86rem;
}

.site-form {
  display: grid;
  gap: 0.9rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 196, 214, 0.15);
}

.form-intro {
  margin: 0 0 1rem;
  color: var(--steel);
}

.form-success {
  background: rgba(31, 173, 91, 0.12);
  color: #0f7a3d;
  border: 1px solid rgba(31, 173, 91, 0.25);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.info-list {
  display: grid;
  gap: 0.95rem;
}

.info-list > div span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.2rem;
}

.info-list a { color: var(--teal-deep); }

.map-card { margin-top: 0; }

.product-card .mini-specs {
  margin: 0.25rem 0 0;
  color: var(--steel);
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .trust-strip,
  .trust-mini-grid,
  .cta-band-inner { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { display: grid; }
  .cta-band-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .trust-strip,
  .trust-mini-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .whatsapp-float { animation: none; }
  .whatsapp-float-pulse { animation: none; display: none; }
  .marquee-track { animation: none !important; }
}

.product-actions .btn { flex: 1; text-align: center; }
.order-panel .btn-xl { min-width: 11rem; }

.brands-cta-strip {
  grid-template-columns: 1fr;
}

