:root {
  --bg-dark: #0f1419;
  --bg-dark-soft: #1a2332;
  --nav-bg: #1a1a1e;
  --bg-card: #f3ead4;
  --bg-card-elevated: #faf4e4;
  --bg-light: #ddd0b0;
  --bg-warm: #d4c49a;
  --bg-page: #cfc099;
  --bg-section: #c9b88a;
  --bg-section-deep: #b8a574;
  --text-dark: #1a1408;
  --text-muted: #5c4e32;
  --text-light: #ffffff;
  --accent: #c9a227;
  --accent-bright: #e8c547;
  --accent-hover: #b8921a;
  --accent-dark: #8a6d0f;
  --accent-soft: #f0e4c4;
  --accent-glow: rgba(201, 162, 39, 0.42);
  --secondary: #1a2332;
  --border: #b8a574;
  --border-gold: rgba(201, 162, 39, 0.55);
  --shadow: 0 4px 24px rgba(26, 20, 8, 0.12);
  --shadow-lg: 0 12px 48px rgba(26, 20, 8, 0.18);
  --shadow-accent: 0 8px 28px var(--accent-glow);
  --radius: 12px;
  --radius-lg: 16px;
  --brand-red: #d41414;
  --brand-metal: #1a1a1e;
  --brand-metal-soft: #222228;
  --logo-metal-bg: #1a1a1e;
  --logo-metal-pattern:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 38%, rgba(0, 0, 0, 0.28) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.028) 0,
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px,
      transparent 4px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 3px
    );
  --header-h: 104px;
  --logo-h: 92px;
  --logo-max-w: 340px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --pattern-dots: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='2' cy='2' r='1.2' fill='%238a6d0f' fill-opacity='0.14'/%3E%3C/svg%3E");
  --pattern-hex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 64L4 50V18L28 4l24 14v32L28 64zm0-8L12 46V22L28 12l16 10v24L28 56z' fill='none' stroke='%23a8882a' stroke-opacity='0.16' stroke-width='1'/%3E%3C/svg%3E");
  --pattern-grid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M48 0H0V48' fill='none' stroke='%23c9a227' stroke-opacity='0.1' stroke-width='1'/%3E%3C/svg%3E");
  --pattern-diagonal: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M-1 1l2-2M0 12L12 0M11 13l2-2' stroke='%23b8921a' stroke-opacity='0.12' stroke-width='0.8'/%3E%3C/svg%3E");
  --pattern-circuit: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cpath d='M0 48h36M60 48h36M48 0v36M48 60v36' stroke='%23a8882a' stroke-opacity='0.11' stroke-width='1'/%3E%3Ccircle cx='48' cy='48' r='4' fill='%23c9a227' fill-opacity='0.1'/%3E%3C/svg%3E");
  --pattern-radial: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='%23c9a227' stroke-opacity='0.07' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='24' fill='none' stroke='%23c9a227' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background-color: var(--bg-page);
  background-image:
    var(--pattern-dots),
    linear-gradient(180deg, var(--bg-page) 0%, var(--bg-light) 100%);
  background-size: 24px 24px, 100% 100%;
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 55%, var(--accent-hover) 100%);
  color: #1a1408;
  font-weight: 700;
  box-shadow: var(--shadow-accent);
  border: 1px solid rgba(138, 109, 15, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #f0d060 0%, var(--accent-bright) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
.btn-dark:hover { background: var(--bg-dark-soft); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: var(--brand-metal);
  background-image: var(--logo-metal-pattern);
  border-bottom: 2px solid var(--brand-red);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo-surface {
  background-color: var(--logo-metal-bg);
  background-image: var(--logo-metal-pattern);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 2px 10px rgba(0, 0, 0, 0.22);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 12px 4px 10px;
}

.logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: var(--logo-h);
  max-width: min(var(--logo-max-w), 54vw);
  object-fit: contain;
  object-position: left center;
}

.logo-img--brand {
  max-height: var(--logo-h);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
}

.footer-logo .logo-img,
.footer-logo .logo-img--brand {
  max-height: 200px;
  max-width: min(300px, 92vw);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--accent-bright); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.65;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-dark-soft);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.dropdown-menu a:hover { background: rgba(201, 162, 39, 0.15); color: var(--accent-bright); }

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-bright);
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-head,
.nav-backdrop { display: none; }

body.mobile-nav-open { overflow: hidden; }

/* Hero Slider */
.hero-slider {
  position: relative;
  min-height: 85vh;
  margin-top: var(--header-h);
  overflow: hidden;
  background: var(--bg-dark);
  touch-action: pan-y;
}

