/* ==========================================================================
   1. ROOT / DESIGN TOKENS
   ========================================================================== */
:root {
  /* Color — base blacks (layering depth) */
  --black: #000000;
  --bg-0: #000000;
  --bg-1: #050505;
  --bg-2: #0a0a0a;
  --bg-3: #111111;
  --bg-4: #161616;
  --bg-5: #1d1d1d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Color — gold accent family */
  --gold: #daa520;
  --gold-light: #f1c64a;
  --gold-lighter: #ffe9a8;
  --gold-dark: #a87a16;
  --gold-darker: #6e4f0d;
  --gold-10: rgba(218, 165, 32, 0.1);
  --gold-15: rgba(218, 165, 32, 0.15);
  --gold-25: rgba(218, 165, 32, 0.25);
  --gold-40: rgba(218, 165, 32, 0.4);
  --gold-60: rgba(218, 165, 32, 0.6);
  --cyan-glint: rgba(140, 230, 255, 0.5); /* tiny holographic cool accent, used sparingly */

  /* Text */
  --text: #f2efe8;
  --text-soft: #cfc9bc;
  --text-muted: #948d80;
  --text-faint: #66605a;
  --on-gold: #0a0700;

  /* Surfaces */
  --surface: var(--bg-2);
  --surface-2: var(--bg-3);
  --card-bg: linear-gradient(165deg, #0c0c0c 0%, #060606 100%);
  --card-border: rgba(218, 165, 32, 0.16);
  --glass-bg: linear-gradient(165deg, rgba(15, 15, 14, 0.6) 0%, rgba(5, 5, 4, 0.72) 100%);

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 32px;
  --sp-8: 40px;
  --sp-9: 56px;
  --sp-10: 72px;
  --sp-11: 96px;

  /* Radius scale */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 0 0 1px var(--gold-25), 0 18px 46px -12px rgba(218, 165, 32, 0.35);
  --shadow-gold-soft: 0 8px 28px -10px rgba(218, 165, 32, 0.28);
  --glow-gold: 0 0 24px rgba(218, 165, 32, 0.35);
  --glow-gold-strong: 0 0 0 1px var(--gold-40), 0 0 40px rgba(218, 165, 32, 0.45), 0 0 80px rgba(218, 165, 32, 0.18);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 160ms;
  --t-base: 260ms;
  --t-slow: 420ms;
  --t-slower: 650ms;

  /* Typography */
  --font-body: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Rajdhani", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;

  /* Layout */
  --container-w: 1280px;
  --header-h: 84px;
  --topbar-h: 38px;
}

/* ==========================================================================
   2. RESET / NORMALIZE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg-1);
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--on-gold);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-1);
  transition: background var(--t-base) var(--ease-soft);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 10px var(--gold-60);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
  box-shadow: 0 0 0 5px var(--gold-15), 0 0 14px var(--gold-40);
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  line-height: 1.12;
  margin: 0 0 var(--sp-4);
  letter-spacing: 0.01em;
}

h1,
.hero-title {
  font-size: clamp(2.4rem, 1.7rem + 3vw, 4.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin: 0 0 var(--sp-4);
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

strong {
  color: var(--text);
  font-weight: 600;
}

small {
  font-size: 0.82rem;
  color: var(--text-muted);
}

a:not(.btn) {
  transition: color var(--t-fast) var(--ease-soft);
}

main a:not(.btn):not(.product-card-inner):not(.contact-link):not(.footer-location-link) {
  color: var(--gold-light);
}

main a:not(.btn):not(.product-card-inner):hover {
  color: var(--gold-lighter);
}

/* Holographic gold shimmer text utility */
.hero-title-accent,
.product-price-card > strong,
.product-price-por-row strong {
  background: linear-gradient(
    100deg,
    var(--gold) 0%,
    var(--gold-light) 20%,
    var(--gold-lighter) 40%,
    #ffffff 50%,
    var(--gold-lighter) 60%,
    var(--gold-light) 80%,
    var(--gold) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: holoSheen 7s linear infinite;
}

@keyframes holoSheen {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: -200% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-accent,
  .product-price-card > strong,
  .product-price-por-row strong {
    animation: none;
    background-position: 40% 50%;
  }
}

/* tabular numerals for price / spec digits */
.product-price-card strong,
.product-price-por-row strong {
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   4. LAYOUT / CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 560px at 14% -8%, rgba(218, 165, 32, 0.1), transparent 60%),
    radial-gradient(720px 540px at 108% 14%, rgba(218, 165, 32, 0.07), transparent 60%),
    radial-gradient(640px 480px at 50% 110%, rgba(218, 165, 32, 0.05), transparent 65%),
    repeating-linear-gradient(0deg, rgba(218, 165, 32, 0.035) 0px, rgba(218, 165, 32, 0.035) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(218, 165, 32, 0.035) 0px, rgba(218, 165, 32, 0.035) 1px, transparent 1px, transparent 64px),
    linear-gradient(180deg, #000000 0%, #030302 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 64px 64px, 64px 64px, 100% 100%;
  animation: bgDrift 60s ease-in-out infinite;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes bgDrift {
  0%, 100% {
    background-position: 0% 0%, 100% 0%, 50% 100%, 0 0, 0 0, 0 0;
  }
  50% {
    background-position: 4% 4%, 96% 6%, 48% 96%, 0 0, 0 0, 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-bg {
    animation: none;
  }
}

main {
  position: relative;
  display: block;
}

.page-content {
  padding-top: var(--sp-8);
}

.section {
  position: relative;
  padding: var(--sp-10) 0;
}

.section-dark {
  background: transparent;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.section-head h2 {
  margin-top: var(--sp-3);
  margin-bottom: 0;
  max-width: 640px;
}

.section-head p {
  max-width: 440px;
  margin: 0;
}

.section-head--stacked {
  display: block;
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-head--stacked h2 {
  margin: var(--sp-3) auto var(--sp-3);
  max-width: 820px;
}

.section-head--stacked p {
  max-width: 100%;
  margin: 0 auto;
}

/* ==========================================================================
   5. REVEAL ANIMATIONS (data-reveal)
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slower) var(--ease), transform var(--t-slower) var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   6. PILLS / BADGES
   ========================================================================== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-40);
  background: var(--gold-10);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  position: relative;
  backdrop-filter: blur(8px);
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold), 0 0 2px #fff;
  flex-shrink: 0;
}

.pill.dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text-soft);
}

.pill.dark::before {
  background: var(--text-muted);
  box-shadow: none;
}

.hero-pill {
  margin-bottom: var(--sp-5);
}

/* ==========================================================================
   7. BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 15px 30px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease),
    background var(--t-base) var(--ease-soft), color var(--t-base) var(--ease-soft),
    border-color var(--t-base) var(--ease-soft);
}

.btn.primary,
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: var(--on-gold);
  box-shadow: var(--shadow-gold-soft);
}

.btn.primary::after,
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.55) 48%, transparent 66%);
  transform: translateX(-130%);
  transition: transform var(--t-slower) var(--ease);
  pointer-events: none;
  z-index: 1;
}

.btn.primary:hover::after,
.btn-primary:hover::after {
  transform: translateX(130%);
}

.btn.primary:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold), var(--glow-gold);
  background: linear-gradient(135deg, var(--gold-lighter) 0%, var(--gold-light) 55%, var(--gold) 100%);
}

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

.btn.secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}

.btn.secondary:hover {
  border-color: var(--gold-60);
  color: var(--gold-light);
  transform: translateY(-2px);
  background: var(--gold-10);
  box-shadow: var(--shadow-gold-soft);
}

.btn.primary,
.btn-primary,
.cta-card .btn.primary {
  --glow-angle: 0deg;
}

.btn.primary::before,
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from var(--glow-angle), var(--gold-light), transparent 25%, transparent 75%, var(--gold-light));
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-soft);
  animation: spinGlow 3.2s linear infinite;
}

.btn.primary:hover::before,
.btn-primary:hover::before {
  opacity: 0.85;
}

@keyframes spinGlow {
  to {
    --glow-angle: 360deg;
  }
}

@property --glow-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@media (prefers-reduced-motion: reduce) {
  .btn.primary::before,
  .btn-primary::before {
    animation: none;
  }
  .btn.primary::after,
  .btn-primary::after {
    transition: none;
    display: none;
  }
}

/* ==========================================================================
   8. TOPBAR
   ========================================================================== */
.site-header-stack {
  position: sticky;
  top: 0;
  z-index: 60;
}

.topbar {
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-6);
  min-height: var(--topbar-h);
  padding-top: var(--sp-2);
  padding-bottom: var(--sp-2);
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-right: auto;
}

.topbar-info .store-status {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.topbar-hours {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--text-faint);
  padding-left: var(--sp-3);
  border-left: 1px solid var(--line);
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 400;
  transition: color var(--t-fast) var(--ease-soft);
}

.topbar-item svg {
  flex-shrink: 0;
  color: var(--gold);
}

.topbar-contacts {
  display: contents;
}

.topbar-cta-mobile {
  display: none;
}

.topbar-item:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   9. HEADER / NAV
   ========================================================================== */
.site-header {
  position: relative;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 var(--gold-10), 0 20px 40px -20px rgba(0, 0, 0, 0.8);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(218, 165, 32, 0.18));
  transition: filter var(--t-base) var(--ease-soft), transform var(--t-base) var(--ease-soft);
}

.logo:hover img {
  filter: drop-shadow(0 0 18px rgba(218, 165, 32, 0.32));
  transform: scale(1.02);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
}

.site-nav a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  padding: var(--sp-2) 0;
  transition: color var(--t-fast) var(--ease-soft);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 8px var(--gold-60);
  transition: left var(--t-base) var(--ease), right var(--t-base) var(--ease);
  border-radius: var(--radius-pill);
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  left: 0;
  right: 0;
}

.nav-close {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  flex-shrink: 0;
}

.btn-label-short {
  display: none;
}

.menu-toggle::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 -5px 0 var(--gold), 0 5px 0 var(--gold);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base) var(--ease-soft), visibility var(--t-base);
}

.menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   10. CUSTOM ORDER MODAL
   ========================================================================== */
.custom-order-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base) var(--ease-soft), visibility var(--t-base);
}

