#about-us {
  padding-top: 20rem !important;
}

#hero {
  padding-bottom: 6rem !important;
}

/* ===== PRODUCT DESCRIPTION STYLES ===== */
.text-t-primary\/80,
.text-t-primary\/70,
.text-t-primary\/50 {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
}

.text-t-primary\/80 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.text-t-primary\/70 {
  color: rgba(255, 255, 255, 0.85) !important;
}

.text-t-primary\/50 {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Enhanced text styling for better readability */
.variant-description,
.live-stats-text,
.product-description p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}



a.block.bg-\[rgba\(255\,255\,255\,0\.01\)\] {
  position: relative;
  overflow: hidden;
}

a.block.bg-\[rgba\(255\,255\,255\,0\.01\)\]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
}

a.block.bg-\[rgba\(255\,255\,255\,0\.01\)\]:hover::before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* Visually hidden, still read by crawlers and screen readers.
   Tailwind's sr-only is not compiled into built.css, so define it here. */
.tm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== PRODUCT PAGE TABS =====
   .tm-tab       -> accent outline, on every tab including Description
   .product-tab-glow -> adds the travelling sheen (every tab except Description)
   Outline colour tracks --cl-accent, so changing the theme accent changes these. */

.tm-tab {
  --tab-accent: var(--cl-accent);
  position: relative;
  isolation: isolate;
  border-color: rgba(var(--tab-accent), 0.65) !important;
  background-color: transparent !important;
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  box-shadow:
    0 0 0 1px rgba(var(--tab-accent), 0.12),
    0 0 10px -3px rgba(var(--tab-accent), 0.45),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease;
}

/* Alpine dims inactive tabs with opacity-50 — keep them readable */
.tm-tab.opacity-50 {
  opacity: 0.88 !important;
}

/* Selected tab: brighter outline, no fill */
.tm-tab:not(.opacity-50) {
  border-color: rgba(var(--tab-accent), 1) !important;
  box-shadow:
    0 0 0 1px rgba(var(--tab-accent), 0.2),
    0 0 16px -3px rgba(var(--tab-accent), 0.6),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
}

.tm-tab:hover,
.tm-tab.opacity-50:hover {
  opacity: 1 !important;
  border-color: rgba(var(--tab-accent), 0.9) !important;
  box-shadow:
    0 0 0 1px rgba(var(--tab-accent), 0.18),
    0 0 16px -3px rgba(var(--tab-accent), 0.55),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
}

.tm-tab:focus-visible {
  outline: none;
  border-color: rgba(var(--tab-accent), 1) !important;
  box-shadow:
    0 0 0 2px rgba(var(--tab-accent), 0.45),
    0 0 16px -3px rgba(var(--tab-accent), 0.6);
}

/* The sheen rides a motion path around the border box. A fixed-size segment at
   constant speed — unlike a conic gradient it cannot stretch on the long edges
   or compress at the corners, so quality is even the whole way round.
   Wrapped in @supports: without motion-path the tab keeps its outline and
   simply has no sheen, rather than parking a stray bar in the corner. */
@supports (offset-path: rect(0 100% 100% 0 round 10px)) {
  .product-tab-glow::before {
    content: '';
    position: absolute;
    width: 72px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.25) 35%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(255, 255, 255, 0.25) 65%,
      rgba(255, 255, 255, 0) 100%
    );
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
    offset-path: rect(0 100% 100% 0 round 10px);
    offset-rotate: auto;
    offset-distance: 0%;
    animation: tab-sheen 6s linear infinite;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 1;
  }

  /* Selected tab hides its sheen. Deliberately opacity and NOT content:none —
     removing the pseudo-element restarts its animation from 0%, which threw the
     tab out of phase with the others the moment you clicked away from it. */
  .product-tab-glow:not(.opacity-50)::before {
    opacity: 0;
  }
}

@keyframes tab-sheen {
  to {
    offset-distance: 100%;
  }
}

/* Touch devices get no hover reveal and phone screens wash out thin lines */
@media (hover: none) {
  .tm-tab {
    border-color: rgba(var(--tab-accent), 0.8) !important;
    box-shadow:
      0 0 0 1px rgba(var(--tab-accent), 0.16),
      0 0 12px -3px rgba(var(--tab-accent), 0.5),
      inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  }
  .tm-tab.opacity-50 {
    opacity: 0.94 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tm-tab {
    transition: none;
  }
  .product-tab-glow::before {
    animation: none;
    content: none;
  }
}