/* ============================================================
   STUPID TIRES — shared stylesheet
   One file controls the look of every page.
   Sections are labelled so you can find things fast.
   ============================================================ */

/* ---- 1. COLOR + SIZE TOKENS -------------------------------- */
/* Change a value here and it updates everywhere on the site.  */
:root {
  --cream:      #FFFBF0;   /* page background */
  --paper:      #FFFFFF;   /* cards */
  --ink:        #1C1C2E;   /* main text */
  --ink-soft:   #5C5C70;   /* lighter text */

  --sun:        #FFC83D;   /* brand yellow */
  --sun-deep:   #E9A800;   /* darker yellow for shadows/edges */
  --blue:       #2F6BFF;   /* main action buttons */
  --blue-deep:  #1E4FD6;
  --coral:      #FF5A6E;   /* fun accent / premium */
  --mint:       #15C08A;   /* "good" tier + success */
  --mint-deep:  #0E9E72;
  --grape:      #8B5CF6;   /* premium tier */
  --grape-deep: #6D3EE0;
  --sky:        #EAF1FF;   /* soft blue background blocks */

  --line:       #ECE6D4;   /* hairline borders */
  --radius:     22px;      /* standard rounded corner */
  --radius-sm:  14px;
  --shadow:     0 14px 30px -12px rgba(28,28,46,0.22);
  --maxw:       1080px;    /* page content width */
}

/* ---- 2. RESET + BASE -------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); }

/* ---- 3. TYPOGRAPHY --------------------------------------- */
h1, h2, h3, h4, .display {
  font-family: 'Fredoka', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p  { margin-bottom: 1rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-soft); }
.tiny { font-size: 0.85rem; color: var(--ink-soft); }

/* ---- 4. LAYOUT HELPERS ----------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

/* ---- 5. HEADER / NAV ------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,251,240,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--line);
}
.nav {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: 1.25rem; color: var(--ink); text-decoration: none;
  white-space: nowrap;
}
.logo .wheel {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink);
  border: 6px solid var(--sun);
  flex-shrink: 0;
}
.logo b { color: var(--blue); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-weight: 600;
  font-size: 0.95rem; padding: 0.5rem 0.85rem; border-radius: 999px;
}
.nav-links a:hover { background: var(--sun); }
.cart-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--ink); color: #fff !important;
}
.cart-btn:hover { background: var(--blue) !important; }
.cart-count {
  background: var(--coral); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  min-width: 20px; height: 20px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

/* ---- 6. BUTTONS (the clear button system) ---------------- */
/* Every clickable action uses .btn + one color modifier.     */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: 1.05rem; line-height: 1;
  padding: 0.95rem 1.8rem;
  border: none; border-radius: 999px;
  cursor: pointer; text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(3px); }

/* Yellow — the big "do the main thing" button */
.btn--sun {
  background: var(--sun); color: var(--ink);
  box-shadow: 0 6px 0 var(--sun-deep);
}
.btn--sun:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--sun-deep); }
.btn--sun:active { box-shadow: 0 2px 0 var(--sun-deep); }

/* Blue — secondary actions, "add to cart", "continue" */
.btn--blue {
  background: var(--blue); color: #fff;
  box-shadow: 0 6px 0 var(--blue-deep);
}
.btn--blue:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--blue-deep); }
.btn--blue:active { box-shadow: 0 2px 0 var(--blue-deep); }

/* Mint — "go" / confirm */
.btn--mint {
  background: var(--mint); color: #fff;
  box-shadow: 0 6px 0 var(--mint-deep);
}
.btn--mint:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--mint-deep); }
.btn--mint:active { box-shadow: 0 2px 0 var(--mint-deep); }

/* Ghost — quiet "go back" style action */
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 2.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

