/* Built-in (HUD) homepage banner — design is not admin-customizable */
.hud-hero {
  --hud-ink: #0b1220;
  --hud-ink-2: #152238;
  --hud-accent: #f4813c;
  --hud-accent-2: #ffb088;
  --hud-foam: #f4f7fb;
  --hud-muted: rgba(244, 247, 251, 0.72);
  position: relative;
  overflow: hidden;
  min-height: 680px;
  height: 680px;
  background: var(--hud-ink) !important;
  color: var(--hud-foam);
}

.hud-cursor-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hud-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(244, 129, 60, 0.28), transparent 62%),
    radial-gradient(ellipse 50% 45% at 12% 80%, rgba(56, 120, 180, 0.22), transparent 58%),
    radial-gradient(ellipse 40% 35% at 40% 10%, rgba(255, 176, 136, 0.12), transparent 55%),
    linear-gradient(145deg, #0b1220 0%, #121c30 42%, #0e1728 100%);
  background-size: cover;
  background-position: center;
}

.hud-hero.has-custom-bg .hud-hero__bg {
  background: #0b1220;
}

.hud-hero__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hud-hero.has-custom-bg .hud-hero__bg::before {
  opacity: 0.2;
}

.hud-hero.has-custom-bg .hud-hero__bg::after {
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.78) 0%, rgba(11, 18, 32, 0.4) 48%, rgba(11, 18, 32, 0.22) 100%);
  animation: none;
  inset: 0;
  opacity: 1;
}

/* Fine grain / fabric texture */
.hud-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 3px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.012) 2px,
      rgba(255, 255, 255, 0.012) 3px
    );
  pointer-events: none;
}

/* Soft diagonal silk sheen */
.hud-hero__bg::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.04) 48%,
    transparent 62%
  );
  animation: hud-sheen 9s ease-in-out infinite;
  pointer-events: none;
}

.hud-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}
.hud-hero__orb--a {
  width: 280px;
  height: 280px;
  right: 8%;
  top: 8%;
  background: rgba(244, 129, 60, 0.35);
  animation: hud-orb 7s ease-in-out infinite;
}
.hud-hero__orb--b {
  width: 220px;
  height: 220px;
  left: 5%;
  bottom: 5%;
  background: rgba(70, 130, 190, 0.28);
  animation: hud-orb 9s ease-in-out infinite reverse;
}

.hud-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 36px 0;
}

.hud-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px 40px;
  align-items: center;
  width: 100%;
}

.hud-hero__copy {
  max-width: 540px;
}

.hud-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 12px;
  border: 1px solid rgba(244, 129, 60, 0.45);
  border-radius: 999px;
  background: rgba(244, 129, 60, 0.12);
  color: var(--hud-accent-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  animation: hud-rise 0.8s ease forwards 0.15s;
}

.hud-hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hud-accent);
  box-shadow: 0 0 0 4px rgba(244, 129, 60, 0.2);
  animation: hud-pulse 2s ease-in-out infinite;
}

.hud-hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3.4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  background: linear-gradient(105deg, #fff 18%, #ffb088 52%, #f4813c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(22px);
  animation: hud-rise 0.85s ease forwards 0.32s;
}

.hud-hero__text {
  margin: 0 0 22px;
  max-width: 34rem;
  color: var(--hud-muted);
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(22px);
  animation: hud-rise 0.85s ease forwards 0.48s;
}

.hud-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hud-accent), #e06a28);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(244, 129, 60, 0.35);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px);
  animation: hud-rise 0.85s ease forwards 0.62s;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hud-hero__cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: hud-shine 3.2s ease-in-out infinite 1.2s;
}

.hud-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(244, 129, 60, 0.45);
  color: #fff !important;
}

.hud-hero__cta i {
  font-size: 12px;
  transition: transform 0.25s ease;
}
.hud-hero__cta:hover i {
  transform: translateX(3px);
}

/* ---- 3D device stage ---- */
.hud-hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  perspective: 1200px;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  animation: hud-rise-scale 1s ease forwards 0.4s;
}

.hud-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.hud-hero__ring--1 {
  width: 320px;
  height: 320px;
  animation: hud-spin 18s linear infinite;
  border-style: dashed;
  border-color: rgba(244, 129, 60, 0.35);
}
.hud-hero__ring--2 {
  width: 240px;
  height: 240px;
  animation: hud-spin 12s linear infinite reverse;
  border-color: rgba(255, 255, 255, 0.1);
}