.custom-order-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.custom-order-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.custom-order-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  padding: var(--sp-8) var(--sp-7);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform var(--t-slow) var(--ease), opacity var(--t-slow) var(--ease);
}

.custom-order-panel::before,
.custom-order-panel::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold-60);
  pointer-events: none;
  opacity: 0.7;
}

.custom-order-panel::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.custom-order-panel::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.custom-order-modal.is-open .custom-order-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.custom-order-panel h3 {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
  margin-bottom: var(--sp-3);
}

.custom-order-panel > p {
  margin-bottom: var(--sp-6);
}

.custom-order-close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  transition: all var(--t-fast) var(--ease-soft);
}

.custom-order-close:hover {
  border-color: var(--gold-60);
  color: var(--gold-light);
  background: var(--gold-10);
  transform: rotate(90deg);
}

.custom-order-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.custom-order-form label {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.custom-order-dims {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  margin: 0;
}

.custom-order-dims-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.custom-order-compartimento-dims {
  animation: fadeSlideIn var(--t-slow) var(--ease);
}

.custom-order-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.input-unit {
  position: relative;
  display: flex;
  align-items: center;
}

.input-unit input {
  width: 100%;
  padding-right: 44px;
}

.input-unit span {
  position: absolute;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: lowercase;
  pointer-events: none;
}

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

/* ==========================================================================
   11. FORMS / INPUTS — SITEWIDE
   ========================================================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: normal;
  transition: border-color var(--t-fast) var(--ease-soft), box-shadow var(--t-fast) var(--ease-soft),
    background var(--t-fast) var(--ease-soft);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23daa520' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

select option {
  background: #0a0a0a;
  color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-faint);
  font-weight: 400;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--gold-25);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(218, 165, 32, 0.04);
  box-shadow: 0 0 0 3px var(--gold-15), 0 0 16px -4px var(--gold-40);
}

input:invalid:not(:placeholder-shown) {
  border-color: #c0533f;
}

input:required:valid:not(:placeholder-shown) {
  border-color: rgba(120, 200, 130, 0.4);
}

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

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==========================================================================
   12. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(218, 165, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 165, 32, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, #000 30%, transparent 75%);
}

/* HUD corner brackets on hero */
.hero-content::before,
.hero-content::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid var(--gold-40);
  z-index: 2;
  pointer-events: none;
  transition: border-color var(--t-base) var(--ease-soft), width var(--t-base) var(--ease), height var(--t-base) var(--ease);
}