.hero-slides {
  position: relative;
  min-height: 85vh;
  touch-action: pan-y;
  cursor: grab;
}

.hero-slides.is-swiping {
  cursor: grabbing;
}

.hero-slides a,
.hero-slides button {
  cursor: pointer;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark) center/cover no-repeat;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.hero-slide-bg--photo {
  filter: saturate(1.05) brightness(0.85);
}

.hero-slide-bg--pattern {
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.06) 25%, transparent 25%) -20px 0 / 40px 40px,
    linear-gradient(225deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%) -20px 0 / 40px 40px;
  opacity: 0.5;
  transform: none;
}

.hero-slide.is-active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide.is-active .hero-slide-bg--pattern {
  transform: none;
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 20, 25, 0.92) 0%,
    rgba(15, 20, 25, 0.78) 42%,
    rgba(15, 20, 25, 0.45) 68%,
    rgba(201, 162, 39, 0.18) 100%
  );
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
  min-height: 85vh;
  padding: 48px 24px 110px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  list-style: none;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  backdrop-filter: blur(4px);
}

.hero-highlight-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 480px);
}

.hero-visual-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: rgba(15, 20, 25, 0.65);
}

.hero-visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-visual-photo.is-hidden { display: none; }

.hero-visual-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
  pointer-events: none;
}

.hero-visual-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero-visual-glow {
  position: absolute;
  inset: auto -20% -20% -20%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-visual-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 197, 71, 0.08) 48%, transparent 52%, transparent 100%);
  background-size: 100% 220%;
  animation: hero-scan 4s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes hero-scan {
  0%, 100% { background-position: 0 -120%; }
  50% { background-position: 0 120%; }
}

.hero-float-badge {
  position: absolute;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(15, 20, 25, 0.88);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: hero-float 5s ease-in-out infinite;
}

.hero-float-badge--1 { top: 8%; left: -6%; animation-delay: 0s; }
.hero-float-badge--2 { bottom: 12%; right: -4%; animation-delay: 1.2s; }

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-counter {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 4;
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(15, 20, 25, 0.72);
  border: 1px solid rgba(201, 162, 39, 0.35);
  backdrop-filter: blur(8px);
  font-weight: 800;
  color: #fff;
}

.hero-counter-current {
  font-size: 1.5rem;
  color: var(--accent-bright);
  line-height: 1;
}

.hero-counter-sep {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
}

.hero-counter-total {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 0 12px var(--accent-glow);
}

.hero-progress-bar.is-running {
  animation: hero-progress-fill linear forwards;
}

@keyframes hero-progress-fill {
  from { width: 0%; }
  to { width: 100%; }
}

.hero-strip {
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  z-index: 3;
  border-top: 1px solid rgba(201, 162, 39, 0.28);
  background: rgba(15, 20, 25, 0.82);
  backdrop-filter: blur(10px);
}

.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px 24px;
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
}

.hero-strip-item strong {
  font-size: 1.05rem;
  color: var(--accent-bright);
  line-height: 1;
}

.hero-strip-item span:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.hero-strip-icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.25);
  border: 1px solid var(--accent-bright);
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.hero-slide.is-active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-arrow {
  display: none;
}

.hero-arrow svg { width: 22px; height: 22px; }

.hero-arrow:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--accent);
}

.hero-arrow--prev { left: 20px; }
.hero-arrow--next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 24, 32, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 39, 0.2);
  max-width: calc(100% - 32px);
  overflow-x: auto;
}

.hero-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-dot-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent-bright);
}

.hero-dot-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero-dot.is-active {
  background: rgba(201, 162, 39, 0.22);
  border-color: rgba(201, 162, 39, 0.55);
  color: #fff;
  width: auto;
  border-radius: 999px;
}

.hero-dot:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(201, 162, 39, 0.35);
}

/* Hero (shared text styles) */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark) center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 24, 32, 0.94) 0%,
    rgba(26, 35, 50, 0.82) 55%,
    rgba(212, 175, 55, 0.14) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 80px 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Inner pages */