.hud-phone {
  position: relative;
  width: 168px;
  height: 340px;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(8deg);
  animation: hud-float 4.5s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}

.hud-phone__body {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(160deg, #2a303c 0%, #12151c 55%, #0a0c10 100%);
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 8px 0 18px rgba(255, 255, 255, 0.04);
  transform: translateZ(12px);
}

.hud-phone__screen {
  position: absolute;
  inset: 12px 10px 14px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 176, 136, 0.35), transparent 45%),
    linear-gradient(160deg, #1a2740 0%, #243556 40%, #f4813c 140%);
  transform: translateZ(14px);
}

.hud-phone__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 28%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 14px,
      rgba(255, 255, 255, 0.03) 14px,
      rgba(255, 255, 255, 0.03) 15px
    );
}

.hud-phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 72px;
  height: 18px;
  border-radius: 12px;
  background: #0a0c10;
  transform: translateX(-50%) translateZ(16px);
  z-index: 2;
}

.hud-phone__ui {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 28px;
  z-index: 1;
}
.hud-phone__ui-bar {
  height: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  width: 70%;
}
.hud-phone__ui-bar--sm {
  width: 46%;
  opacity: 0.55;
  height: 6px;
}
.hud-phone__ui-card {
  margin-top: 18px;
  height: 72px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

.hud-phone__side {
  position: absolute;
  top: 18px;
  bottom: 18px;
  width: 10px;
  background: linear-gradient(180deg, #3a414f, #1a1e26);
  transform: rotateY(90deg) translateZ(84px);
  left: 50%;
  margin-left: -5px;
  border-radius: 2px;
}

.hud-phone__glow {
  position: absolute;
  width: 180px;
  height: 180px;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(244, 129, 60, 0.35);
  filter: blur(45px);
  z-index: -1;
  animation: hud-pulse 3s ease-in-out infinite;
}

.hud-device-photo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hud-float-photo 4.5s ease-in-out infinite;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.45));
}
.hud-device-photo__img {
  display: block;
  max-height: 520px;
  max-width: min(340px, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  mix-blend-mode: normal;
}

@keyframes hud-float-photo {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.hud-hero__chip {
  position: absolute;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  animation: hud-float 5s ease-in-out infinite;
}
.hud-hero__chip--a {
  top: 18%;
  right: 6%;
  animation-delay: 0.4s;
}
.hud-hero__chip--b {
  bottom: 22%;
  left: 4%;
  animation-delay: 1s;
}

@keyframes hud-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hud-rise-scale {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hud-float {
  0%, 100% { transform: rotateY(-18deg) rotateX(8deg) translateY(0); }
  50% { transform: rotateY(-12deg) rotateX(6deg) translateY(-14px); }
}
@keyframes hud-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -16px) scale(1.08); }
}
@keyframes hud-sheen {
  0%, 100% { transform: translateX(-8%) rotate(0deg); opacity: 0.5; }
  50% { transform: translateX(8%) rotate(2deg); opacity: 0.9; }
}
@keyframes hud-shine {
  0%, 55% { left: -120%; }
  80%, 100% { left: 140%; }
}
@keyframes hud-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes hud-spin {
  to { transform: rotate(360deg); }
}