.hero-content::before {
  top: var(--sp-6);
  left: var(--sp-6);
  border-right: none;
  border-bottom: none;
}

.hero-content::after {
  top: var(--sp-6);
  right: var(--sp-6);
  border-left: none;
  border-bottom: none;
}

.hero:hover .hero-content::before,
.hero:hover .hero-content::after {
  border-color: var(--gold);
  width: 42px;
  height: 42px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity var(--t-slower) var(--ease-soft), transform 8s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-fade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--sp-10) var(--sp-6) var(--sp-9);
  width: 100%;
}

.hero-info {
  max-width: 720px;
}

.hero-copy {
  display: none;
}

.hero-copy.is-active {
  display: block;
  animation: heroFadeIn var(--t-slower) var(--ease);
}

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

.hero h1,
.hero .hero-title {
  margin-bottom: var(--sp-5);
}

.hero-title-accent {
  /* shimmer handled by .text-holo rule above */
}

.hero-info p {
  font-size: 1.08rem;
  max-width: 540px;
  color: var(--text-soft);
}

.hero-info p.hero-title {
  font-size: clamp(2.4rem, 1.7rem + 3vw, 4.2rem);
  font-weight: 700;
  max-width: none;
  color: var(--text);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin: var(--sp-6) 0 var(--sp-8);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  width: fit-content;
  max-width: none;
  gap: var(--sp-6);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-6);
  position: relative;
}

.hero-highlights::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  box-shadow: 0 0 8px var(--gold-60);
}

.hero-highlights > div {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.hero-highlight-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--gold-10);
  border: 1px solid var(--gold-25);
  color: var(--gold);
  position: relative;
}

.hero-highlight-icon svg {
  width: 42px;
  height: 42px;
}

.hero-highlight-icon-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hero-highlight-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 var(--gold-25);
  transition: box-shadow var(--t-base) var(--ease-soft);
}

.hero-highlights > div:hover .hero-highlight-icon::after {
  box-shadow: 0 0 0 4px var(--gold-15);
}

.hero-highlight-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-highlight-body strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  white-space: nowrap;
}

.hero-highlight-body span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Hero progress / slide dots */
.hero-progress-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--sp-7);
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  padding: 0 var(--sp-6);
}

.hero-progress-item {
  position: relative;
  width: 72px;
  height: 7px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  cursor: pointer;
}

.hero-progress-fill {
  display: block;
  height: 100%;
  width: var(--fill-pct, 0%);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 6px var(--gold-60);
  transition: width 80ms linear;
}

.hero-progress-item.is-active {
  background: rgba(255, 255, 255, 0.28);
}

