/* Shared page foundation. */
@media (min-width: 48rem) {
  html {
    font-size: clamp(0.75rem, 1.1713vw, 2.8125rem);
  }
}

.section-container {
  max-width: 75rem;
  /* 1200px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  /* 24px */
  padding-right: 1.5rem;
  /* 24px */
}

.hero-container-wide {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem !important; /* Locks left space to exactly 1rem */
  padding-right: 1rem !important; /* Locks right space to exactly 1rem */
}

@media (min-width: 48rem) {
  .hero-container-wide {
    padding-left: 2rem;
    /* 32px */
    padding-right: 2rem;
    /* 32px */
  }
}

@media (min-width: 80rem) {
  .hero-container-wide {
    padding-left: 3rem;
    /* 48px */
    padding-right: 3rem;
    /* 48px */
  }
}

/* ── Hide Global Viewport Scrollbar (keeps scrolling functional) ── */
html {
  scrollbar-width: none; /* Hides scrollbar in Firefox */
  -ms-overflow-style: none; /* Hides scrollbar in IE/Edge */
}

html::-webkit-scrollbar {
  display: none; /* Hides scrollbar in Chrome, Safari, Brave, and Opera */
}

/* Custom scrollbar styles only for scrollable elements inside the page */
::-webkit-scrollbar {
  width: 0.25rem;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 6.1875rem;
}

.hover-lift {
  transition: transform .25s ease, box-shadow .25s ease;
}

.hover-lift:hover {
  transform: translateY(-0.1875rem);
  /* -3px */
}

.deck-card-item,
.deck-card-item * {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
    /* 20px */
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .5s ease both;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.d1 {
  animation-delay: .1s;
}

.d2 {
  animation-delay: .2s;
}

.d3 {
  animation-delay: .3s;
}

/* ── Nav height compensation ── */
.nav-offset {
  padding-top: 5.5rem !important;
  /* 80px */
}

@media (max-width: 47.9375rem) {
  .nav-offset {
    padding-top: 4.75rem;
    /* 76px */
  }
}

@media (min-width: 64rem) {
  .nav-offset {
    padding-top: 5.25rem;
    /* 84px */
  }
}

[data-staggered-item] {
  opacity: 0;
  transform: translateY(2.5rem);
  /* 40px */
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, transform;
}

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

.material-symbols-outlined {
  font-size: 1.5rem;
}

body {
  min-height: 100vh;
}



/* ── Price symbol typography ── */
/* Inherits color and weight from parent; only size is overridden per-context. */
.price-symbol {
  margin-right: 0.1em;
  vertical-align: baseline;
  line-height: inherit;
}

/* Shown while region detection is pending (new visitors only) */
.price-loading {
  opacity: 0.35;
  letter-spacing: 0.05em;
}