/* Pause until page assets ready */
body:not(.page-ready) .hud-hero__eyebrow,
body:not(.page-ready) .hud-hero__title,
body:not(.page-ready) .hud-hero__text,
body:not(.page-ready) .hud-hero__cta,
body:not(.page-ready) .hud-hero__stage,
body:not(.page-ready) .hud-phone,
body:not(.page-ready) .hud-device-photo,
body:not(.page-ready) .hud-hero__orb,
body:not(.page-ready) .hud-hero__bg::after,
body:not(.page-ready) .hud-hero__ring,
body:not(.page-ready) .hud-hero__chip,
body:not(.page-ready) .hud-phone__glow,
body:not(.page-ready) .hud-hero__cta::after {
  animation: none !important;
}
body:not(.page-ready) .hud-hero__eyebrow,
body:not(.page-ready) .hud-hero__title,
body:not(.page-ready) .hud-hero__text,
body:not(.page-ready) .hud-hero__cta,
body:not(.page-ready) .hud-hero__stage {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  .hud-hero {
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden;
  }
  .hud-hero__inner {
    padding: 16px 12px 20px !important;
    height: auto !important;
    align-items: stretch;
    display: block;
  }
  .hud-hero__grid {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  /* Product first (compact), then text + CTA fully visible */
  .hud-hero__stage {
    order: 0;
    position: relative;
    width: 100%;
    height: 150px !important;
    min-height: 150px !important;
    max-height: 150px !important;
    margin: 0 auto;
    flex: 0 0 auto;
  }
  .hud-hero__copy {
    order: 1;
    position: relative;
    z-index: 2;
    max-width: none !important;
    width: 100%;
    text-align: left;
    padding: 0 2px 4px;
    flex: 0 0 auto;
  }
  .hud-hero__eyebrow {
    margin: 0 0 8px !important;
    font-size: 10px;
    padding: 4px 10px;
  }
  .hud-hero__title {
    font-size: clamp(1.35rem, 6vw, 1.75rem) !important;
    margin: 0 0 8px !important;
    line-height: 1.2 !important;
  }
  .hud-hero__text {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    margin: 0 0 14px !important;
    max-width: none !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .hud-hero__cta {
    display: inline-flex !important;
    margin: 0 0 2px !important;
    padding: 11px 18px !important;
    font-size: 13px !important;
  }
  .hud-hero__ring,
  .hud-hero__chip {
    display: none !important;
  }
  .hud-hero__orb {
    opacity: 0.3;
    filter: blur(28px);
  }
  .hud-phone {
    width: 100px;
    height: 200px;
  }
  .hud-device-photo {
    max-height: 150px;
    animation: none;
  }
  .hud-device-photo__img {
    max-height: 140px !important;
    max-width: min(160px, 46vw) !important;
  }
}

@media (max-width: 575.98px) {
  .hud-hero__inner {
    padding: 12px 10px 16px !important;
  }
  .hud-hero__stage {
    height: 130px !important;
    min-height: 130px !important;
    max-height: 130px !important;
  }
  .hud-device-photo {
    max-height: 130px;
  }
  .hud-device-photo__img {
    max-height: 120px !important;
    max-width: min(140px, 42vw) !important;
  }
  .hud-hero__title {
    font-size: clamp(1.22rem, 6.5vw, 1.55rem) !important;
  }
  .hud-hero__text {
    font-size: 0.84rem !important;
    -webkit-line-clamp: 2;
    margin-bottom: 12px !important;
  }
  .hud-hero__chip {
    display: none !important;
  }
}

/* ============================================================
   Homepage: match header + categories to system banner theme
   ============================================================ */
body.hud-theme-header {
  --hud-ink: #0b1220;
  --hud-foam: #f4f7fb;
  --hud-muted: rgba(244, 247, 251, 0.78);
  --hud-accent: #f4813c;
  --hud-line: rgba(255, 255, 255, 0.12);
}

body.hud-theme-header .header-area.header_v1 {
  position: sticky !important;
  top: 0;
  z-index: 999;
  background-color: var(--hud-ink) !important;
  background-image: var(--hud-theme-bg, none);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

body.hud-theme-header .header-area.header_v1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.88) 0%, rgba(11, 18, 32, 0.78) 55%, rgba(11, 18, 32, 0.72) 100%),
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(244, 129, 60, 0.18), transparent 60%);
}

body.hud-theme-header .header-area.header_v1 > * {
  position: relative;
  z-index: 1;
}

body.hud-theme-header .header-area.header_v1 .header-bottom,
body.hud-theme-header .header-area.header_v1 .main-navbar .navbar {
  background: transparent !important;
  border-color: transparent !important;
}

body.hud-theme-header .header-area.header_v1 .header-bottom {
  border-bottom: 1px solid var(--hud-line) !important;
}

/* Logo readable on dark */
body.hud-theme-header .header-area.header_v1 .navbar-brand {
  background: rgba(255, 255, 255, 0.94);
  padding: 4px 10px;
  border-radius: 10px;
}

/* Search — glass on dark */
body.hud-theme-header .header-search-form {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(244, 129, 60, 0.65) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: blur(8px);
}
body.hud-theme-header .header-search-form select {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-right-color: rgba(255, 255, 255, 0.15) !important;
}
body.hud-theme-header .header-search-form select option {
  color: #1e293b;
  background: #fff;
}
body.hud-theme-header .header-search-form input {
  background: transparent !important;
  color: #fff !important;
}
body.hud-theme-header .header-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}
body.hud-theme-header .header-search-suggest {
  background: #0f172a !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #e2e8f0;
}