/* ==========================================================================
   13. CATEGORY OVERVIEW / PRODUCT GRID / PRODUCT CARDS
   ========================================================================== */
.catalog-overview,
.catalog-unified {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.catalog-group {
  margin-bottom: var(--sp-9);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

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

.catalog-group-head {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line);
}

.catalog-group-head h3 {
  margin: 0;
  position: relative;
  padding-left: var(--sp-4);
}

.catalog-group-head h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border-radius: var(--radius-pill);
  box-shadow: 0 0 8px var(--gold-40);
}

.catalog-group-empty {
  text-align: center;
  padding: var(--sp-9) var(--sp-6);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease-soft);
}

/* HUD corner brackets */
.product-card::before,
.product-card::after,
.split-card::before,
.split-card::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold-25);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease-soft);
}

.product-card::before,
.split-card::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.product-card::after,
.split-card::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.product-card:hover::before,
.product-card:hover::after,
.split-card:hover::before,
.split-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  border-color: var(--gold-40);
}

.product-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-media-stack {
  position: relative;
  aspect-ratio: 1 / 1;
  background: radial-gradient(120% 120% at 50% 20%, #161616 0%, #060606 70%);
  overflow: hidden;
}

.product-image-main,
.product-image-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--sp-5);
  transition: opacity var(--t-slow) var(--ease-soft), transform var(--t-slow) var(--ease);
}

.product-image-hover {
  opacity: 0;
}

.product-card:hover .product-image-main {
  transform: scale(1.04);
}

.product-card-badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  z-index: 1;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold-40);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.product-info h3 {
  margin: 0;
  font-size: 1.08rem;
}

.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-muted);
}

.product-card-specs strong {
  color: var(--gold-light);
  font-weight: 700;
}

.product-card-specs-sep {
  color: var(--line-strong);
}

.product-card-measure-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.product-card-measure-table th,
.product-card-measure-table td {
  padding: 5px 6px;
  text-align: center;
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-weight: 400;
}

.product-card-measure-table thead th {
  color: var(--text-faint);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card-measure-table thead th:not(:first-child) {
  color: var(--gold-light);
}

.product-card-measure-table tbody th {
  text-align: left;
  color: var(--gold-light);
  font-weight: 600;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: auto;
}

.category-meta-count {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.catalog-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  transition: gap var(--t-fast) var(--ease-soft);
}

.catalog-action::after {
  content: "\2192";
  transition: transform var(--t-fast) var(--ease-soft);
}

.product-card:hover .catalog-action::after {
  transform: translateX(4px);
}

/* ==========================================================================
   14. TECH SPLIT / SERVICE / SPLIT GRIDS (index, sobre)
   ========================================================================== */
.tech-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-9);
  align-items: center;
}

.tech-content p {
  max-width: 560px;
}

.tech-list {
  display: grid;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}

.tech-list > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: var(--sp-5);
  border-left: 2px solid var(--gold-25);
}

.tech-list strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.tech-list span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tech-visual {
  position: relative;
}

.historia-fotos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.historia-foto-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}

.historia-foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower) var(--ease);
}

.historia-foto-item:hover img {
  transform: scale(1.05);
}

.tech-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}

.tech-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower) var(--ease);
}

.tech-photo:hover img {
  transform: scale(1.05);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.split-card {
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

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

.split-top,
.split-bottom {
  padding: var(--sp-6);
}

.split-top {
  border-bottom: 1px solid var(--line);
}

.split-bottom {
  background: linear-gradient(165deg, rgba(218, 165, 32, 0.06), transparent 70%);
}

.split-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.split-row h3 {
  margin: 0;
  font-size: 1rem;
}

.split-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}

.split-icon--x {
  background: rgba(192, 83, 63, 0.14);
  color: #e0796a;
  border: 1px solid rgba(192, 83, 63, 0.35);
}

.split-icon--check {
  background: var(--gold-10);
  color: var(--gold);
  border: 1px solid var(--gold-40);
}

.split-card p {
  margin: 0;
  font-size: 0.92rem;
}

/* ==========================================================================
   16. CTA SECTION
   ========================================================================== */
.cta-section {
  padding: var(--sp-9) 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-7);
  padding: var(--sp-8) var(--sp-8);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0c0c0a 0%, #050504 60%, #000000 100%);
  border: 1px solid var(--gold-25);
  box-shadow: var(--shadow-gold-soft), var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(218, 165, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 165, 32, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 100% at 100% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  margin-bottom: var(--sp-3);
}

.cta-card p {
  margin: 0;
  max-width: 460px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   17. CATEGORY HERO (dg-hero — loja-categoria.php)
   ========================================================================== */
.dg-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: var(--dg-hero-pos, center);
  background-color: var(--bg-1);
}

.dg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 50%, #000 100%);
}

.dg-hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: var(--sp-9);
}

.dg-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-6);
  max-width: 720px;
}

.dg-title-group {
  margin-bottom: 0;
}

.dg-since {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--gold-10);
  border: 1px solid var(--gold-40);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  backdrop-filter: blur(8px);
}

.dg-hero-title {
  margin-bottom: 0;
  white-space: nowrap;
}