/* Size + width modifiers */
.btn--lg    { font-size: 1.2rem; padding: 1.15rem 2.4rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ---- 7. BADGES / PILLS ----------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem; border-radius: 999px;
}
.pill--sun   { background: var(--sun);  color: var(--ink); }
.pill--mint  { background: #D6F7EC; color: var(--mint-deep); }
.pill--grape { background: #EBE3FF; color: var(--grape-deep); }
.pill--coral { background: #FFE1E5; color: var(--coral); }

/* ---- 8. HERO --------------------------------------------- */
.hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4rem); }
.hero h1 { max-width: 700px; margin-left: auto; margin-right: auto; }
.hero h1 span { color: var(--blue); }
.hero .lead { max-width: 620px; margin: 1.5rem auto 0; }
.hero-cta { margin-top: 2rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.hero-textlink {
  display: inline-block; margin-top: 0.9rem;
  font-weight: 600; font-size: 0.98rem; color: var(--ink);
  text-decoration: underline; text-underline-offset: 4px;
}
.hero-textlink:hover { color: var(--blue); }
.hero-note { margin-top: 1rem; font-size: 0.9rem; color: var(--ink-soft); }

/* big friendly blob behind the hero */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(72px); opacity: 0.42; z-index: -1;
}

/* ---- 9. GENERIC CARD ------------------------------------- */
.card {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

/* ---- 10. TIER CARDS (the 3 choices) ---------------------- */
.tiers {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}
.tier {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tier__cap {                       /* color strip at the very top */
  position: absolute; top: -3px; left: -3px; right: -3px; height: 10px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.tier--good    { }
.tier--good    .tier__cap { background: var(--mint); }
.tier--better  { border-color: var(--sun); transform: scale(1.03); }
.tier--better  .tier__cap { background: var(--sun); }
.tier--better:hover { transform: scale(1.03) translateY(-6px); }
.tier--best    { }
.tier--best    .tier__cap { background: var(--grape); }

.tier__flag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}
.tier__name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.5rem; }
.tier__nick { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1rem; }
.tier__price { display: flex; align-items: baseline; gap: 0.35rem; }
.tier__price .num { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 3rem; }
.tier__price .per { color: var(--ink-soft); font-size: 0.95rem; }
.tier__set { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.tier__set b { color: var(--ink); }
.tier__list { list-style: none; margin: 0 0 1.5rem; display: grid; gap: 0.6rem; }
.tier__list li { display: flex; gap: 0.6rem; font-size: 0.95rem; }
.tier__list li::before {
  content: "✓"; font-weight: 800; color: var(--mint); flex-shrink: 0;
}
.tier .btn { margin-top: auto; }

/* ---- 10b. ALL SEASON / ALL TERRAIN CHOOSER --------------- */
/* Sits above the 3 tier cards. Only appears for sizes that
   come in both patterns. Big tappable cards by design — this
   is the kind of choice phone customers make in one finger tap. */
.terrain-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.terrain-pick__opt {
  background: var(--paper);
  border: 2.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  transition: transform 0.12s, border-color 0.12s, background 0.12s, box-shadow 0.12s;
}
.terrain-pick__opt:hover { border-color: var(--blue); }
.terrain-pick__opt.is-active {
  background: var(--sky);
  border-color: var(--blue);
  box-shadow: 0 4px 0 var(--blue-deep);
}
.terrain-pick__label {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
.terrain-pick__hint {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
  font-family: 'Inter', sans-serif;
}
.terrain-pick__link {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.95rem;
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 0.25rem;
}
.terrain-pick__link:hover { color: var(--blue-deep); }
@media (max-width: 480px) {
  .terrain-pick { grid-template-columns: 1fr; }
}

/* ---- 11. STEPS / PROGRESS -------------------------------- */
.steps {
  display: flex; justify-content: center; gap: 0.5rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.step {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.9rem; color: var(--ink-soft);
}
.step__dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--line); color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fredoka', sans-serif; font-size: 0.9rem; font-weight: 600;
}
.step--done .step__dot { background: var(--mint); color: #fff; }
.step--now  .step__dot { background: var(--blue); color: #fff; }
.step--now  { color: var(--ink); }
.step__line { width: 26px; height: 3px; background: var(--line); border-radius: 2px; }

/* how-it-works numbered cards */
.hiw { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr); }
.hiw__item { text-align: center; padding: 1.5rem 1rem; }
.hiw__num {
  width: 56px; height: 56px; margin: 0 auto 0.85rem;
  border-radius: 50%; background: var(--sky); color: var(--blue);
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---- 12. FORMS ------------------------------------------- */
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.95rem;
}
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: 0.85rem; }
.input, .select {
  width: 100%; font-family: 'Inter', sans-serif; font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 2.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink);
}
.input:focus, .select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--sky);
}
.row2 { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.row3 { display: grid; gap: 0.75rem; grid-template-columns: repeat(3, 1fr); }

/* type-ahead tire-size search (finder page) */
.sizesearch { position: relative; max-width: 440px; margin: 0 auto; }
.sizesearch__input {
  width: 100%; box-sizing: border-box;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: 2rem; text-align: center; letter-spacing: 0.04em;
  color: var(--blue);
  padding: 1.3rem 1rem; background: var(--sky);
  border: 4px solid var(--blue); border-radius: var(--radius-sm);
  box-shadow: 0 7px 0 var(--blue-deep);
}
.sizesearch__input::placeholder { color: var(--ink-soft); font-weight: 500; }
.sizesearch__input:focus {
  outline: none;
  box-shadow: 0 7px 0 var(--blue-deep), 0 0 0 5px var(--sky);
}
.sizesearch__list {
  position: absolute; left: 0; right: 0; top: calc(100% + 14px);
  background: var(--paper);
  border: 2.5px solid var(--blue); border-radius: var(--radius-sm);
  max-height: 264px; overflow-y: auto; z-index: 30;
  box-shadow: var(--shadow);
}
.sizesearch__list:empty { display: none; }
.sizesearch__opt {
  padding: 0.7rem 1rem; cursor: pointer; text-align: center;
  font-family: 'Fredoka', sans-serif; font-size: 1.15rem;
  border-bottom: 1px solid var(--line);
}
.sizesearch__opt:last-child { border-bottom: none; }
.sizesearch__opt:hover { background: var(--sun); }
.sizesearch__empty {
  padding: 0.85rem 1rem; text-align: center;
  color: var(--ink-soft); font-size: 0.95rem;
}
.sizesearch__ok {
  text-align: center; margin: 0.85rem 0 0;
  font-weight: 600; color: var(--mint-deep);
}

/* Stripe payment area on the checkout page */
#expressCheckout { margin-bottom: 0.25rem; }
.pay-or {
  text-align: center; font-size: 0.85rem; color: var(--ink-soft);
  margin: 1rem 0; text-transform: uppercase; letter-spacing: 0.06em;
}
.pay-msg {
  background: #FFE1E5; color: #a3253a; font-weight: 600;
  font-size: 0.92rem; padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm); margin-top: 0.85rem;
}