.page-hero {
  position: relative;
  margin-top: var(--header-h);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-soft) 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 56px 0;
  border-bottom: 4px solid var(--accent-bright);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 20, 25, 0.88) 0%, rgba(26, 35, 50, 0.78) 45%, rgba(201, 162, 39, 0.18) 100%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero--products { background-image: url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=1600&h=500&fit=crop"); }
.page-hero--brands { background-image: url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=1600&h=500&fit=crop"); }
.page-hero--blog { background-image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1600&h=500&fit=crop"); }
.page-hero--contact { background-image: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&h=500&fit=crop"); }
.page-hero--about { background-image: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1600&h=500&fit=crop"); }
.page-hero--faq { background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600&h=500&fit=crop"); }
.page-hero--shipping { background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&h=500&fit=crop"); }
.page-hero--cart { background-image: url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&h=500&fit=crop"); }
.page-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.page-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head .section-title { margin-bottom: 0; }
.section-link {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.section-link:hover { text-decoration: underline; }

/* Sections */
.section { padding: 80px 0; }

.section > .container,
.section > .container-fluid {
  position: relative;
  z-index: 1;
}

.bg-pattern {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-pattern--dots::before {
  background-image: var(--pattern-dots);
  background-size: 24px 24px;
  opacity: 0.85;
}

.bg-pattern--hex::before {
  background-image: var(--pattern-hex);
  background-size: 56px 97px;
  opacity: 0.9;
}

.bg-pattern--grid::before {
  background-image: var(--pattern-grid);
  background-size: 48px 48px;
  opacity: 0.85;
}

.bg-pattern--diagonal::before {
  background-image: var(--pattern-diagonal);
  background-size: 12px 12px;
  opacity: 0.9;
}

.bg-pattern--circuit::before {
  background-image: var(--pattern-circuit);
  background-size: 96px 96px;
  opacity: 0.75;
}

.bg-pattern--radial::before {
  background-image: var(--pattern-radial);
  background-size: 80px 80px;
  opacity: 0.8;
}

.bg-pattern--corner::after {
  content: "";
  position: absolute;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18) 0%, transparent 68%);
}

.bg-pattern--corner-tl::after { top: -120px; left: -120px; }
.bg-pattern--corner-br::after { bottom: -120px; right: -120px; }

/* Section background patterns */
.services-section,
.products-section,
.sale-section,
.features-section,
.reviews-section,
.blog-preview-section,
.about-section,
.contact-section,
.brands-section,
.cta-section,
.map-section,
.categories-section,
.product-detail-section,
.blog-article-section,
section.section:not(.page-hero):not(.hero-slider) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.services-section::before,
.about-section::before,
.categories-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--pattern-hex);
  background-size: 56px 97px;
  opacity: 0.85;
}

.brands-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--pattern-circuit);
  background-size: 96px 96px;
  opacity: 0.65;
}

.products-section::before,
.reviews-section::before,
.blog-preview-section::before,
section.section:not(.page-hero):not(.hero-slider):not(.services-section):not(.products-section):not(.sale-section):not(.features-section):not(.reviews-section):not(.blog-preview-section):not(.about-section):not(.contact-section):not(.brands-section):not(.cta-section):not(.map-section):not(.categories-section):not(.product-detail-section):not(.blog-article-section)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--pattern-dots);
  background-size: 24px 24px;
  opacity: 0.8;
}

.sale-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--pattern-diagonal);
  background-size: 12px 12px;
  opacity: 0.85;
}

.features-section::before,
.contact-section::before,
.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--pattern-grid);
  background-size: 48px 48px;
  opacity: 0.8;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--pattern-radial);
  background-size: 80px 80px;
  opacity: 0.75;
}

.product-detail-section::before,
.blog-article-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--pattern-circuit);
  background-size: 96px 96px;
  opacity: 0.55;
}

.services-section::after,
.products-section::after,
.about-section::after {
  content: "";
  position: absolute;
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.14) 0%, transparent 70%);
}

.services-section::after { top: -100px; right: -100px; }
.products-section::after { bottom: -120px; left: -100px; }
.about-section::after { bottom: -100px; right: -80px; }

.services-section {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-warm) 100%);
}

.products-section { background: transparent; }

.blog-preview-section { background: var(--bg-section); }
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent), transparent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-title.title-animated::after {
  transform: scaleX(1);
}

/* Categories */
.categories-section { background: var(--bg-section); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.category-card:hover img { transform: scale(1.05); }

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.category-card h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.categories-grid--page {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.category-card--page {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
}

.category-card--page img {
  width: 100%;
  aspect-ratio: 16/10;
  height: auto;
  flex-shrink: 0;
}

.category-card--page:hover img {
  transform: scale(1.03);
}

.category-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-card-body h3 {
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 700;
}

.category-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.category-card-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.3px;
}

.products-back-row {
  margin-bottom: 20px;
}

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  min-width: 130px;
  box-shadow: var(--shadow);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent-bright);
  background: var(--accent-soft);
  box-shadow: var(--shadow-accent);
}

.filter-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.filter-icon-img {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-light);
}

.filter-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filter-btn span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-bright);
}