.dg-features-box {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.dg-feature {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 12px;
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.dg-feature + .dg-feature {
  border-left: 1px solid var(--card-border);
}

.dg-feature-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.dg-feature-icon svg {
  width: 26px;
  height: 26px;
}

.dg-feature span:last-child {
  font-family: var(--font-mono);
  font-weight: 700;
  white-space: pre-line;
  color: var(--text-muted);
}

.dg-specialist {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-4) 76px var(--sp-4) var(--sp-5);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
}

.dg-specialist img {
  width: 44px;
  height: auto;
  flex-shrink: 0;
}

.dg-specialist div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dg-specialist strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}

.dg-specialist span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Scroll button injected by JS inside .dg-specialist (category pages) */
.policy-scroll-btn {
  position: absolute;
  right: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--gold-40);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: bounceDown 2.2s ease-in-out infinite;
  transition: background var(--t-fast) var(--ease-soft), border-color var(--t-fast) var(--ease-soft);
  z-index: 2;
}

.policy-scroll-btn:hover {
  background: var(--gold-10);
  border-color: var(--gold-60);
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(8px);
  }
}

/* ==========================================================================
   18. PRODUCT PAGE (produto.php)
   ========================================================================== */
.product-page {
  padding-top: var(--sp-6);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-9);
  align-items: start;
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}

.product-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease-soft);
}

.product-breadcrumb a:hover {
  color: var(--gold-light);
}

.product-breadcrumb strong {
  color: var(--text-soft);
  font-weight: 500;
}

.product-copy h1 {
  margin-bottom: var(--sp-4);
}

.product-display-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
}

.product-display-title em {
  font-style: normal;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--gold-40);
}

.product-copy > p {
  max-width: 560px;
  font-size: 1.02rem;
}

@media (max-width: 768px) {
  .product-copy > p {
    max-width: none;
    text-align: justify;
    text-align-last: left;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}

.product-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: var(--sp-6);
  padding: 0;
}

.product-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--bg-3);
  border-left: 2px solid var(--gold-40);
  font-size: 0.86rem;
  color: var(--text-soft);
  list-style: none;
}

.product-highlight-list li::before {
  content: "→";
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}

/* Product image gallery / zoom slider */
.product-visual {
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-trust-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-5);
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(33.333% - var(--sp-2));
  text-align: center;
  padding: var(--sp-3) var(--sp-2);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(218, 165, 32, 0.1) 0%, rgba(218, 165, 32, 0.03) 100%);
  border: 1px solid rgba(218, 165, 32, 0.25);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.trust-badge:hover {
  border-color: rgba(218, 165, 32, 0.5);
  background: linear-gradient(160deg, rgba(218, 165, 32, 0.16) 0%, rgba(218, 165, 32, 0.06) 100%);
}

.trust-badge span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1.25;
}


.product-main-media {
  position: relative;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-bottom: none;
  box-shadow: var(--shadow-lg);
  background: radial-gradient(120% 120% at 50% 15%, #181818 0%, #060606 70%);
  padding: var(--sp-5);
}

.product-main-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity .25s ease;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

/* ── Thumbnail strip (galeria) ── */
.product-gallery-thumb-strip {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.product-gallery-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--bg-3);
  transition: border-color var(--t-fast) var(--ease-soft);
}

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

.product-gallery-thumb.is-active { border-color: var(--gold); }

.product-gallery-progress {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin-left: var(--sp-4);
  padding-left: var(--sp-4);
  border-left: 1px solid var(--line-strong);
}

.product-gallery-progress-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.product-gallery-progress-label b { color: var(--gold-light); font-weight: 700; }

.product-gallery-progress-bar {
  height: 2px;
  background: var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
}

.product-gallery-progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.3s var(--ease-soft);
}

/* ── Tabs de medidas (coluna esquerda) ── */
.product-measure-tabs-box {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
}

.product-measure-tabs-box h2 {
  font-size: 1.05rem;
  margin: 0 0 var(--sp-4);
}

/* ── Seção: tech info + preço ── */
.product-details-with-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 300px);
  gap: var(--sp-6);
  align-items: start;
}

/* Price card */
.product-price-card {
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(218, 165, 32, 0.1), #090907 70%);
  border: 1px solid var(--gold-25);
  box-shadow: var(--shadow-gold-soft);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  overflow: hidden;
}

.product-price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(218, 165, 32, 0.12), transparent);
  animation: priceSheen 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes priceSheen {
  0% {
    left: -60%;
  }
  50%, 100% {
    left: 130%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-price-card::before {
    animation: none;
    display: none;
  }
}

.product-price-card small {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-price-card > strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.4rem + 1vw, 2.1rem);
}

.product-price-card p {
  margin: 0 0 var(--sp-2);
  font-size: 0.88rem;
}

.product-price-card .btn {
  margin-top: var(--sp-2);
  width: 100%;
}

.product-price-card--promo {
  border-color: var(--gold-60);
  background: linear-gradient(165deg, rgba(218, 165, 32, 0.16), #0a0905 70%);
}

.product-promo-badge {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--on-gold);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price-de-row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}

.product-price-original {
  color: var(--text-faint);
  font-size: 1rem;
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.product-price-por-row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}

