/* Concept L production fixes — loaded after concept.css */

/* Legacy tokens used by runner.css / redesign.css (formerly from styles.css) */
:root {
  --periwinkle-a: var(--peri);
  --periwinkle: var(--peri-2);
  --lavender: var(--lav);
  --night-deep: var(--night);
  --night-blue: var(--night-2);
  --night-light: var(--night-3);
  --white: var(--paper);
  --shadow-card: var(--sh-card);
}

html {
  scroll-padding-top: 100px;
}

.nav-in {
  position: relative;
}

/* The floating pill nav was cramped (redesign.css sets gap:6px). Give the
   items room to breathe. */
.nav-links {
  gap: 30px !important;
}

@media (max-width: 980px) {
  .nav-links {
    gap: 16px !important;
  }
}

/* Mobile menu: site.js toggles is-open; concept.css expects open */
.nav-links.open,
.nav-links.is-open {
  display: flex;
}

@media (max-width: 980px) {
  .nav-links.open,
  .nav-links.is-open {
    position: absolute;
    flex-direction: column;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--ivory-lift);
    padding: 14px;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lift);
    align-items: flex-start;
    margin-top: 0;
    z-index: 90;
  }
}

a.disabled-link,
span.disabled-link {
  pointer-events: none;
  opacity: 0.55;
  cursor: not-allowed;
}

/* Button-styled links */
a.btn,
a.hbCtaBtn,
a.mc-make,
a.fnd-clear {
  text-decoration: none;
  color: inherit;
}

a.btn-gold,
a.btn-gold:hover {
  color: var(--night);
}

a.btn-soft {
  color: var(--ink);
}

a.btn-peri,
a.btn-peri:hover {
  color: var(--ivory);
}

a.btn-night,
a.btn-night:hover {
  color: var(--ivory);
}

a.mc-make,
a.mc-make:hover {
  color: var(--night);
}

/* Sticky catalog finder sits below the pill nav */
#page-momentos-all #momFilter {
  top: 86px;
}

/* Primary CTA — full styles (legacy styles.css no longer loaded on concept pages) */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--night);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  border: 0;
  border-radius: var(--r-pill);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(217, 180, 85, 0.34);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
}

button.btn-cta {
  appearance: none;
  -webkit-appearance: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 180, 85, 0.5);
  color: var(--night);
}

.btn-cta:disabled,
.btn-cta[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-cta__icon {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
}

.btn-cta--light {
  background: var(--ivory);
  color: var(--night-blue);
  box-shadow: var(--sh-soft);
}

.btn-cta--light:hover {
  background: var(--gold);
  color: var(--night);
}

.btn-cta--light .btn-cta__icon {
  filter: none;
}

.payment-option-card__button.btn-cta {
  width: 100%;
}

.step1-hero__cta-wrap .btn-cta {
  min-width: 220px;
}