/* ---- 13. ACCORDION (FAQ) --------------------------------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item {
  background: var(--paper); border: 2px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: 0.85rem; overflow: hidden;
}

/* Section dividers between groups of FAQs. The small colored dot ties
   to the brand palette (mint / sun / blue / coral). */
.faq__section {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 1.3rem;
  color: var(--ink);
  margin: 2.25rem 0 1rem;
}
.faq__section:first-of-type { margin-top: 0; }
.faq__section-dot {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq__q {
  width: 100%; text-align: left; cursor: pointer;
  font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: 1.1rem;
  background: var(--paper); border: none; color: var(--ink);
  padding: 1.15rem 1.35rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__q:hover { background: var(--cream); }
.faq__q .mark {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--sun); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; transition: transform 0.2s ease;
}
.faq__item.open .faq__q .mark { transform: rotate(45deg); }
.faq__a { padding: 0 1.35rem; max-height: 0; overflow: hidden; transition: all 0.25s ease; }
.faq__item.open .faq__a { padding: 0 1.35rem 1.35rem; max-height: 900px; }

/* ---- 14. CALLOUT / BANNER -------------------------------- */
.callout {
  background: var(--ink); color: #fff;
  border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.callout h2 { color: var(--sun); }
.callout .lead { color: rgba(255,255,255,0.78); }

.note {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: var(--sky); border-radius: var(--radius-sm);
  padding: 1rem 1.15rem; font-size: 0.95rem;
}
.note .ico { font-size: 1.3rem; line-height: 1; }

/* the tire-sidewall visual guide */
.tire-guide {
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
  justify-content: center;
}
.tire-art {
  width: 230px; height: 230px; border-radius: 50%;
  background: var(--ink);
  border: 34px solid #2c2c3e;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.tire-art .rim {
  width: 110px; height: 110px; border-radius: 50%;
  background: #d9dde6;
  border: 8px solid #b9c0cf;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  color: var(--ink); font-size: 0.8rem; text-align: center;
}
.tire-art .code, .tire-art-code {
  display: inline-block;
  background: var(--sun); color: var(--ink);
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  padding: 0.1rem 0.5rem; border-radius: 8px; font-size: 0.95rem;
  white-space: nowrap;
}

/* "Where do I find my tire size?" graphics: sidewall + door jamb */
.size-spots {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin: 0.9rem 0 1.1rem;
}
.spot {
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1rem 1.25rem;
  text-align: center;
}
.spot__stage {
  height: 150px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.spot h4 {
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: 1.1rem; margin: 0.6rem 0 0.2rem;
}
.spot p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* graphic 1 — the tire sidewall */
.look-here {
  display: flex; flex-direction: column; align-items: center;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sun-deep); line-height: 1; margin-bottom: 0.3rem;
}
.look-here span { font-size: 1.35rem; margin-top: 3px; }
.tire-block {
  background: var(--ink); color: #fff;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: 1.5rem; letter-spacing: 0.02em;
  padding: 1.1rem 1.5rem; border-radius: 16px;
  border: 4px solid #2c2c3e;
}

/* graphic 2 — the door-jamb placard */
.door {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.door__panel {
  width: 30px; height: 104px;
  background: #d9dde6; border: 2.5px solid #b9c0cf;
  border-radius: 7px; flex-shrink: 0;
}
.door__arrow {
  color: var(--sun-deep); font-size: 1.4rem; font-weight: 800; flex-shrink: 0;
}
.placard {
  width: 144px; flex-shrink: 0;
  background: var(--paper);
  border: 2px solid var(--line); border-radius: 8px;
  overflow: hidden; box-shadow: var(--shadow);
}
.placard__head {
  background: var(--ink); color: #fff;
  font-family: 'Fredoka', sans-serif; font-weight: 500;
  font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 4px; text-align: center;
}
.placard__row {
  display: flex; justify-content: space-between; gap: 6px;
  padding: 4px 8px; font-size: 0.68rem;
  border-top: 1px solid var(--line);
}
.placard__row span { color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.placard__row b { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--ink); }
.placard__row--psi b { color: var(--ink-soft); font-weight: 500; }

/* ---- 15. SUMMARY / CART LINE ----------------------------- */
.line {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.65rem 0; border-bottom: 1.5px dashed var(--line);
}
.line:last-child { border-bottom: none; }
.line--total {
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.4rem;
  border-top: 3px solid var(--ink); border-bottom: none;
  padding-top: 0.9rem; margin-top: 0.4rem;
}
.qty {
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.qty button {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--ink); background: var(--paper);
  font-family: 'Fredoka', sans-serif; font-size: 1.3rem; font-weight: 600;
  cursor: pointer; color: var(--ink);
}
.qty button:hover { background: var(--sun); }
.qty span { font-family: 'Fredoka', sans-serif; font-size: 1.4rem; min-width: 28px; text-align: center; }

/* ---- 16. FOOTER ------------------------------------------ */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 3rem 0 2.5rem; margin-top: 3rem;
}
.site-footer .wrap { display: grid; gap: 1.5rem; }
.site-footer a { color: var(--sun); text-decoration: none; font-weight: 600; }
.site-footer a:hover { text-decoration: underline; }
.foot-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.foot-legal { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.foot-logo { display: flex; align-items: center; gap: 0.5rem; color: #fff; font-family: 'Fredoka', sans-serif; font-size: 1.2rem; }

/* ---- 17. UTILITIES + RESPONSIVE -------------------------- */
.bg-sky  { background: var(--sky); }
.bg-sun  { background: var(--sun); }
.mt-0 { margin-top: 0; }
.hide { display: none !important; }

@media (max-width: 860px) {
  .tiers, .hiw, .row3 { grid-template-columns: 1fr; }
  .tier--better { transform: none; }
  .tier--better:hover { transform: translateY(-6px); }
  .size-pick { grid-template-columns: 1fr; }
  #checkoutGrid { grid-template-columns: 1fr !important; }
}
/* Phones — the main audience (social traffic). Keep ALL nav usable. */
@media (max-width: 620px) {
  .row2 { grid-template-columns: 1fr; }
  .size-spots { grid-template-columns: 1fr; }
  .btn--lg { font-size: 1.05rem; padding: 1rem 1.6rem; }
  .nav { padding: 0.6rem 0.85rem; }
  .nav-links { gap: 0.15rem; }
  .nav-links a { padding: 0.42rem 0.6rem; font-size: 0.85rem; }
  .logo { font-size: 1.02rem; gap: 0.35rem; }
  .logo .wheel { width: 24px; height: 24px; border-width: 5px; }
}