.product-price-por-row strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.4rem + 1vw, 2.1rem);
}

/* Technical details / tabs */
.product-details-section {
  padding-top: var(--sp-7);
}

.product-tech-head {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--sp-6);
}

.product-tech-item {
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--line);
}

.product-tech-item h3 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line);
}

.product-tech-item ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-tech-item li {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-tech-item li::before {
  content: "> ";
  color: var(--gold-dark);
  font-family: var(--font-mono);
  font-weight: 400;
}

/* Product tabs (data-product-tabs / data-product-panel) — defensive styling */
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  border-bottom: 1px solid var(--line);
}

[data-product-tab] {
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--t-fast) var(--ease-soft), border-color var(--t-fast) var(--ease-soft);
}

[data-product-tab]:hover {
  color: var(--text);
}

[data-product-tab].is-active {
  color: var(--gold-light);
  border-color: var(--gold);
}

[data-product-panel] {
  animation: fadeSlideIn var(--t-base) var(--ease);
}

/* ==========================================================================
   19. FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding-bottom: var(--sp-10);
}

.faq-list {
  column-count: 2;
  column-gap: var(--sp-4);
}

.faq-item {
  break-inside: avoid;
  margin-bottom: var(--sp-4);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease-soft), box-shadow var(--t-base) var(--ease);
}

.faq-item[open] {
  border-color: var(--gold-40);
  box-shadow: var(--shadow-gold-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold-40);
  background: var(--gold-10);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition: transform var(--t-base) var(--ease-soft);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.faq-answer {
  padding: 0 var(--sp-6) var(--sp-6);
  animation: faqFadeIn var(--t-base) var(--ease);
}

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

.faq-answer p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-soft);
}

@media (max-width: 768px) {
  .faq-answer p {
    text-align: justify;
    text-align-last: left;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}

/* ==========================================================================
   20. POLICY PAGES (entrega, privacidade, garantia, troca, como-comprar)
   ========================================================================== */
.policy-hero {
  min-height: 0;
  padding: var(--sp-10) 0 var(--sp-7);
  align-items: center;
}

.policy-hero + .section {
  padding-top: var(--sp-6);
}

.policy-hero .hero-info {
  max-width: none;
  width: 100%;
}

.policy-hero h1 {
  font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.7rem);
  white-space: nowrap;
}

.policy-hero .hero-info p {
  max-width: none;
  font-size: clamp(0.95rem, 0.8rem + 0.3vw, 1.08rem);
  white-space: nowrap;
}

.container.policy-body {
  display: grid;
  justify-items: start;
  gap: var(--sp-6);
  padding-top: var(--sp-2);
}

.policy-body .policy-block {
  width: 100%;
}

.policy-block {
  padding: var(--sp-7);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--line);
  transition: border-color var(--t-base) var(--ease-soft), box-shadow var(--t-base) var(--ease);
}

.policy-block:hover {
  border-color: var(--gold-25);
  box-shadow: var(--shadow-gold-soft);
}

.policy-step-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}

@media (max-width: 768px) {
  .policy-block p,
  .policy-steps li span {
    text-align: justify;
    text-align-last: left;
    -webkit-hyphens: none;
    hyphens: none;
  }
}

.policy-block h2 {
  font-size: 1.4rem;
  margin-bottom: var(--sp-4);
  position: relative;
  padding-left: var(--sp-5);
}

.policy-block h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border-radius: var(--radius-pill);
  box-shadow: 0 0 8px var(--gold-40);
}

.policy-block ul {
  display: grid;
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}

.policy-block li {
  position: relative;
  padding-left: var(--sp-5);
  font-size: 0.94rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.policy-block li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.policy-steps {
  counter-reset: policy-step;
  display: grid;
  gap: 0;
}

.policy-steps li {
  counter-increment: policy-step;
  position: relative;
  padding: 0 0 var(--sp-6) 56px;
  min-height: 36px;
}

.policy-steps li:last-child {
  padding-bottom: 0;
}

.policy-steps li::before {
  content: counter(policy-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--on-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold-soft);
  z-index: 1;
}

.policy-steps li::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-40), transparent);
}

.policy-steps li:last-child::after {
  content: none;
}

.policy-note {
  margin-top: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  background: var(--gold-10);
  border: 1px solid var(--gold-25);
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--text-soft);
}

ul.policy-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.policy-contact li {
  display: contents;
}

.policy-contact .contact-link {
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-pill);
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: border-color var(--t-fast) var(--ease-soft), background var(--t-fast) var(--ease-soft), transform var(--t-fast) var(--ease-soft);
}

.policy-contact .contact-link:hover {
  border-color: var(--gold-40);
  background: var(--gold-10);
  transform: translateY(-2px);
}

/* ==========================================================================
   21. CONTACT LISTS / FOOTER
   ========================================================================== */
.contact-list {
  display: grid;
  gap: var(--sp-3);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--text-soft);
  font-size: 0.92rem;
  transition: color var(--t-fast) var(--ease-soft), transform var(--t-fast) var(--ease-soft);
}

