/* Galaxy Hub — Homepage */

.gh-home {
  --gh-primary: #266ab4;
  --gh-primary-dark: #1a4f8a;
  --gh-accent: #f59e0b;
  --gh-purple: #7c3aed;
  --gh-green: #059669;
  --gh-orange: #ea580c;
  --gh-pink: #db2777;
  --gh-cyan: #0891b2;
  --gh-bg: #f4f7fb;
  --gh-text: #111827;
  --gh-muted: #6b7280;
  --gh-border: #e5e7eb;
  --gh-radius: 16px;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(38, 106, 180, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 5%, rgba(124, 58, 237, 0.06), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(245, 158, 11, 0.05), transparent 40%),
    var(--gh-bg);
  overflow-x: hidden;
}

/* Scroll reveal */
.gh-reveal.gh-reveal--ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.gh-reveal.gh-reveal--ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gh-section--promos.gh-reveal--ready .gh-promo-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
}

.gh-section--promos.is-visible .gh-promo-card:nth-child(1) { transition-delay: 0.05s; }
.gh-section--promos.is-visible .gh-promo-card:nth-child(2) { transition-delay: 0.1s; }
.gh-section--promos.is-visible .gh-promo-card:nth-child(3) { transition-delay: 0.15s; }
.gh-section--promos.is-visible .gh-promo-card:nth-child(4) { transition-delay: 0.2s; }
.gh-section--promos.is-visible .gh-promo-card:nth-child(5) { transition-delay: 0.25s; }
.gh-section--promos.is-visible .gh-promo-card:nth-child(6) { transition-delay: 0.3s; }

.gh-section--promos.is-visible .gh-promo-card {
  opacity: 1;
  transform: translateY(0);
}

.gh-section--tint.gh-reveal--ready .gh-category {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.25s ease;
}

.gh-section--tint.is-visible .gh-category {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gh-section--tint.is-visible .gh-category:nth-child(1) { transition-delay: 0.04s; }
.gh-section--tint.is-visible .gh-category:nth-child(2) { transition-delay: 0.08s; }
.gh-section--tint.is-visible .gh-category:nth-child(3) { transition-delay: 0.12s; }
.gh-section--tint.is-visible .gh-category:nth-child(4) { transition-delay: 0.16s; }
.gh-section--tint.is-visible .gh-category:nth-child(5) { transition-delay: 0.2s; }
.gh-section--tint.is-visible .gh-category:nth-child(6) { transition-delay: 0.24s; }
.gh-section--tint.is-visible .gh-category:nth-child(7) { transition-delay: 0.28s; }
.gh-section--tint.is-visible .gh-category:nth-child(8) { transition-delay: 0.32s; }

/* Promo ticker */
.gh-home-ticker {
  overflow: hidden;
  background: linear-gradient(90deg, #0f2d52, #266ab4 35%, #4f46e5 65%, #7c3aed);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 0;
  margin-bottom: 0.25rem;
}

.gh-home-ticker__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: gh-ticker 32s linear infinite;
  white-space: nowrap;
}

.gh-home-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.gh-home-ticker__item i {
  color: #fde68a;
  font-size: 0.9rem;
}

.gh-home-ticker__dot {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
}

@keyframes gh-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Quick action cards */
.gh-home-quick {
  padding: 1.25rem 0 0.5rem;
  position: relative;
  z-index: 2;
}

.gh-home-quick__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.gh-home-quick__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.65rem;
  border-radius: var(--gh-radius);
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--gh-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gh-home-quick__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.gh-home-quick__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.gh-home-quick__card:hover .gh-home-quick__icon {
  transform: scale(1.1);
}

.gh-home-quick__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gh-text);
  text-align: center;
  line-height: 1.2;
}

