/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'BroshK';
  src: url('../fonts/BroshK.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #fafaf9;
  --bg-raised: #e7e5e4;
  --bg-card: #f8fafc;
  --border: #d6d3d1;
  --border-hover: #a8a29e;
  --hi: #d48a00;
  --hi-dim: rgba(212, 138, 0, 0.08);
  --fg: #1a1714;
  --fg-dim: #57534e;
  --fg-muted: #78716c;
  --danger: #cc2200;
  --font-display: 'BroshK', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--border-hover) var(--bg);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('../images/map-bg.svg');
  background-size: 800px 800px;
  background-repeat: repeat;
  opacity: 0.12;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' seed='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='discrete' tableValues='0 0.1 0.25 0.4 0.55 0.7 0.85 1'/%3E%3CfeFuncG type='discrete' tableValues='0 0.1 0.25 0.4 0.55 0.7 0.85 1'/%3E%3CfeFuncB type='discrete' tableValues='0 0.1 0.25 0.4 0.55 0.7 0.85 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

::selection {
  background: var(--hi);
  color: var(--bg);
}

a { color: var(--hi); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ═══════════════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.section-pad {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 138, 0, 0); }
  50% { box-shadow: 0 0 20px 2px rgba(212, 138, 0, 0.15); }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: var(--bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s var(--ease);
}

nav.hidden {
  transform: translateY(-100%);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--fg);
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
}

.nav-brand:hover {
  text-decoration: none;
}

.nav-logo {
  height: 4.5rem;
  width: auto;
  flex-shrink: 0;
}

.nav-brand span {
  color: var(--hi);
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* Animate to X when open */
.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--fg);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(250, 250, 249, 0) 0%, var(--bg) 100%);
}

.hero::before {
  display: none;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 12vw, 140px);
  line-height: 0.9;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}

.hero-title em {
  font-style: normal;
  color: var(--hi);
  display: inline-block;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-dim);
  max-width: 420px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  animation: fadeUp 0.8s var(--ease) 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s var(--ease) 1.2s both;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fg-dim), transparent);
  animation: pulse-glow 2s ease infinite;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT SELECTOR
   ═══════════════════════════════════════════════════════════ */
#produtos {
  border-top: 1px solid var(--border);
}

.products-header {
  text-align: center;
  margin-bottom: 48px;
}

.products-header-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-dim);
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.products-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 64px);
  color: var(--fg);
  margin-top: 14px;
  line-height: 1;
}

.products-header h2 span {
  color: var(--hi);
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.product-card.active {
  border-color: var(--hi);
}

.product-card.active::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(212, 138, 0, 0.06) 0%, transparent 60%);
}

.product-card-body {
  padding: 24px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 11px;
  color: var(--fg-dim);
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.product-card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--hi);
  line-height: 1;
}

.product-card-price small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  font-weight: 400;
}

.product-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
}

.product-card.active .product-card-tag {
  color: var(--hi);
  border-color: rgba(212, 138, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   3D CONFIGURATOR
   ═══════════════════════════════════════════════════════════ */
#configurador {
  border-top: 1px solid var(--border);
}

.config-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  min-height: 600px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.viewer {
  position: relative;
  background: #e8e4dd;
  overflow: hidden;
}

.viewer canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.viewer-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg-muted);
  pointer-events: none;
  user-select: none;
}

.viewer-label.tl { top: 18px; left: 20px; }
.viewer-label.br { bottom: 18px; right: 20px; }

.viewer-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #e8e4dd;
  z-index: 10;
  transition: opacity 0.6s var(--ease);
}

.viewer-loading.done {
  opacity: 0;
  pointer-events: none;
}

.viewer-loading span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.load-track {
  width: 80px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
}

.load-fill {
  height: 100%;
  width: 0%;
  background: var(--hi);
  transition: width 0.4s ease;
}

.config-panel {
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
  background: var(--bg-card);
}

.config-panel::-webkit-scrollbar { display: none; }

.config-section {
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.config-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.name-wrap {
  position: relative;
}

.name-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
  padding: 10px 12px 8px;
  outline: none;
  text-transform: uppercase;
  caret-color: var(--hi);
  transition: border-color 0.15s;
}

.name-input::placeholder { color: var(--fg-muted); }
.name-input:focus { border-color: var(--hi); }

.name-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  pointer-events: none;
}

.swatch-group {
  margin-bottom: 18px;
}

.swatch-group:last-child { margin-bottom: 0; }