.contact-hours {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-hours span {
  display: inline;
}

.contact-hours span + span {
  margin-left: 6px;
}

.contact-link:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: var(--gold);
  transition: all var(--t-fast) var(--ease-soft);
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-icon .whatsapp-icon,
.float-cta .whatsapp-icon {
  fill: currentColor !important;
  stroke: none !important;
}

.contact-link:hover .contact-icon {
  border-color: var(--gold-60);
  background: var(--gold-10);
  box-shadow: 0 0 0 4px var(--gold-10);
}

.store-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.store-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.store-status.is-open {
  color: #2ecc71;
}

.store-status.is-open .store-status-dot {
  background: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.18);
}

.store-status.is-closed {
  color: #e85c4a;
}

.store-status.is-closed .store-status-dot {
  background: #e85c4a;
  box-shadow: 0 0 0 3px rgba(232, 92, 74, 0.18);
}

.footer-location-link {
  align-items: flex-start !important;
}

.footer-location-link .contact-icon {
  margin-top: 1px;
}

.footer-location-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.35;
}

.site-footer {
  position: relative;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: var(--sp-10) 0 0;
  margin-top: var(--sp-10);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-60), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1fr 1.1fr 1.1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-10);
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: var(--sp-4);
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 320px;
}

.footer-nav h4,
.footer-contact h4,
.footer-showroom h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: var(--sp-5);
}

.footer-nav ul {
  display: grid;
  gap: var(--sp-2);
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease-soft), padding-left var(--t-fast) var(--ease-soft);
}

.footer-nav a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-muted);
}

.footer-copy {
  display: inline;
}

.cookie-manage-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast) var(--ease-soft);
}

.cookie-manage-btn:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   22. COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: var(--sp-5);
  right: var(--sp-5);
  bottom: var(--sp-5);
  z-index: 150;
  max-width: 720px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--gold-25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-gold-soft);
  padding: var(--sp-6);
  transform: translateY(140%);
  transition: transform var(--t-slow) var(--ease);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

.cookie-banner-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cookie-banner-text a {
  color: var(--gold-light);
}

.cookie-banner-actions {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.cookie-banner-actions .btn {
  padding: 11px 20px;
  font-size: 0.85rem;
}

/* ==========================================================================
   23. FLOATING WHATSAPP CTA
   ========================================================================== */
.float-cta {
  position: fixed;
  right: var(--sp-6);
  bottom: var(--sp-6);
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #28d365, #1fa855);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(31, 168, 85, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: floatPulse 2.8s ease-in-out infinite;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.float-cta svg {
  width: 28px;
  height: 28px;
}

.float-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(31, 168, 85, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12);
  animation-play-state: paused;
}

@keyframes floatPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(31, 168, 85, 0.45), 0 0 0 0 rgba(40, 211, 101, 0.35);
  }
  50% {
    box-shadow: 0 10px 30px rgba(31, 168, 85, 0.45), 0 0 0 10px rgba(40, 211, 101, 0);
  }
}

/* ==========================================================================
   24. RESPONSIVE BREAKPOINTS (desktop-first, matching nav pattern)
   ========================================================================== */

/* Large desktop refinement */
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
  }

  .hero h1,
  .hero .hero-title {
    max-width: 900px;
  }
}

/* Tablet / small desktop */
@media (max-width: 1080px) {
  .category-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .dg-features-box {
    flex-wrap: wrap;
  }

  .dg-feature {
    flex-basis: 50%;
  }

  .dg-feature:nth-child(3),
  .dg-feature:nth-child(4) {
    border-top: 1px solid var(--card-border);
  }

  .hero-highlights {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 100%;
  }

  .hero-highlight-body strong,
  .hero-highlight-body span {
    white-space: normal;
  }
}

@media (max-width: 960px) {
  .product-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-details-with-price {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .tech-split {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }

  .tech-content p {
    max-width: none;
    text-align: justify;
    text-align-last: left;
    -webkit-hyphens: auto;
    hyphens: auto;
  }

}

/* Header / nav breakpoint — mobile drawer menu */
@media (max-width: 860px) {
  :root {
    --header-h: 72px;
  }

  .dg-hero-title {
    white-space: normal;
  }

  .policy-hero h1,
  .policy-hero .hero-info p {
    white-space: normal;
  }

  .policy-hero .hero-info p {
    text-align: justify;
    text-align-last: left;
    -webkit-hyphens: auto;
    hyphens: auto;
  }

  .header-row {
    flex-wrap: nowrap;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    width: min(86vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-2);
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-left: 1px solid var(--gold-25);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.6);
    padding: calc(var(--sp-7) + env(safe-area-inset-top, 0px)) var(--sp-7) var(--sp-7);
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease);
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    width: 100%;
    padding: var(--sp-4) 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    color: var(--text);
    margin-bottom: var(--sp-5);
    transition: all var(--t-fast) var(--ease-soft);
  }

  .nav-close:hover {
    border-color: var(--gold-60);
    color: var(--gold-light);
  }

  .menu-toggle {
    display: inline-flex;
    height: 44px;
    padding: 0 14px;
  }

  .header-actions {
    gap: var(--sp-3);
  }

  .header-actions .btn.primary {
    height: 44px;
    padding: 0 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 560px) {
  .logo img {
    height: 34px;
  }

  .btn-label-full {
    display: none;
  }

  .btn-label-short {
    display: inline;
  }

  .menu-toggle-label {
    display: none;
  }

  .menu-toggle {
    padding: 0 12px;
  }
}