/* Auth buttons */
body.hud-theme-header .header-btn-login {
  background: var(--hud-accent) !important;
  border-color: var(--hud-accent) !important;
  color: #fff !important;
}
body.hud-theme-header .header-btn-login:hover {
  filter: brightness(1.06);
  color: #fff !important;
}
body.hud-theme-header .header-btn-register {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
  color: #fff !important;
}
body.hud-theme-header .header-btn-register:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
  color: #fff !important;
}
body.hud-theme-header .header-btn-seller {
  color: #ffb088 !important;
  border-color: rgba(255, 176, 136, 0.45) !important;
}

/* Categories bar — seamless with banner */
body.hud-theme-header .header-area.header_v1 .categories-menu {
  background: transparent !important;
  border-top: 1px solid var(--hud-line) !important;
  border-bottom: 1px solid transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.hud-theme-header .header-area.header_v1 .categories-menu .amz-cat__trigger,
body.hud-theme-header .header-area.header_v1 .categories-menu .categories .sub-menu-item > a {
  color: rgba(244, 247, 251, 0.9) !important;
  border-color: transparent !important;
  background: transparent !important;
}
body.hud-theme-header .header-area.header_v1 .categories-menu .amz-cat__trigger:hover,
body.hud-theme-header .header-area.header_v1 .categories-menu .amz-cat.is-open > .amz-cat__trigger,
body.hud-theme-header .header-area.header_v1 .categories-menu .amz-cat:hover > .amz-cat__trigger,
body.hud-theme-header .amz-cat.is-open > .amz-cat__trigger,
body.hud-theme-header .amz-cat:hover > .amz-cat__trigger {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

/* Theme forces white 30×30 boxes on ALL category <i> — strip that for carets */
body.hud-theme-header .header-area .categories-menu i.amz-cat__caret,
body.hud-theme-header .header-area.header_v1 .categories-menu .amz-cat__caret {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #ffb088 !important;
  font-size: 11px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

body.hud-theme-header .header-area.header_v1 .categories-menu .categories .sub-menu-item:not(:last-child)::before {
  background-color: rgba(255, 255, 255, 0.14) !important;
}

/* Scroll arrows — dark glass + orange, not white tiles */
body.hud-theme-header .categories-menu-nav .left-arrow,
body.hud-theme-header .categories-menu-nav .right-arrow,
body.hud-theme-header .header-area .categories-menu .arrows {
  border-color: rgba(244, 129, 60, 0.45) !important;
  background: rgba(15, 23, 42, 0.55) !important;
}
body.hud-theme-header .header-area .categories-menu .arrows i,
body.hud-theme-header .header-area .categories-menu .left-arrow i,
body.hud-theme-header .header-area .categories-menu .right-arrow i {
  width: 30px !important;
  height: 30px !important;
  background: rgba(244, 129, 60, 0.22) !important;
  background-color: rgba(244, 129, 60, 0.22) !important;
  color: #ffb088 !important;
  border-radius: 6px !important;
}

/* Sticky state stays on theme */
body.hud-theme-header .header-area.header_v1.is-sticky {
  background-color: rgba(11, 18, 32, 0.94) !important;
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35) !important;
}

/* Hero joins the same visual plane */
body.hud-theme-header .hero-banner.hero-banner_v1.header-next,
body.hud-theme-header .hud-hero.hero-slide {
  background: transparent !important;
  border: 0 !important;
}
body.hud-theme-header .hud-hero {
  border-radius: 0;
}

/* Mobile top bar */
@media (max-width: 1199.98px) {
  body.hud-theme-header .header-area.header_v1 .main-responsive-nav,
  body.hud-theme-header .header-area.header_v1 .mobile-topbar {
    background: transparent !important;
  }
  body.hud-theme-header .header-area.header_v1 .menu-toggler span {
    background: #fff !important;
  }
  body.hud-theme-header .header-area.header_v1 .mobile-actions-toggler {
    color: #fff !important;
  }
  body.hud-theme-header .header-area.header_v1 .main-responsive-nav .logo {
    background: rgba(255, 255, 255, 0.94);
    padding: 4px 8px;
    border-radius: 8px;
  }
}

/* ---------- Furniture variant (forest / wood) ---------- */
.hud-hero--furniture {
  --hud-ink: #1a2e24;
  --hud-accent: #c4a466;
  --hud-accent-2: #e2d0a8;
  --hud-foam: #f3f6f2;
  --hud-muted: rgba(243, 246, 242, 0.78);
}
.hud-hero--furniture .hud-hero__bg {
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(196, 164, 102, 0.28), transparent 62%),
    radial-gradient(ellipse 50% 45% at 12% 80%, rgba(61, 110, 84, 0.28), transparent 58%),
    linear-gradient(145deg, #14241c 0%, #1f3529 42%, #1a2e24 100%);
}
.hud-hero--furniture .hud-hero__orb--a {
  background: rgba(196, 164, 102, 0.35);
}
.hud-hero--furniture .hud-hero__orb--b {
  background: rgba(61, 110, 84, 0.32);
}
.hud-hero--furniture .hud-hero__eyebrow {
  border-color: rgba(196, 164, 102, 0.5);
  background: rgba(196, 164, 102, 0.14);
  color: #e2d0a8;
}
.hud-hero--furniture .hud-hero__eyebrow::before {
  background: #c4a466;
  box-shadow: 0 0 0 4px rgba(196, 164, 102, 0.22);
}
.hud-hero--furniture .hud-hero__title {
  background: linear-gradient(105deg, #fff 18%, #e2d0a8 52%, #c4a466 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hud-hero--furniture .hud-hero__cta {
  background: linear-gradient(135deg, #3d6e54, #2d4a3e);
  box-shadow: 0 12px 28px rgba(45, 74, 62, 0.4);
}
.hud-hero--furniture .hud-hero__cta:hover {
  box-shadow: 0 16px 34px rgba(45, 74, 62, 0.5);
}
.hud-hero--furniture .hud-hero__ring--1 {
  border-color: rgba(196, 164, 102, 0.4);
}
.hud-hero--furniture .hud-phone__glow {
  background: rgba(196, 164, 102, 0.35);
}

/* Furniture header theme accents */
body.hud-theme-furniture.hud-theme-header {
  --hud-ink: #1a2e24;
  --hud-accent: #c4a466;
  --hud-line: rgba(255, 255, 255, 0.12);
}
body.hud-theme-furniture.hud-theme-header .header-area.header_v1::before {
  background:
    linear-gradient(180deg, rgba(26, 46, 36, 0.9) 0%, rgba(26, 46, 36, 0.8) 55%, rgba(26, 46, 36, 0.74) 100%),
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(196, 164, 102, 0.2), transparent 60%);
}
body.hud-theme-furniture.hud-theme-header .header-search-form {
  border-color: rgba(196, 164, 102, 0.7) !important;
}
body.hud-theme-furniture.hud-theme-header .header-btn-login,
body.hud-theme-furniture.hud-theme-header .header-search-form button {
  background: linear-gradient(135deg, #3d6e54, #2d4a3e) !important;
  border-color: #3d6e54 !important;
  color: #fff !important;
}
body.hud-theme-furniture.hud-theme-header .amz-cat__caret,
body.hud-theme-furniture.hud-theme-header .header-area .categories-menu i.amz-cat__caret {
  color: #e2d0a8 !important;
}

/* ---------- Watches (steel / charcoal) ---------- */
.hud-hero--watches {
  --hud-ink: #0a0c10;
  --hud-accent: #94a3b8;
  --hud-accent-2: #e2e8f0;
}
.hud-hero--watches .hud-hero__bg {
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(148, 163, 184, 0.28), transparent 62%),
    linear-gradient(145deg, #05070a 0%, #1e293b 50%, #0f172a 100%);
}
.hud-hero--watches .hud-hero__eyebrow {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(148, 163, 184, 0.14);
  color: #e2e8f0;
}
.hud-hero--watches .hud-hero__eyebrow::before { background: #94a3b8; box-shadow: 0 0 0 4px rgba(148,163,184,.2); }
.hud-hero--watches .hud-hero__title {
  background: linear-gradient(105deg, #fff 20%, #cbd5e1 55%, #94a3b8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hud-hero--watches .hud-hero__cta {
  background: linear-gradient(135deg, #64748b, #334155);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.45);
}
.hud-hero--watches .hud-hero__ring--1 { border-color: rgba(148, 163, 184, 0.4); }
.hud-hero--watches .hud-phone__glow { background: rgba(148, 163, 184, 0.35); }

body.hud-theme-watches.hud-theme-header .header-area.header_v1::before {
  background: linear-gradient(180deg, rgba(10,12,16,.92), rgba(15,23,42,.8));
}
body.hud-theme-watches.hud-theme-header .header-btn-login,
body.hud-theme-watches.hud-theme-header .header-search-form button {
  background: linear-gradient(135deg, #64748b, #334155) !important;
  border-color: #64748b !important;
}
body.hud-theme-watches.hud-theme-header .header-search-form { border-color: rgba(148,163,184,.7) !important; }
body.hud-theme-watches.hud-theme-header .amz-cat__caret { color: #cbd5e1 !important; }

/* ---------- Headphones (teal / charcoal) ---------- */
.hud-hero--headphones {
  --hud-ink: #0b1220;
  --hud-accent: #2dd4bf;
  --hud-accent-2: #99f6e4;
}
.hud-hero--headphones .hud-hero__bg {
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(45, 212, 191, 0.28), transparent 62%),
    linear-gradient(145deg, #071018 0%, #134e4a 48%, #0b1220 100%);
}
.hud-hero--headphones .hud-hero__eyebrow {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.12);
  color: #99f6e4;
}
.hud-hero--headphones .hud-hero__eyebrow::before { background: #2dd4bf; box-shadow: 0 0 0 4px rgba(45,212,191,.2); }
.hud-hero--headphones .hud-hero__title {
  background: linear-gradient(105deg, #fff 18%, #99f6e4 52%, #2dd4bf 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hud-hero--headphones .hud-hero__cta {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.4);
}
.hud-hero--headphones .hud-hero__ring--1 { border-color: rgba(45, 212, 191, 0.4); }
.hud-hero--headphones .hud-phone__glow { background: rgba(45, 212, 191, 0.35); }

body.hud-theme-headphones.hud-theme-header .header-area.header_v1::before {
  background: linear-gradient(180deg, rgba(11,18,32,.9), rgba(19,78,74,.75));
}
body.hud-theme-headphones.hud-theme-header .header-btn-login,
body.hud-theme-headphones.hud-theme-header .header-search-form button {
  background: linear-gradient(135deg, #14b8a6, #0f766e) !important;
  border-color: #14b8a6 !important;
}
body.hud-theme-headphones.hud-theme-header .header-search-form { border-color: rgba(45,212,191,.7) !important; }
body.hud-theme-headphones.hud-theme-header .amz-cat__caret { color: #99f6e4 !important; }

/* ---------- Jewelry (royal burgundy / gold) ---------- */
.hud-hero--jewelry {
  --hud-ink: #1a0a14;
  --hud-accent: #d4af37;
  --hud-accent-2: #f5e6a8;
}
.hud-hero--jewelry .hud-hero__bg {
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(212, 175, 55, 0.32), transparent 62%),
    linear-gradient(145deg, #12060e 0%, #4a1028 45%, #1a0a14 100%);
}
.hud-hero--jewelry .hud-hero__eyebrow {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.12);
  color: #f5e6a8;
}
.hud-hero--jewelry .hud-hero__eyebrow::before { background: #d4af37; box-shadow: 0 0 0 4px rgba(212,175,55,.22); }
.hud-hero--jewelry .hud-hero__title {
  background: linear-gradient(105deg, #fff 15%, #f5e6a8 50%, #d4af37 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hud-hero--jewelry .hud-hero__cta {
  background: linear-gradient(135deg, #d4af37, #a67c00);
  color: #1a0a14;
  box-shadow: 0 12px 28px rgba(166, 124, 0, 0.4);
}
.hud-hero--jewelry .hud-hero__cta:hover { color: #1a0a14; }
.hud-hero--jewelry .hud-hero__ring--1 { border-color: rgba(212, 175, 55, 0.45); }
.hud-hero--jewelry .hud-phone__glow { background: rgba(212, 175, 55, 0.4); }

body.hud-theme-jewelry.hud-theme-header .header-area.header_v1::before {
  background:
    linear-gradient(180deg, rgba(26,10,20,.92) 0%, rgba(74,16,40,.8) 100%),
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(212,175,55,.22), transparent 60%);
}
body.hud-theme-jewelry.hud-theme-header .header-btn-login,
body.hud-theme-jewelry.hud-theme-header .header-search-form button {
  background: linear-gradient(135deg, #d4af37, #a67c00) !important;
  border-color: #d4af37 !important;
  color: #1a0a14 !important;
}
body.hud-theme-jewelry.hud-theme-header .header-search-form { border-color: rgba(212,175,55,.7) !important; }
body.hud-theme-jewelry.hud-theme-header .header-btn-register {
  border-color: rgba(245, 230, 168, 0.7) !important;
  color: #f5e6a8 !important;
}
body.hud-theme-jewelry.hud-theme-header .amz-cat__caret { color: #f5e6a8 !important; }