.swatch-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.swatch {
  width: 30px;
  height: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease-bounce), border-color 0.15s;
  flex-shrink: 0;
}

.swatch:hover { transform: scale(1.15); }

.swatch.on {
  border-color: var(--hi);
}

.swatch.on::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  outline: 1px solid rgba(255,255,255,0.5);
  outline-offset: -5px;
}

.swatch[data-c="black"]    { background: #1c1c1c; }
.swatch[data-c="red"]      { background: #CA4111; }
.swatch[data-c="yellow"]   { background: #FEC30A; }
.swatch[data-c="orange"]   { background: #fc992f; }
.swatch[data-c="purple"]   { background: #7a00cc; }
.swatch[data-c="blue"]     { background: #1F56B4; }
.swatch[data-c="green"]    { background: #468a45; }
.swatch[data-c="pink"]     { background: #f5c9e9; }
.swatch[data-c="neonPink"] { background: rgba(240, 62, 115, 0.72); }

/* Delivery options */
.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.15s;
}

.delivery-option:last-child {
  border-bottom: none;
}

.delivery-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.delivery-option-radio {
  width: 16px;
  height: 16px;
  border: 2px solid var(--border-hover);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s;
}

.delivery-option.active .delivery-option-radio {
  border-color: var(--hi);
}

.delivery-option.active .delivery-option-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--hi);
  border-radius: 50%;
}

.delivery-option-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.delivery-option-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--fg);
}

.delivery-option.active .delivery-option-name {
  color: var(--hi);
}

.delivery-option-desc {
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.cep-wrap {
  margin-top: 16px;
  transition: opacity 0.3s var(--ease), max-height 0.3s var(--ease);
  max-height: 80px;
  overflow: hidden;
}

.cep-wrap.hidden {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
}

.cep-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.cep-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.12em;
  padding: 10px 12px 8px;
  outline: none;
  caret-color: var(--hi);
  transition: border-color 0.15s;
}

.cep-input::placeholder { color: var(--fg-muted); }
.cep-input:focus { border-color: var(--hi); }

.config-cta {
  padding: 24px;
  margin-top: auto;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: var(--hi);
  color: #000;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.18em;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.15s, letter-spacing 0.2s var(--ease), transform 0.15s;
}

.btn-whatsapp:hover {
  background: #1a1714;
  color: #f5f2ed;
  letter-spacing: 0.24em;
  transform: translateY(-1px);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cta-note {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT DETAILS (Accordion)
   ═══════════════════════════════════════════════════════════ */
#detalhes {
  border-top: 1px solid var(--border);
}

.details-header {
  text-align: center;
  margin-bottom: 48px;
}

.details-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 52px);
  color: var(--fg);
  margin-top: 14px;
  line-height: 1;
}

.accordion {
  max-width: 720px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border);
  margin-bottom: -1px;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
  transition: background 0.2s, color 0.2s;
}

.accordion-trigger:hover {
  background: var(--bg-raised);
}

.accordion-trigger .icon {
  font-size: 16px;
  color: var(--fg-dim);
  transition: transform 0.3s var(--ease);
  font-weight: 300;
}

.accordion-item.open .accordion-trigger .icon {
  transform: rotate(45deg);
}

.accordion-item.open .accordion-trigger {
  color: var(--hi);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.accordion-inner {
  padding: 0 24px 24px;
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.accordion-inner ul {
  list-style: none;
  padding: 0;
}

.accordion-inner li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.accordion-inner li:last-child { border-bottom: none; }

.accordion-inner li::before {
  content: '—';
  color: var(--fg-muted);
  margin-right: 10px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--fg);
  margin-bottom: 10px;
}

.footer-logo {
  height: 4.5rem;
  width: auto;
}

.footer-brand-highlight { color: var(--hi); }

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--hi);
  text-decoration: none;
}

.footer-legal {
  margin-bottom: 32px;
}

.footer-legal a {
  font-size: 9px;
  color: var(--fg-muted);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.15em;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .viewer {
    aspect-ratio: 4 / 3;
    min-height: 300px;
  }

  .config-panel {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 480px) {
  .section-pad {
    padding: 60px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(245, 242, 237, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.5rem 1.25rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 0.875rem 0;
    font-size: 0.75rem;
  }

  .nav-logo {
    height: 3.5rem;
  }

  .footer-logo {
    height: 3.5rem;
  }

  .product-card-name {
    font-size: 26px;
  }

  .product-card-price {
    font-size: 22px;
  }

  .hero-title {
    font-size: clamp(44px, 14vw, 80px);
  }
}