.product-name-link { color: inherit; }
.product-name-link:hover .product-name { color: var(--accent-dark); }

.product-image {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-light);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.product-name-link { color: inherit; }
.product-name-link:hover .product-name { color: var(--accent-dark); }

.product-material {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.product-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  width: auto;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-sizing: border-box;
}
.product-whatsapp svg { width: 18px; height: 18px; }

.empty-state {
  text-align: center;
  color: var(--text-muted);
  padding: 40px;
  font-size: 1.1rem;
}

/* About */
.about-section { background: var(--bg-section); }
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-text h3 {
  margin: 24px 0 12px;
  font-size: 1.2rem;
}
.about-list {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-muted);
}
.about-list li { margin-bottom: 8px; }
.about-brand {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}
.about-list--checks { list-style: none; padding-left: 0; }
.about-list--checks li {
  position: relative;
  padding-left: 1.5em;
}
.about-list--checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}
.about-contact {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid rgba(26, 35, 50, 0.22);
}
.about-contact p { margin: 0 0 12px; }
.about-contact p:last-child { margin-bottom: 0; }
.about-contact a { color: var(--secondary); text-decoration: none; font-weight: 600; }
.about-contact a:hover { color: var(--bg-dark-soft); text-decoration: underline; }
.about-motto {
  margin: 28px 0 0;
  padding: 16px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.08), rgba(26, 35, 50, 0.03));
  border: 1px solid rgba(26, 35, 50, 0.2);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  text-align: center;
  letter-spacing: 0.02em;
}
.about-why-intro {
  font-weight: 600;
  margin: 0 0 8px;
}
.about-tagline {
  margin-top: 16px;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
  text-align: center;
}
.about-acronym {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  text-align: center;
}
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--accent-bright);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-dark);
}
.about-section .stat-card {
  border-left-color: var(--secondary);
}
.about-section .stat-number {
  color: var(--secondary);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--brand-metal);
  background-image: var(--logo-metal-pattern);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--pattern-diagonal);
  background-size: 12px 12px;
  opacity: 0.12;
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-desc { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul li {
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact li { color: rgba(255,255,255,0.7); }

.footer-social-wrap {
  margin-top: 18px;
}
.footer-social-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--accent);
  background: rgba(212, 175, 55, 0.08);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social-link:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.social-links a:hover { background: var(--accent); color: var(--text-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Floating widgets */
.chat-bubble {
  position: fixed;
  bottom: 100px;
  left: 24px;
  background: var(--bg-dark-soft);
  color: #fff;
  border: 1px solid var(--border-gold);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 900;
  cursor: pointer;
  transition: transform 0.2s;
}
.chat-bubble:hover { transform: translateY(-2px); }
.chat-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: var(--bg-dark);
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(18, 24, 32, 0.25);
  z-index: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s, border-color 0.2s;
}

.scroll-top svg { width: 22px; height: 22px; }

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

.footer-social-link--whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header-inner { gap: 8px; }
  .header-actions .header-cta { display: none; }
  .logo-img { max-width: min(var(--logo-max-w), 44vw); }
  .lang-btn { padding: 8px 10px; min-height: 40px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-card-logo { min-height: 80px; padding: 20px 16px 16px; }
  .brand-logo-main { max-height: 36px; max-width: 120px; }
  .brand-card-body { padding: 0 14px 16px; }
  .brand-card h3 { font-size: 0.9rem; }
  .brand-card p { font-size: 0.78rem; margin-bottom: 12px; }
  .brands-group-title { font-size: 1rem; margin-bottom: 16px; }
  .brands-group { margin-bottom: 36px; }
  .filter-bar--scroll .filter-btn { min-width: 108px; padding: 12px 16px; }
  .filter-icon { width: 32px; height: 32px; }
  .filter-btn span { font-size: 0.65rem; }
  .hero-slide .hero-content { padding: 0; max-width: 100%; }
  .hero-slider {
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: hidden;
  }
  .hero-slides {
    min-height: auto;
    flex: 1 1 auto;
    order: 1;
  }
  .hero-slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    z-index: 0;
    min-height: 0;
  }
  .hero-slide.is-active {
    display: flex;
    align-items: stretch;
    z-index: 1;
    min-height: auto;
  }
  .hero-slide.is-active .hero-content {
    opacity: 1;
    transform: none;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 16px 20px;
    min-height: auto;
    width: 100%;
  }
  .hero-visual {
    justify-self: center;
    width: min(100%, 280px);
    order: -1;
  }
  .hero-float-badge { display: none; }
  .hero-counter { top: 12px; right: 12px; padding: 6px 10px; }
  .hero-counter-current { font-size: 1.1rem; }
  .hero-dots {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    order: 2;
    margin: 4px auto 10px;
    max-width: calc(100% - 24px);
    z-index: 2;
  }
  .hero-strip {
    position: relative;
    bottom: auto;
    order: 3;
    z-index: 2;
  }
  .hero-progress {
    order: 4;
    position: relative;
  }
  .hero-dot-label { display: none; }
  .hero-strip-inner { grid-template-columns: repeat(2, 1fr); padding: 10px 14px; }
  .hero-strip-item { font-size: 0.72rem; gap: 8px; }
  .hero-title { font-size: clamp(1.35rem, 5.5vw, 1.85rem); line-height: 1.2; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 16px; line-height: 1.55; }
  .hero-highlights { margin-bottom: 16px; gap: 8px; }
  .hero-highlight { font-size: 0.72rem; padding: 6px 12px; }
  .hero-actions { gap: 10px; margin-bottom: 4px; }
  .hero-actions .btn-outline {
    background: rgba(15, 20, 25, 0.72);
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
    backdrop-filter: blur(4px);
  }
  .hero-dot {
    padding: 4px 8px;
    min-height: 30px;
  }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-actions { flex-direction: column; }
  .product-actions .btn { width: 100%; min-width: 0; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: auto;
    right: 0;
    width: min(300px, 88vw);
    bottom: 0;
    z-index: 1100;
    background: var(--nav-bg);
    border-bottom: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px 32px;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s;
  }
  .nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1090;
    background: rgba(0, 0, 0, 0.55);
    border: none;
    padding: 0;
    margin: 0;
  }
  .nav-backdrop[hidden] { display: none !important; }
  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: var(--nav-bg);
    z-index: 2;
  }
  .mobile-nav-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }
  .mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-bright);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }
  .mobile-nav-close:active { background: rgba(255, 255, 255, 0.14); }
  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 4px;
    font-size: 0.92rem;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.92);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-link.active { color: var(--accent-bright); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 4px;
    font-size: 0.92rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-dropdown-trigger::after {
    margin-left: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }
  .nav-dropdown.open .nav-dropdown-trigger::after {
    transform: rotate(180deg);
  }
  .nav-dropdown .dropdown-menu {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0;
    min-width: 0;
    transition: max-height 0.25s ease;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
  }
  .nav-dropdown.open .dropdown-menu {
    visibility: visible;
    max-height: 360px;
    padding: 0 0 8px 0;
  }
  .nav-dropdown .dropdown-menu a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 4px 12px 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
  }
  .header-actions {
    position: relative;
    z-index: 1002;
  }
  .header-cta { display: none; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .filter-bar { gap: 10px; }
  .filter-btn { min-width: 100px; padding: 12px 16px; }
  .chat-bubble { display: none; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .categories-grid--page { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-footer {
    flex-wrap: wrap;
    gap: 8px;
  }
  .product-footer .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
  .product-detail-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .product-detail-footer .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* Features */
.features-section { background: var(--bg-section-deep); }

.section-lead {
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 8px;
}

.services-highlight-grid .service-highlight-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.services-highlight-grid .service-highlight-card:hover {
  border-color: var(--accent-bright);
  box-shadow: var(--shadow-accent);
}
.service-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.service-highlight-card:hover .service-card-image img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.feature-card--photo {
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.feature-card-photo {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.feature-card--photo .feature-card-inner {
  padding: 20px 24px 24px;
}
.contact-card-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.services-highlight-grid .section-link {
  margin-top: auto;
  padding-top: 12px;
  font-weight: 600;
  color: var(--accent-dark);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--accent-bright);
  box-shadow: var(--shadow-accent);
}
.feature-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Product detail */
.product-detail-section { padding-top: 40px; }
.product-detail-section .breadcrumb { color: var(--text-muted); }
.product-detail-section .breadcrumb a { color: var(--accent-dark); }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}
.product-detail-image {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-detail-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-detail-category {
  display: inline-block;
  background: var(--bg-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.product-detail-info h1 { font-size: 1.8rem; margin-bottom: 16px; }
.product-detail-compat { color: var(--text-muted); margin-bottom: 20px; }
.product-detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 24px;
}
.product-detail-wa { margin-bottom: 12px; width: 100%; max-width: 320px; }
.product-detail-info .btn-outline {
  color: var(--text-dark);
  border-color: var(--border, #e0e0e0);
  display: inline-flex;
  margin-top: 8px;
}
.product-detail-info .btn-outline:hover { background: var(--bg-light); }

/* Contact */
.contact-section { background: var(--bg-section); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--bg-card-elevated);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent-bright); box-shadow: 0 0 0 2px var(--accent-glow); }
.contact-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.contact-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.contact-card p { font-size: 0.9rem; color: var(--text-muted); }
.contact-form h2 { font-size: 1.3rem; margin-bottom: 8px; }
.form-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
.btn-block { width: 100%; }

/* CTA */
.cta-section { background: var(--bg-section-deep); }
.cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-soft) 70%, rgba(201, 162, 39, 0.25) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 2px solid var(--accent-bright);
  box-shadow: var(--shadow-lg);
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  animation: cta-laser-scan 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.cta-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 197, 71, 0.6), transparent);
  animation: cta-laser-scan 4s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 1;
}
.cta-box h2 { font-size: 1.6rem; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* Header cart */
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-link { position: relative; font-size: 1.3rem; padding: 8px; }
.cart-badge {
  position: absolute; top: 0; right: 0;
  background: var(--accent); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Product badges */
.product-image { position: relative; }
.badge-sale, .badge-stock {
  position: absolute; z-index: 2; font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
}
.badge-sale { top: 10px; left: 10px; background: #ef4444; color: #fff; }
.badge-stock { top: 10px; right: 10px; }
.badge-stock.stock-low {
  animation: stock-pulse 2s ease-in-out infinite;
}
.badge-stock.stock-order {
  animation: stock-pulse 2.5s ease-in-out infinite;
}
.stock-in { background: #dcfce7; color: #166534; }
.stock-low { background: #fef3c7; color: #92400e; }
.stock-order { background: #dbeafe; color: #1e40af; }
.stock-out { background: #fee2e2; color: #991b1b; }
.badge-sale-lg, .badge-stock-lg { position: static; display: inline-block; margin-right: 8px; margin-bottom: 8px; }
.product-oem { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px; display: block; }
.product-price-row, .product-detail-price-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 0; }
.product-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-gold);
}
.product-footer .product-price-row {
  flex: 1 1 0;
  min-width: 0;
}
.product-footer .price-old { font-size: 0.75rem; }
.product-footer .price-current { font-size: 1.05rem; line-height: 1.2; }
.product-detail-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-gold);
  flex-wrap: wrap;
}
.product-detail-footer .product-detail-price-row {
  flex: 1 1 0;
  min-width: 0;
}
.product-detail-footer .product-detail-price { font-size: 2rem; }
.product-detail-footer .btn-whatsapp { padding: 14px 24px; font-size: 1rem; }
.price-old { text-decoration: line-through; color: var(--text-muted); font-size: 0.9rem; }
.price-current, .product-detail-price { font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.product-actions { display: flex; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 120px; font-size: 0.8rem; padding: 10px; }
.btn-outline-dark { background: transparent; border: 1px solid var(--border-gold); color: var(--text-dark); }
.btn-outline-dark:hover { background: var(--accent-soft); border-color: var(--accent); }
.btn-disabled { background: #ccc; color: #666; cursor: not-allowed; padding: 12px 20px; border-radius: 8px; display: inline-block; }

/* Toolbar */
.products-toolbar { margin-bottom: 8px; }
.products-search-row { margin-bottom: 16px; }
.products-search {
  width: 100%;
  max-width: 480px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.product-detail-actions .btn { flex: 1; min-width: 160px; }

/* Reviews */
.reviews-section, .sale-section { background: var(--bg-section); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.review-card { background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: var(--radius); padding: 24px; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent-soft); flex-shrink: 0; }
.review-stars .star { color: #ddd; }
.review-stars .star.filled { color: var(--accent); }
.review-card p { font-size: 0.9rem; color: var(--text-muted); margin: 12px 0; font-style: italic; }
.review-author { font-size: 0.85rem; font-weight: 600; }

/* Blog */
.blog-grid, .blog-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); display: block; transition: transform 0.2s, border-color 0.2s; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--accent-bright); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-date { font-size: 0.8rem; color: var(--text-muted); }
.blog-card h2, .blog-card h3 { margin: 8px 0; font-size: 1.1rem; }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); }
.read-more { color: var(--accent-dark); font-weight: 600; font-size: 0.85rem; }
.blog-card-lg { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.5fr; }
.blog-hero-img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 20px; max-height: 400px; object-fit: cover; }
.blog-article-body { line-height: 1.8; color: var(--text-muted); }
.blog-article-body ul { padding-left: 20px; margin: 12px 0; }

/* Brands */
.brands-section { background: var(--bg-warm); }

.brands-stats {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-bright);
  letter-spacing: 0.3px;
}