.gh-home-quick__card--blue .gh-home-quick__icon { background: #dbeafe; color: #2563eb; }
.gh-home-quick__card--blue:hover { border-color: #93c5fd; }

.gh-home-quick__card--purple .gh-home-quick__icon { background: #ede9fe; color: #7c3aed; }
.gh-home-quick__card--purple:hover { border-color: #c4b5fd; }

.gh-home-quick__card--cyan .gh-home-quick__icon { background: #cffafe; color: #0891b2; }
.gh-home-quick__card--cyan:hover { border-color: #67e8f9; }

.gh-home-quick__card--green .gh-home-quick__icon { background: #dcfce7; color: #16a34a; }
.gh-home-quick__card--green:hover { border-color: #86efac; }

.gh-home-quick__card--amber .gh-home-quick__icon { background: #ffedd5; color: #ea580c; }
.gh-home-quick__card--amber:hover { border-color: #fdba74; }

.gh-home-quick__card--pink .gh-home-quick__icon { background: #fce7f3; color: #db2777; }
.gh-home-quick__card--pink:hover { border-color: #f9a8d4; }

.gh-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Hero carousel ── */
.gh-hero {
  position: relative;
  z-index: 0;
  padding: 0 0 2.5rem;
  background: var(--gh-bg);
}

.gh-hero__frame {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 540px;
  isolation: isolate;
}

.gh-hero__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 20;
}

.gh-hero__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
}

.gh-hero__slides {
  position: relative;
  min-height: inherit;
}

.gh-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  padding: 3.5rem 0 7.5rem;
  display: flex;
  align-items: center;
}

.gh-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.gh-hero-slide.is-measuring {
  position: relative !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1 !important;
}

.gh-hero-slide--blue {
  background: linear-gradient(135deg, #0f2d52 0%, #1a4f8a 35%, #266ab4 60%, #6366f1 100%);
}

.gh-hero-slide--purple {
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 40%, #6366f1 70%, #818cf8 100%);
}

.gh-hero-slide--green {
  background: linear-gradient(135deg, #064e3b 0%, #047857 40%, #0891b2 70%, #06b6d4 100%);
}

.gh-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gh-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.gh-hero-slide.is-active .gh-hero__orb--1 {
  animation: gh-float 8s ease-in-out infinite;
}

.gh-hero-slide.is-active .gh-hero__orb--2 {
  animation: gh-float 10s ease-in-out infinite reverse;
}

.gh-hero-slide.is-active .gh-hero__orb--3 {
  animation: gh-float 12s ease-in-out infinite;
}

.gh-hero__orb--1 {
  width: 420px;
  height: 420px;
  background: #f59e0b;
  top: -120px;
  right: 10%;
}

.gh-hero__orb--2 {
  width: 300px;
  height: 300px;
  background: #22d3ee;
  bottom: -80px;
  left: 5%;
}

.gh-hero__orb--3 {
  width: 200px;
  height: 200px;
  background: #a78bfa;
  top: 40%;
  left: 45%;
}

@keyframes gh-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

.gh-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.gh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.15rem;
}

.gh-hero__badge i {
  color: #fbbf24;
}

.gh-hero__title {
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.gh-hero__highlight {
  background: linear-gradient(90deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gh-hero__highlight--cyan {
  background: linear-gradient(90deg, #22d3ee, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gh-hero__highlight--lime {
  background: linear-gradient(90deg, #a3e635, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gh-hero__text {
  font-size: 1.05rem;
  opacity: 0.92;
  line-height: 1.65;
  margin: 0 0 1.75rem;
  max-width: 500px;
}

.gh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gh-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gh-hero__visual-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border: 2px dashed rgba(255, 255, 255, 0.15);
}

.gh-hero-slide.is-active .gh-hero__visual-ring {
  animation: gh-spin 30s linear infinite;
}

@keyframes gh-spin {
  to { transform: rotate(360deg); }
}

.gh-hero__visual img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  max-height: 340px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.25));
}

.gh-hero-slide.is-active .gh-hero__visual img {
  animation: gh-hero-float 5.5s ease-in-out infinite;
}

@keyframes gh-hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.gh-hero-slide.is-active .gh-hero__content,
.gh-hero-slide.is-active .gh-hero__visual {
  animation: gh-slide-in 0.65s ease both;
}

.gh-hero-slide.is-active .gh-hero__visual {
  animation-delay: 0.12s;
}

@keyframes gh-slide-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dock — nav + stats inside carousel */
.gh-hero__dock {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  background: linear-gradient(to top, rgba(7, 12, 24, 0.88) 0%, rgba(7, 12, 24, 0.72) 100%);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 0;
}

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

.gh-hero__nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.gh-hero__nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.gh-hero__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-family: inherit;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gh-hero__arrow i {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
}

.gh-hero__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.65);
  transform: scale(1.05);
}

.gh-hero__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.gh-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: width 0.3s ease, background 0.3s ease;
}

.gh-hero__dot.is-active {
  width: 24px;
  background: #fbbf24;
}

.gh-hero__dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.6);
}

.gh-hero__counter {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
}

.gh-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.gh-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
}

.gh-hero__stat + .gh-hero__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}

.gh-hero__stat strong {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.gh-hero__stat span {
  font-size: 0.7rem;
  opacity: 0.72;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Buttons ── */
.gh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  font-size: 0.925rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gh-btn--accent {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.gh-btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.5);
  color: #fff;
}

.gh-btn--glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.gh-btn--glass:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

.gh-btn--glass-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.gh-btn--glass-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.gh-btn--white {
  background: #fff;
  color: var(--gh-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gh-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  color: var(--gh-primary-dark);
}

.gh-btn--blue {
  background: linear-gradient(135deg, var(--gh-primary), #3b82f6);
  color: #fff;
  box-shadow: 0 4px 16px rgba(38, 106, 180, 0.3);
}

.gh-btn--blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38, 106, 180, 0.4);
  color: #fff;
}

.gh-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.825rem;
  width: 100%;
}

/* ── Trust bar ── */
.gh-trust {
  position: relative;
  z-index: 3;
  padding: 1.25rem 0 1.5rem;
  margin-top: 0;
  background: transparent;
}

.gh-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gh-trust__card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border-radius: var(--gh-radius);
  padding: 1.1rem 1.15rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gh-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.gh-trust__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gh-primary), #6366f1, #f59e0b);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gh-trust__card--blue::before { background: linear-gradient(90deg, #2563eb, #38bdf8); }
.gh-trust__card--green::before { background: linear-gradient(90deg, #059669, #34d399); }
.gh-trust__card--purple::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.gh-trust__card--orange::before { background: linear-gradient(90deg, #ea580c, #fbbf24); }

.gh-trust__card:hover::before {
  opacity: 1;
}

.gh-trust__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.gh-trust__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.gh-trust__card--blue .gh-trust__icon { background: #dbeafe; color: #2563eb; }
.gh-trust__card--green .gh-trust__icon { background: #d1fae5; color: #059669; }
.gh-trust__card--purple .gh-trust__icon { background: #ede9fe; color: #7c3aed; }
.gh-trust__card--orange .gh-trust__icon { background: #ffedd5; color: #ea580c; }

.gh-trust__card strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gh-text);
  line-height: 1.3;
}

.gh-trust__card span {
  font-size: 0.75rem;
  color: var(--gh-muted);
}

/* ── Sections ── */
.gh-section {
  padding: 3.75rem 0;
}

.gh-section--white { background: #fff; }
.gh-section--tint {
  background: linear-gradient(180deg, #fff 0%, var(--gh-bg) 100%);
  position: relative;
}
.gh-section--phones {
  background: linear-gradient(135deg, #faf5ff 0%, #eff6ff 50%, #fdf4ff 100%);
  position: relative;
  overflow: hidden;
}
.gh-section--phones::before,
.gh-section--tvs::before,
.gh-section--brands::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.gh-section--phones::before {
  background: #c4b5fd;
  top: -80px;
  right: -60px;
}
.gh-section--brands { background: #fff; position: relative; overflow: hidden; }
.gh-section--brands::before {
  background: #93c5fd;
  bottom: -100px;
  left: -80px;
}
.gh-section--tvs {
  background: linear-gradient(135deg, #fff7ed 0%, #fff 50%, #fef3c7 100%);
  position: relative;
  overflow: hidden;
}
.gh-section--tvs::before {
  background: #fdba74;
  top: -60px;
  left: 10%;
}
.gh-section--promos,
.gh-section--collections,
.gh-section--banners {
  position: relative;
}
.gh-section--promos .gh-container,
.gh-section--phones .gh-container,
.gh-section--tvs .gh-container,
.gh-section--brands .gh-container {
  position: relative;
  z-index: 1;
}

.gh-block--spaced { margin-top: 3.5rem; }

.gh-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.gh-section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gh-section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
}

.gh-section__eyebrow--blue { background: #dbeafe; color: #1d4ed8; }
.gh-section__eyebrow--purple { background: #ede9fe; color: #6d28d9; }
.gh-section__eyebrow--green { background: #d1fae5; color: #047857; }
.gh-section__eyebrow--orange { background: #ffedd5; color: #c2410c; }

.gh-section__title {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--gh-text);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.gh-section__subtitle {
  font-size: 0.925rem;
  color: var(--gh-muted);
  margin: 0;
}

.gh-section__foot {
  text-align: center;
  margin-top: 2rem;
}

.gh-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gh-primary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: #eff6ff;
  border-radius: 10px;
  transition: gap 0.2s ease, background 0.2s ease;
}

.gh-link:hover {
  color: var(--gh-primary-dark);
  background: #dbeafe;
  gap: 0.55rem;
}

/* ── Categories ── */
.gh-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
}

.gh-category {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: var(--gh-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
}

.gh-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.gh-category:nth-child(6n+1) { border-color: #bfdbfe; }
.gh-category:nth-child(6n+2) { border-color: #bbf7d0; }
.gh-category:nth-child(6n+3) { border-color: #fde68a; }
.gh-category:nth-child(6n+4) { border-color: #ddd6fe; }
.gh-category:nth-child(6n+5) { border-color: #fbcfe8; }
.gh-category:nth-child(6n+6) { border-color: #a5f3fc; }

.gh-category:nth-child(6n+1) .gh-category__img { background: linear-gradient(180deg, #eff6ff, #fff); }
.gh-category:nth-child(6n+2) .gh-category__img { background: linear-gradient(180deg, #ecfdf5, #fff); }
.gh-category:nth-child(6n+3) .gh-category__img { background: linear-gradient(180deg, #fffbeb, #fff); }
.gh-category:nth-child(6n+4) .gh-category__img { background: linear-gradient(180deg, #f5f3ff, #fff); }
.gh-category:nth-child(6n+5) .gh-category__img { background: linear-gradient(180deg, #fdf2f8, #fff); }
.gh-category:nth-child(6n+6) .gh-category__img { background: linear-gradient(180deg, #ecfeff, #fff); }

.gh-category__img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gh-category__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gh-category:hover .gh-category__img img {
  transform: scale(1.08);
}

.gh-category__name {
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--gh-text);
}

.gh-section--collections {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 55%, var(--gh-bg) 100%);
}

.gh-section--collections .gh-section__head {
  margin-bottom: 2.25rem;
}

/* ── Featured Collections ── */
.gh-collections {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.15rem;
  min-height: 420px;
}

.gh-collection {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 1rem;
  border-radius: calc(var(--gh-radius) + 4px);
  padding: 1.75rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gh-collection:hover {
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
}

.gh-collection--lead {
  grid-row: 1 / 3;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.gh-collection--tv {
  background: linear-gradient(145deg, #0f2d52 0%, #1a4f8a 38%, #266ab4 68%, #06b6d4 100%);
}

.gh-collection--life {
  background: linear-gradient(145deg, #064e3b 0%, #047857 45%, #10b981 100%);
}

.gh-collection--tab {
  background: linear-gradient(145deg, #9a3412 0%, #ea580c 45%, #f59e0b 100%);
}

.gh-collection__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gh-collection__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.45;
}

.gh-collection--tv .gh-collection__orb {
  width: 220px;
  height: 220px;
  background: #22d3ee;
  top: -60px;
  right: -40px;
}

.gh-collection--tv .gh-collection__orb--2 {
  width: 180px;
  height: 180px;
  background: #fbbf24;
  bottom: -50px;
  left: -30px;
  opacity: 0.35;
}

.gh-collection--life .gh-collection__orb {
  width: 160px;
  height: 160px;
  background: #6ee7b7;
  top: -40px;
  right: -20px;
}

.gh-collection--tab .gh-collection__orb {
  width: 160px;
  height: 160px;
  background: #fde68a;
  bottom: -40px;
  left: -20px;
}

.gh-collection__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.gh-collection--lead .gh-collection__body {
  max-width: 340px;
}

.gh-collection__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 0.85rem;
}

.gh-collection__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gh-collection--lead .gh-collection__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.gh-collection__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  opacity: 0.88;
  margin: 0 0 1.25rem;
  max-width: 28ch;
}

.gh-collection__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.gh-collection__price {
  font-size: 0.825rem;
  opacity: 0.9;
  font-weight: 500;
}

.gh-collection__price strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  opacity: 1;
  margin-top: 0.15rem;
}

.gh-collection__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 700;
  background: #fff;
  color: var(--gh-text);
  padding: 0.55rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: gap 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.gh-collection--tv .gh-collection__cta { color: #1a4f8a; }
.gh-collection--life .gh-collection__cta { color: #047857; }
.gh-collection--tab .gh-collection__cta { color: #c2410c; }

.gh-collection:hover .gh-collection__cta {
  gap: 0.6rem;
  transform: translateX(2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.gh-collection__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gh-collection--lead .gh-collection__media {
  flex: 1;
  min-height: 200px;
  margin-top: 0.5rem;
}

.gh-collection:not(.gh-collection--lead) .gh-collection__media {
  width: 110px;
  align-self: center;
}

.gh-collection__stage {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.gh-collection--lead .gh-collection__stage {
  width: 260px;
  height: 260px;
}

.gh-collection:not(.gh-collection--lead) .gh-collection__stage {
  width: 100px;
  height: 100px;
}

.gh-collection__media img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.22));
  transition: transform 0.35s ease;
}

.gh-collection--lead .gh-collection__media img {
  max-height: 240px;
}

.gh-collection:not(.gh-collection--lead) .gh-collection__media img {
  max-height: 100px;
}

.gh-collection:hover .gh-collection__media img {
  transform: scale(1.06) translateY(-4px);
}

.gh-collection--lead .gh-collection__orb,
.gh-collection--life .gh-collection__orb,
.gh-collection--tab .gh-collection__orb {
  animation: gh-float 9s ease-in-out infinite;
}

.gh-collection--tv .gh-collection__orb--2 {
  animation: gh-float 11s ease-in-out infinite reverse;
}

/* ── Products (horizontal scroll on homepage) ── */
.gh-products-scroll {
  position: relative;
}

.gh-products-scroll__btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #1a4f8a;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.14);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
}

.gh-products-scroll__btn:hover:not(:disabled) {
  background: #266ab4;
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.gh-products-scroll__btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.gh-products-scroll__btn--prev {
  left: -0.5rem;
}

.gh-products-scroll__btn--next {
  right: -0.5rem;
}

.gh-home .gh-products--scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.15rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  padding-bottom: 0.5rem;
}

.gh-home .gh-products--scroll::-webkit-scrollbar {
  height: 6px;
}

.gh-home .gh-products--scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.gh-home .gh-products--scroll > .gh-product {
  flex: 0 0 220px;
  width: 220px;
  max-width: min(220px, 78vw);
  scroll-snap-align: start;
}

.gh-home .gh-product {
  background: #fff;
  border-radius: var(--gh-radius);
  border: 1px solid var(--gh-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.gh-home .gh-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(38, 106, 180, 0.12);
  border-color: #bfdbfe;
}

.gh-home .gh-product__img {
  display: block;
  aspect-ratio: 1;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding: 1.15rem;
  overflow: hidden;
  position: relative;
}

.gh-home .gh-product__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gh-primary), #6366f1);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.gh-home .gh-product:hover .gh-product__img::after {
  transform: scaleX(1);
}

.gh-home .gh-product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.gh-home .gh-product:hover .gh-product__img img {
  transform: scale(1.06);
}

.gh-home .gh-product__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gh-home .gh-product__cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--gh-primary), #6366f1);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 0.45rem;
}

.gh-home .gh-product__brand {
  font-size: 0.75rem;
  color: var(--gh-muted);
  margin: 0 0 0.3rem;
}

.gh-home .gh-product__name {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.gh-home .gh-product__name a {
  color: var(--gh-text);
  text-decoration: none;
}

.gh-home .gh-product__name a:hover {
  color: var(--gh-primary);
}

.gh-home .gh-product__price {
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gh-primary-dark), var(--gh-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.85rem;
}

.gh-home .gh-product__footer {
  margin-top: auto;
}

/* ── Brands ── */
.gh-brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
}

.gh-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--gh-border);
  border-radius: 14px;
  padding: 1.35rem 1rem;
  min-height: 90px;
  transition: all 0.25s ease;
}

.gh-brand:hover {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #266ab4, #6366f1, #f59e0b) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 8px 24px rgba(38, 106, 180, 0.12);
  transform: translateY(-3px);
}

.gh-brand img {
  max-height: 44px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.25s ease;
}

.gh-brand:hover img {
  filter: grayscale(0%);
}

/* ── Promo grid (quick shop CTAs) ── */
.gh-section--promos {
  padding-top: 2rem;
}

.gh-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gh-promo-card {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 168px;
  border-radius: calc(var(--gh-radius) + 2px);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gh-promo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 4;
}

.gh-promo-card:hover::after {
  transform: translateX(120%);
}

.gh-promo-card:hover {
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.gh-promo-card__bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 55%);
}

.gh-promo-card--blue { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #38bdf8 100%); }
.gh-promo-card--purple { background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 55%, #a78bfa 100%); }
.gh-promo-card--green { background: linear-gradient(135deg, #065f46 0%, #059669 55%, #34d399 100%); }
.gh-promo-card--teal { background: linear-gradient(135deg, #0e7490 0%, #0891b2 55%, #22d3ee 100%); }
.gh-promo-card--amber { background: linear-gradient(135deg, #9a3412 0%, #ea580c 55%, #fbbf24 100%); }
.gh-promo-card--indigo { background: linear-gradient(135deg, #312e81 0%, #4f46e5 55%, #818cf8 100%); }

.gh-promo-card__body {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 1.25rem 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.gh-promo-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.92;
  margin-bottom: 0.35rem;
}

.gh-promo-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.gh-promo-card__text {
  font-size: 0.78rem;
  opacity: 0.88;
  margin: 0 0 0.65rem;
  line-height: 1.4;
  max-width: 14rem;
}

.gh-promo-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: auto;
}

.gh-promo-card__media {
  position: relative;
  z-index: 1;
  width: 42%;
  max-width: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.5rem 0.75rem 0 0;
}

.gh-promo-card__media img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.gh-promo-card:hover .gh-promo-card__media img {
  transform: scale(1.05) translateY(-4px);
}

/* ── Promo duo banners ── */
.gh-section--banners {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.gh-promo-duo {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}

.gh-promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 180px;
  padding: 1.5rem;
  border-radius: calc(var(--gh-radius) + 4px);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gh-promo-banner:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.gh-promo-banner--wide {
  background: linear-gradient(135deg, #0f2d52 0%, #1a4f8a 40%, #266ab4 70%, #6366f1 100%);
}

.gh-promo-banner--sound {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #10b981 100%);
}

.gh-promo-banner--support {
  background: linear-gradient(135deg, #7c2d12 0%, #ea580c 50%, #f59e0b 100%);
}

.gh-promo-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gh-promo-banner__orb {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(40px);
  top: -60px;
  right: -40px;
}

.gh-promo-banner__content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}

.gh-promo-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-bottom: 0.4rem;
}

.gh-promo-banner__title {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.gh-promo-banner--compact .gh-promo-banner__title {
  margin-bottom: 0.65rem;
}

.gh-promo-banner__desc {
  font-size: 0.85rem;
  opacity: 0.88;
  margin: 0 0 0.75rem;
  line-height: 1.5;
  max-width: 28rem;
}

.gh-promo-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.gh-promo-banner__visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gh-promo-banner--wide .gh-promo-banner__visual {
  width: 160px;
}

.gh-promo-banner__visual img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22));
  transition: transform 0.3s ease;
}

.gh-promo-banner:hover .gh-promo-banner__visual img {
  transform: scale(1.04) translateY(-3px);
}

.gh-promo-banner__visual--icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 2rem;
}

/* ── CTA ── */
.gh-cta {
  padding: 2rem 0 4rem;
}

.gh-cta__box {
  position: relative;
  border-radius: 20px;
  padding: 3.5rem 2.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1a4f8a 40%, #6366f1 70%, #7c3aed 100%);
  box-shadow: 0 20px 50px rgba(38, 106, 180, 0.25);
}

.gh-cta__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.gh-cta__content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.gh-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 0.75rem;
}

.gh-cta__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.gh-cta__text {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.6;
}

.gh-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gh-cta__actions--inline {
  margin-top: 1.25rem;
}

.gh-cta__visual {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 220px;
  flex-shrink: 0;
}

.gh-cta__visual-card {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.gh-cta__visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gh-cta__visual-card--1 {
  width: 130px;
  height: 130px;
  top: 0;
  left: 0;
  transform: rotate(-6deg);
  animation: gh-cta-float-1 7s ease-in-out infinite;
}

.gh-cta__visual-card--2 {
  width: 150px;
  height: 150px;
  top: 30px;
  right: 0;
  transform: rotate(4deg);
  z-index: 2;
  animation: gh-cta-float-2 7s ease-in-out infinite 1s;
}

.gh-cta__visual-card--3 {
  width: 110px;
  height: 110px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 3;
  animation: gh-cta-float-3 7s ease-in-out infinite 2s;
}

@keyframes gh-cta-float-1 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-8px); }
}

@keyframes gh-cta-float-2 {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-8px); }
}

@keyframes gh-cta-float-3 {
  0%, 100% { transform: translateX(-50%) rotate(-2deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(-2deg) translateY(-8px); }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .gh-home-quick__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gh-hero {
    padding-bottom: 2rem;
  }

  .gh-hero__frame {
    min-height: 520px;
  }

  .gh-hero-slide {
    padding: 2.75rem 0 9.5rem;
  }

  .gh-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gh-hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .gh-hero__actions {
    justify-content: center;
  }

  .gh-hero__visual {
    order: -1;
  }

  .gh-hero__visual img {
    max-height: 220px;
  }

  .gh-hero__visual-ring {
    width: 240px;
    height: 240px;
  }

  .gh-hero__dock-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .gh-hero__nav {
    justify-content: center;
  }

  .gh-hero__stats {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    justify-content: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .gh-collections {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .gh-collection--lead {
    grid-column: 1 / -1;
    grid-row: auto;
    flex-direction: row;
    align-items: center;
  }

  .gh-collection--lead .gh-collection__body {
    max-width: none;
    flex: 1;
  }

  .gh-collection--lead .gh-collection__media {
    width: 180px;
    min-height: 0;
    margin-top: 0;
  }

  .gh-collection--lead .gh-collection__media img {
    max-height: 160px;
  }

  .gh-collection--lead .gh-collection__stage {
    width: 180px;
    height: 180px;
  }

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

  .gh-promo-duo {
    grid-template-columns: 1fr;
  }

  .gh-promo-banner--wide {
    min-height: 200px;
  }

  .gh-cta__box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gh-cta__content {
    max-width: none;
  }

  .gh-cta__visual {
    margin: 0 auto;
  }

  .gh-cta__actions--inline {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .gh-home-quick__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
  }

  .gh-home-quick__card {
    padding: 0.75rem 0.4rem;
  }

  .gh-home-quick__icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .gh-home-quick__label {
    font-size: 0.68rem;
  }

  .gh-home-ticker__item {
    font-size: 0.72rem;
  }

  .gh-trust {
    padding-top: 1rem;
  }

  .gh-hero {
    padding-bottom: 1.75rem;
  }

  .gh-hero__frame {
    min-height: 480px;
  }

  .gh-hero-slide {
    padding: 2.25rem 0 10.5rem;
  }

  .gh-hero__arrow {
    width: 38px;
    height: 38px;
  }

  .gh-hero__arrow i {
    font-size: 1rem;
  }

  .gh-hero__stat {
    padding: 0 0.85rem;
  }

  .gh-hero__stat strong {
    font-size: 1rem;
  }

  .gh-trust__grid {
    grid-template-columns: 1fr;
  }

  .gh-collections {
    grid-template-columns: 1fr;
  }

  .gh-collection {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
  }

  .gh-collection--lead {
    flex-direction: column;
  }

  .gh-collection--lead .gh-collection__media {
    width: 100%;
    min-height: 160px;
  }

  .gh-collection:not(.gh-collection--lead) .gh-collection__media {
    width: 100%;
    min-height: 120px;
  }

  .gh-collection__desc {
    max-width: none;
  }

  .gh-section {
    padding: 2.75rem 0;
  }

  .gh-home .gh-products--scroll > .gh-product {
    flex-basis: 180px;
    width: 180px;
  }

  .gh-products-scroll__btn {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .gh-products-scroll__btn--prev {
    left: 0;
  }

  .gh-products-scroll__btn--next {
    right: 0;
  }

  .gh-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }

  .gh-promo-grid {
    grid-template-columns: 1fr;
  }

  .gh-promo-card {
    min-height: 150px;
  }

  .gh-promo-card__media {
    width: 38%;
  }

  .gh-promo-banner {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 1.25rem;
  }

  .gh-promo-banner__visual {
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
  }

  .gh-cta__box {
    padding: 2.25rem 1.5rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gh-cta__visual {
    display: none;
  }

  .gh-cta__actions--inline {
    justify-content: center;
    width: 100%;
  }

  .gh-cta__actions .gh-btn {
    flex: 1;
    min-width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gh-home-ticker__track,
  .gh-hero-slide.is-active .gh-hero__visual img,
  .gh-hero-slide.is-active .gh-hero__visual-ring,
  .gh-hero-slide.is-active .gh-hero__orb--1,
  .gh-hero-slide.is-active .gh-hero__orb--2,
  .gh-hero-slide.is-active .gh-hero__orb--3,
  .gh-collection--lead .gh-collection__orb,
  .gh-collection--life .gh-collection__orb,
  .gh-collection--tab .gh-collection__orb,
  .gh-cta__visual-card--1,
  .gh-cta__visual-card--2,
  .gh-cta__visual-card--3 {
    animation: none !important;
  }

  .gh-hero-slide,
  .gh-hero-slide.is-active .gh-hero__content,
  .gh-hero-slide.is-active .gh-hero__visual {
    animation: none;
    transition: none;
  }

  .gh-reveal.gh-reveal--ready,
  .gh-section--promos.gh-reveal--ready .gh-promo-card,
  .gh-section--tint.gh-reveal--ready .gh-category {
    opacity: 1;
    transform: none;
  }
}