/* Tablet content */
@media (max-width: 768px) {
  :root {
    --sp-9: 44px;
    --sp-10: 56px;
    --sp-11: 64px;
  }

  .topbar-row {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-4);
  }

  .topbar .topbar-row {
    padding-bottom: var(--sp-5);
  }

  .topbar-info {
    margin-right: 0;
    flex-basis: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar-contacts {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
  }

  .topbar-cta-mobile {
    display: inline-flex;
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .topbar-hours {
    border-left: none;
    padding-left: 0;
  }

  .topbar-item span,
  .topbar-item {
    font-size: 0.74rem;
  }

  .topbar-item-text {
    display: none;
  }

  .topbar-item {
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .topbar-item svg {
    width: 18px;
    height: 18px;
  }

  .header-actions .btn.primary {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: var(--sp-8);
  }

  .hero-content {
    padding-top: var(--sp-7);
    padding-bottom: var(--sp-9);
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .hero-highlight-body strong,
  .hero-highlight-body span {
    white-space: normal;
  }

  .hero-content::before,
  .hero-content::after {
    display: none;
  }

  .hero-progress-wrap {
    top: var(--sp-4);
    bottom: auto;
  }

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

  .hero-cta .btn {
    width: 100%;
  }

  .section {
    padding: var(--sp-9) 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    max-width: 100%;
    margin-top: var(--sp-3);
  }

  .category-overview-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-7);
  }

  .footer-brand,
  .footer-contact,
  .footer-showroom {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 24px;
  }

  .footer-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-1);
    margin-top: 20px;
  }

  .footer-nav {
    text-align: center;
  }

  .footer-nav ul {
    justify-items: center;
  }

  .contact-hours span {
    display: block;
  }

  .contact-hours span + span {
    margin-left: 0;
    margin-top: 2px;
  }

  .footer-contact .contact-list,
  .footer-showroom .contact-list {
    justify-items: center;
  }

  .cta-section {
    padding-left: var(--sp-6);
    padding-right: var(--sp-6);
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-7);
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    flex: 1;
  }

  .custom-order-dims-row,
  .custom-order-row {
    grid-template-columns: 1fr;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="search"],
  select,
  textarea {
    font-size: 16px;
  }

  .dg-feature {
    flex-basis: 50%;
  }

  .dg-feature:nth-child(3),
  .dg-feature:nth-child(4) {
    border-top: 1px solid var(--card-border);
  }

  .dg-feature:nth-child(even) {
    border-left: 1px solid var(--card-border);
  }

  .dg-feature:nth-child(odd) {
    border-left: none;
  }

  .dg-hero {
    min-height: 64vh;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .btn {
    flex: 1;
  }

  .float-cta {
    width: 52px;
    height: 52px;
    right: var(--sp-4);
    bottom: var(--sp-4);
  }
}

@media (max-width: 640px) {
  .dg-hero {
    background-position: var(--dg-hero-pos-mobile, right 65%);
    background-size: var(--dg-hero-size-mobile, cover);
    background-repeat: no-repeat;
  }

  .dg-since {
    margin-top: var(--sp-6);
  }

  .dg-features-box {
    flex-direction: column;
    align-items: stretch;
    width: auto;
    max-width: 195px;
  }

  .dg-hero--blocks-right .dg-features-box {
    align-self: flex-end;
  }

  .dg-feature {
    flex-basis: auto;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    padding: 10px 14px;
    gap: 10px;
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .dg-feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .dg-feature + .dg-feature,
  .dg-feature:nth-child(3),
  .dg-feature:nth-child(4) {
    border-top: 1px solid var(--card-border);
    border-left: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--sp-4);
  }

  .cta-section {
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
  }

  .cta-card {
    padding: var(--sp-6) var(--sp-5);
  }

  h1 {
    font-size: clamp(2rem, 1.6rem + 3vw, 2.6rem);
  }

  .category-overview-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
  }

  .product-details-with-price {
    grid-template-columns: minmax(0, 1fr);
  }

  .custom-order-panel {
    padding: var(--sp-6) var(--sp-5);
  }

  .btn {
    padding: 14px 22px;
    font-size: 0.9rem;
  }

  .logo img {
    height: 36px;
  }

  .faq-list {
    column-count: 1;
  }
}

/* ==========================================================================
   25. CATEGORY GUIDE & OTHER CATEGORIES
   ========================================================================== */
.guide-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.guide-topic {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}

.guide-topic h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.guide-topic-subtitle {
  color: var(--text-muted);
  font-weight: 600;
}

.guide-topic p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
  hyphens: none;
}

.other-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.other-category-link {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.other-category-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(218, 165, 32, 0.06);
}

/* ==========================================================================
   26. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .float-cta,
  .policy-scroll-btn {
    animation: none;
  }

  .hero-slide {
    transition: opacity var(--t-base) linear;
  }

  .product-card:hover,
  .split-card:hover {
    transform: none;
  }
}