.brands-group { margin-bottom: 48px; }
.brands-group:last-child { margin-bottom: 0; }

.brands-group-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.brand-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-bright);
}

.brand-card-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 28px 24px 20px;
  background: linear-gradient(180deg, var(--bg-card-elevated) 0%, var(--accent-soft) 100%);
  border-bottom: 1px solid var(--border-gold);
}

.brand-logo-main {
  max-height: 48px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-card-body {
  padding: 0 22px 22px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.brand-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.brand-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.brand-card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.brand-count-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.brand-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent-dark);
}

.brand-fallback.is-visible { display: flex; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  min-width: 36px;
  min-height: 36px;
}

.lang-btn + .lang-btn { border-left: 1px solid var(--border-gold); }

.lang-btn.is-active,
.lang-btn:hover {
  background: var(--accent-bright);
  color: #1a1408;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.filter-bar--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  margin-bottom: 28px;
}

.filter-bar--scroll::-webkit-scrollbar { display: none; }

.filter-bar--scroll .filter-btn {
  flex-shrink: 0;
  min-width: 118px;
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.info-card { background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: var(--radius); padding: 0 0 28px; box-shadow: var(--shadow); overflow: hidden; }
.info-card-image { width: 100%; height: 160px; object-fit: cover; display: block; margin-bottom: 20px; }
.info-card h3 { margin-bottom: 12px; padding: 0 28px; }
.info-card p { padding: 0 28px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Map */
.map-section { background: var(--bg-warm); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 400px; border: 0; }

/* Cart page */
.cart-page { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.cart-list { display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto auto; gap: 16px; align-items: center; background: #fff; padding: 16px; border-radius: var(--radius); box-shadow: var(--shadow); }
.cart-item img { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; }
.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-qty button { width: 28px; height: 28px; border: 1px solid #ddd; background: #fff; border-radius: 4px; cursor: pointer; }
.cart-remove { background: none; border: none; font-size: 1.4rem; color: #999; cursor: pointer; }
.cart-summary { background: #fff; padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow); position: sticky; top: 90px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 1.1rem; }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-bottom a { color: var(--accent); }

.about-grid-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.about-gallery img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.faq-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: var(--accent); }
.faq-item[open] summary::after { content: "−"; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  padding: 0 20px;
  color: var(--text-muted);
}
.faq-answer > p {
  overflow: hidden;
  margin: 0;
}
.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
}
.faq-cta { margin-top: 32px; color: var(--text-muted); }
.faq-cta a { color: var(--accent); font-weight: 600; }

.checkout-form { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.checkout-form h3 { font-size: 1rem; margin-bottom: 16px; }
.checkout-form .form-group { margin-bottom: 12px; }
.checkout-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.checkout-form input, .checkout-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-error { color: #c0392b; font-size: 0.9rem; margin: 8px 0; }
.checkout-success { color: #27ae60; font-size: 0.9rem; margin: 8px 0; font-weight: 600; }
.order-status { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.order-status-pending { background: #fff3cd; color: #856404; }
.order-status-confirmed { background: #d4edda; color: #155724; }
.order-status-preparing { background: #cce5ff; color: #004085; }
.order-status-shipped { background: #d1ecf1; color: #0c5460; }
.order-status-delivered { background: #d4edda; color: #155724; }
.order-status-cancelled { background: #f8d7da; color: #721c24; }

.about-stats-row { margin-top: 48px; }
.about-stats-row .about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .header-actions .header-cta { display: none; }
  .cart-page { grid-template-columns: 1fr; }
  .blog-card-lg { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 60px 1fr; }
  .cart-item-price, .cart-remove { grid-column: 2; }
  .nav { max-height: none; overflow-y: auto; }
  .header-inner { gap: 8px; }
  .logo-img { max-width: min(var(--logo-max-w), 44vw); }
  .page-hero { padding: 32px 0; }
  .section { padding: 48px 0; }
  .selects-row select, .search-box input { width: 100%; min-height: 44px; }
  .selects-row { flex-direction: column; width: 100%; }
  .toolbar-row { flex-direction: column; align-items: stretch; }
  .btn, .filter-btn, .cart-link { min-height: 44px; }
  .product-actions { flex-direction: column; }
  .product-actions .btn { width: 100%; }
  .about-grid-with-image { grid-template-columns: 1fr !important; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-stats-row .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Scroll reveal & micro-animations ── */
.header {
  transition: box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.header--scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-bottom-color: var(--accent-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-strip-item {
  animation: strip-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-strip-inner .hero-strip-item:nth-child(1) { animation-delay: 0.35s; }
.hero-strip-inner .hero-strip-item:nth-child(2) { animation-delay: 0.5s; }
.hero-strip-inner .hero-strip-item:nth-child(3) { animation-delay: 0.65s; }
.hero-strip-inner .hero-strip-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes strip-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-arrow {
  transition: background 0.2s, border-color 0.2s, transform 0.25s ease;
}

.hero-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, transform 0.25s ease, gap 0.25s ease;
}

.section-link:hover {
  transform: translateX(4px);
  gap: 8px;
}

.product-card:hover .product-image img,
.blog-card:hover img,
.service-highlight-card:hover .service-card-image img {
  transform: scale(1.06);
}

.product-image img,
.blog-card img,
.service-card-image img {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.chat-bubble {
  animation: chat-bob 3s ease-in-out infinite;
}

@keyframes chat-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ── Extended animations (1–10, 12) ── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 0 12px var(--accent-glow);
  pointer-events: none;
}

.cart-fly-dot {
  position: fixed;
  z-index: 1200;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px var(--accent-glow);
  pointer-events: none;
  transition: left 0.55s cubic-bezier(0.22, 1, 0.36, 1), top 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, transform 0.55s ease;
  transform: scale(1);
  opacity: 1;
}

.cart-fly-dot.is-flying {
  opacity: 0;
  transform: scale(0.25);
}

.cart-link--bump {
  animation: cart-bump 0.45s ease;
}

@keyframes cart-bump {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.2); }
}

@keyframes stock-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(146, 64, 14, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(146, 64, 14, 0); }
}

@keyframes cta-laser-scan {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

@keyframes badge-pop {
  0% { transform: scale(0.6); opacity: 0; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes price-strike {
  from { text-decoration-color: transparent; opacity: 0.5; }
  to { text-decoration-color: var(--text-muted); opacity: 1; }
}

@keyframes brand-logo-in {
  from { opacity: 0; transform: scale(0.88) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes gear-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes nav-item-in {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}

.product-card.is-visible .badge-sale {
  animation: badge-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.product-card.is-visible .price-old {
  animation: price-strike 0.5s ease 0.25s both;
}

.product-card.is-visible .price-current {
  animation: badge-pop 0.45s ease 0.3s both;
}

.brand-card.is-visible .brand-logo-main {
  animation: brand-logo-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.service-highlight-card .service-card-body h3::before {
  display: inline-block;
  margin-right: 8px;
  animation: gear-spin 8s linear infinite;
}

.services-highlight-grid .service-highlight-card:nth-child(1) .service-card-body h3::before { content: "⚙️"; }
.services-highlight-grid .service-highlight-card:nth-child(2) .service-card-body h3::before { content: "🔧"; }
.services-highlight-grid .service-highlight-card:nth-child(3) .service-card-body h3::before { content: "✨"; }

.page-hero .container > .reveal:nth-child(1) { transition-delay: 0ms; }
.page-hero .container > .reveal:nth-child(2) { transition-delay: 100ms; }
.page-hero .container > .reveal:nth-child(3) { transition-delay: 200ms; }
.page-hero .container > .reveal:nth-child(4) { transition-delay: 280ms; }

@media (max-width: 768px) {
  .nav.open > * {
    animation: nav-item-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .nav.open > *:nth-child(1) { animation-delay: 0.04s; }
  .nav.open > *:nth-child(2) { animation-delay: 0.08s; }
  .nav.open > *:nth-child(3) { animation-delay: 0.12s; }
  .nav.open > *:nth-child(4) { animation-delay: 0.16s; }
  .nav.open > *:nth-child(5) { animation-delay: 0.2s; }
  .nav.open > *:nth-child(6) { animation-delay: 0.24s; }
  .nav.open > *:nth-child(7) { animation-delay: 0.28s; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section-title::after {
    transform: scaleX(1);
    transition: none;
  }

  .hero-strip-item,
  .chat-bubble,
  .badge-stock.stock-low,
  .badge-stock.stock-order,
  .cta-box::before,
  .cta-box::after,
  .service-highlight-card .service-card-body h3::before {
    animation: none;
  }

  .faq-answer {
    grid-template-rows: 1fr;
  }

  .scroll-progress,
  .cart-fly-dot {
    display: none;
  }

  .btn-primary::after {
    display: none;
  }

  .hero-arrow:hover {
    transform: translateY(-50%);
  }

  .nav.open > * {
    animation: none;
  }

  .product-card.is-visible .badge-sale,
  .product-card.is-visible .price-old,
  .product-card.is-visible .price-current,
  .brand-card.is-visible .brand-logo-main {
    animation: none;
  }
}
