:root {
  --clr-accent-500: hsl(41, 100%, 45%);
  --clr-accent-400: hsl(41, 100%, 50%);
  --clr-accent-300: hsl(12, 88%, 75%);
  --clr-accent-100: hsl(13, 100%, 96%);

  --clr-primary-900: hsl(228, 39%, 13%);
  --clr-primary-400: hsl(228, 39%, 23%);

  --clr-neutral-900: hsl(232, 12%, 13%);
  --clr-neutral-200: hsl(0 0% 97%);
  --clr-neutral-100: hsl(0 0% 100%);

  --ff-heading: "Plus Jakarta Sans", sans-serif;
  --ff-body: "DM Sans", sans-serif;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --fs-xs: 0.75rem;
  --fs-sm: 0.8125rem;
  --fs-base: 0.9375rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;

  --fs-body: var(--fs-base);
  --fs-heading-xl: var(--fs-3xl);
  --fs-heading-lg: var(--fs-xl);
  --fs-nav: var(--fs-2xl);
  --fs-btn: var(--fs-sm);

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 0.75rem;
  --space-base: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
}

@media (min-width: 50em) {
  :root {
    --fs-body: var(--fs-md);
    --fs-heading-xl: var(--fs-4xl);
    --fs-heading-lg: var(--fs-2xl);
    --fs-nav: var(--fs-sm);
  }
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  min-height: 100%;
}

body {
  text-rendering: optimizeSpeed;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture, svg {
  max-width: 100%;
  display: block;
}

table {
  border-collapse: collapse;
}

button {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Skip to content ── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: var(--space-base);
  z-index: 9999;
  padding: 0.75em 1.5em;
  background: var(--clr-accent-400);
  color: var(--clr-neutral-100);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  border-radius: 0 0 0.5rem 0.5rem;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* ── General ── */
body {
  font-size: var(--fs-body);
  font-family: var(--ff-body);
  color: var(--clr-primary-400);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  line-height: 1.15;
}

p:not([class]) {
  opacity: 0.7;
  max-width: 42ch;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--clr-neutral-100);
  background: var(--clr-accent-500, #FDBA12);
  box-shadow: none;
  transition: background 0.15s;
}

.btn--inverted {
  background: var(--clr-accent-500, #FDBA12);
  color: var(--clr-neutral-900);
  border: none;
  border-radius: 8px;
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.15s;
  box-shadow: none;
}

.btn--flat {
  box-shadow: none;
}

.btn:hover,
.btn:focus-visible {
  background: var(--clr-accent-400, #f59e0b);
}

.btn--inverted:hover,
.btn--inverted:focus-visible {
  background: var(--clr-accent-400, #f59e0b);
}

.btn--outline {
  background: #ffffff !important;
  color: var(--clr-neutral-900);
  border: 1px solid #e5e7eb;
  box-shadow: none;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: #f3f4f6;
  color:#0284c7;
}
/* ── Header ── */
.header {
  padding-block: var(--space-lg);
  position: sticky;
  top: 0;
  background: white;
  z-index: 100;
}

.header__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 4em;
}

.header__logo {
  width: 10em;
  min-width: 8em;
  flex-shrink: 0;
  display: block;
  cursor: pointer;
  padding: 0.5em;
}


#page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#page-loader.page-loader--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: none; /* important */
}

/* ── Nav ── */
.nav__mobile-toggle {
  display: none;
}

.nav__list {
  display: flex;
  gap: clamp(var(--space-md), 5vw, var(--space-lg));
}

.nav__list > li {
  display: flex;
  align-items: center;
}

.nav__list a {
  text-decoration: none;
  color: var(--clr-primary-400);
}

.nav__list > li > .nav__btn {
  background: none;
  border: none;
  text-decoration: none;
  font-family: var(--ff-heading);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--clr-primary-400);
  padding: 0.75rem 1rem;
  position: relative;
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav__list > li > .nav__btn:hover,
.nav__list > li > .nav__btn.active {
  color: var(--clr-accent-400);
}

.nav__list > li > .nav__btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--clr-accent-400);
  transition: transform 0.2s ease;
}

.nav__list > li > .nav__btn:hover::after,
.nav__list > li > .nav__btn.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Nav utilities */
.nav-utils {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-utils ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}

.store-status {
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0.25rem 0.6rem;
  border-radius: 1rem;
  margin-right: 0.5rem;
}

.store-status--open {
  background: #e8f5e9;
  color: #2e7d32;
}

.store-status--closed {
  background: #fce4ec;
  color: #c62828;
}

.nav-utils a {
  text-decoration: none;
  color: var(--clr-primary-400);
}

.nav-utils button img,
.nav-utils a img {
  height: 18px;
  width: 18px;
}

.nav-utils ul li button,
.nav-utils ul li a {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  width: 44px;
  color: var(--clr-primary-400);
  padding: 0;
  cursor: pointer;
}

@media (max-width: 68em) {
  .header__wrapper {
    min-height: 3.5em;
  }

  .nav-utils {
    display: grid;
    grid-template-columns: auto auto;
    justify-items: end;
    align-items: center;
  }

  .nav-utils .store-status {
    grid-column: 1 / -1;
  }

  .store-status {
    font-size: 0.55rem;
    padding: 0.15rem 0.5rem;
    margin-right: 0;
    margin-bottom: 0.15rem;
    order: -1;
  }

  .header__logo {
    width: 8em;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--clr-neutral-900);
    padding: 5rem var(--space-xl) var(--space-2xl);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    visibility: hidden;
  }

  .nav[data-visible] {
    transform: translateX(0);
    visibility: visible;
  }

  .header[data-overlay]::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(0, 0, 0, 0.5);
  }

  .nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav__list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__list > li > .nav__btn {
    width: 100%;
    text-align: left;
    color: var(--clr-neutral-100);
    padding: 1rem 0;
    font-size: var(--fs-md);
    letter-spacing: 0.1em;
  }

  .nav__list > li > .nav__btn:hover,
  .nav__list > li > .nav__btn.active {
    color: var(--clr-accent-400);
  }

  .nav__list > li > .nav__btn::after {
    display: none;
  }

  .nav__list > li {
    flex-wrap: wrap;
    position: relative;
  }

  .nav__list > li > .nav__btn {
    flex: 1;
  }

  .nav__sub-toggle {
    background: none;
    border: none;
    color: var(--clr-neutral-100);
    padding: 1rem 0.75rem;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
  }

  .nav__sub-toggle[aria-expanded="true"] {
    transform: rotate(180deg);
  }

  .nav__sub-panel {
    display: none;
    width: 100%;
    padding: 0.25rem 0 0.5rem;
  }

  .nav__sub-panel.active {
    display: block;
  }

  .nav__sub-panel .mega-nav__column {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__sub-panel .mega-nav__column:last-child {
    border-bottom: none;
  }

  .nav__sub-panel .mega-nav__column h3 {
    color: var(--clr-neutral-100);
    font-size: 0.75rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .nav__accordion-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 0.25rem;
    opacity: 0.5;
    transition: opacity 0.2s ease;
  }

  .nav__accordion-toggle:hover,
  .nav__accordion-toggle[aria-expanded="true"] {
    opacity: 1;
  }

  .nav__accordion-toggle::after {
    content: '+';
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.2s ease;
  }

  .nav__accordion-toggle[aria-expanded="true"]::after {
    content: '\2212';
  }

  .nav__sub-panel .mega-nav__column ul.nav__accordion-body {
    display: none;
  }

  .nav__sub-panel .mega-nav__column ul.nav__accordion-body.active {
    display: flex;
    padding: 0 0.25rem 0.75rem;
    gap: 0.35rem;
  }

  .nav__sub-panel .mega-nav__featured {
    display: none;
  }

  .nav__sub-panel .mega-nav__column ul li a {
    color: var(--clr-neutral-100);
    opacity: 0.7;
    font-size: var(--fs-sm);
    padding: 0.3rem 0;
    transition: opacity 0.15s ease, color 0.15s ease;
  }

  .nav__sub-panel .mega-nav__column ul li a:hover {
    color: var(--clr-accent-400);
    opacity: 1;
  }

  .nav__mobile-toggle {
    display: block;
    position: relative;
    z-index: 201;
    background: transparent;
    border: 0;
    padding: 0.5em;
    width: 44px;
    height: 44px;
  }

  .nav__icon--hamburger,
  .nav__icon--close {
    width: 24px;
    height: 24px;
  }

  .nav__icon--close {
    display: none;
  }

  .nav__mobile-toggle[aria-expanded="true"] .nav__icon--hamburger {
    display: none;
  }

  .nav__mobile-toggle[aria-expanded="true"] .nav__icon--close {
    display: block;
  }

}

/* ── Mega Nav ── */
.mega-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mega-nav__overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mega-nav__panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--clr-neutral-100);
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 101;
}

.mega-nav__panel--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-nav__inner {
  --max-width: 1410px;
  --container-padding: 1rem;
  width: min(var(--max-width), 100% - (var(--container-padding) * 2));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

/* Give the first column (subcategories) extra width for its wrapped list */
.mega-nav__inner > .mega-nav__column:first-child {
  grid-column: span 2;
}

.mega-nav__column h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-neutral-900);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.mega-nav__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Wrap long lists into columns */
.mega-nav__column ul.mega-nav__list--wrap {
  display: block;
  columns: 2;
  column-gap: 2rem;
}

.mega-nav__column ul.mega-nav__list--wrap li {
  break-inside: avoid;
  padding: 0.15rem 0;
}

.mega-nav__column ul li a {
  text-decoration: none;
  color: var(--clr-primary-400);
  font-size: var(--fs-base);
  transition: color 0.15s ease;
  display: inline-block;
  padding: 0.15rem 0;
}

.mega-nav__column ul li a:hover {
  color: var(--clr-accent-400);
}

/* Featured item in mega-nav */
.mega-nav__featured-card {
  display: block;
  text-decoration: none;
  background: var(--clr-neutral-200);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mega-nav__featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.mega-nav__featured-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 0.5rem;
}

.mega-nav__featured-name {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-400);
  padding: 0.5rem 0.75rem;
  text-align: center;
}

.mega-nav__close {
  display: none;
}

@media (max-width: 68em) {
  .mega-nav__panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 210;
    background: var(--clr-neutral-900);
    padding: 4rem var(--space-xl) var(--space-2xl);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

  .mega-nav__panel--active {
    transform: translateX(0);
  }

  .mega-nav__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .mega-nav__column h3 {
    color: var(--clr-accent-400);
    opacity: 1;
  }

  .mega-nav__column ul li a {
    color: var(--clr-neutral-100);
    font-size: var(--fs-md);
    padding: 0.4rem 0;
  }

  .mega-nav__column ul li a:hover {
    color: var(--clr-accent-400);
  }

  .mega-nav__close {
    display: block;
    position: absolute;
    top: var(--space-base);
    right: var(--space-base);
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--clr-neutral-100);
    padding: 0.5rem;
    z-index: 211;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  background-image: url("../images/site/cub_cadet.0bc0991d4507.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: min(75vh, 600px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: var(--space-3xl);
  text-align: center;
}

.hero__badge {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-accent-400);
  margin-bottom: var(--space-base);
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--clr-neutral-100);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__text {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--clr-neutral-200);
  opacity: 0.9;
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-base);
  justify-content: center;
}

@media (min-width: 50em) {
  .hero {
    min-height: min(80vh, 700px);
  }

  .hero__inner {
    text-align: left;
    max-width: 600px;
    padding-block: var(--space-4xl);
  }

  .hero__text {
    margin-inline: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }
}

/* ── Products ── */
.products {
  margin-inline: auto;
  background-color: var(--clr-neutral-200);
}

.products__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-heading-lg);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding-block: var(--space-xl);
}

.products__grid {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  padding-block: var(--space-xl);
}

.products__grid--featured {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  justify-items: center;
  max-width: 1200px;
}

.products__card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.products__card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Card inner link */
.products__card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  flex: 1;
}

/* Brand label */
.products__brand {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin: 0 0 0.2rem;
}

/* Hover overlay on image */
.products__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 0;
}
.products__card:hover .products__overlay,
.products__card:focus-within .products__overlay {
  opacity: 1;
}

/* Add to Quote button inside card */
.products__card-cta {
  padding: 0 0.75rem 0.75rem;
}
.products__card-cta form {
  margin: 0;
}
.products__add-btn {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: var(--clr-accent-500, #FDBA12);
  color: var(--clr-neutral-900);
  border: none;
  border-radius: 8px;
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.02em;
}
.products__add-btn:hover {
  background: var(--clr-accent-400, #f59e0b);
}

.products__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1rem;
  background: #f9fafb;
  min-height: 180px;
  overflow: hidden;
}

.products__image > img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
}

.products__info {
  padding: 0.75rem 1rem 1rem;
}

.products__top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.products__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-neutral-900);
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.products__price {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-neutral-900);
  white-space: nowrap;
  max-width: none;
}

.products__sku {
  font-size: var(--fs-xs);
  color: #9ca3af;
  margin-top: 0.15rem;
  max-width: none;
}

.products__price--sale {
  color: #dc2626;
}

.products__price--original {
  font-size: var(--fs-xs);
  margin-left: 0.5rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 400;
}

@media (max-width: 30em) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .products__image { min-height: 120px; padding: 0.75rem; }
  .products__image > img { max-height: 100px; }
  .products__info { padding: 0.5rem 0.65rem 0.75rem; }
}

/* ── Difference ── */
.difference {
  padding: var(--space-4xl) 0;
  background-color: var(--clr-neutral-100);
}

.difference__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.difference__subtitle {
  font-size: var(--fs-base);
  color: var(--clr-primary-400);
  opacity: 0.6;
  margin-top: 0.75rem;
  max-width: none;
}

.difference__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 50em) {
  .difference__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.difference__card {
  background: var(--clr-neutral-200);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.difference__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.difference__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto var(--space-lg);
  background: var(--clr-accent-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.difference__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.difference__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: 0.75rem;
  color: var(--clr-primary-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.difference__desc {
  font-size: var(--fs-base);
  color: var(--clr-primary-400);
  opacity: 0.7;
  line-height: 1.7;
  max-width: none;
}

/* Only use movement when reduced motion is NOT enabled */
@media (prefers-reduced-motion: no-preference) {
  .difference__card {
    transition:
      opacity 520ms ease,
      transform 520ms ease,
      box-shadow 0.25s ease;
  }

  html.motion-ok .difference__card[data-animate-card] {
    opacity: 0;
    transform: translateY(14px);
  }

  html.motion-ok .difference__card[data-animate-card].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  html.motion-ok .difference__card[data-animate-card].is-visible:hover {
    transform: translateY(-4px);
  }
}

/* Reduced motion: no sliding/fading movement */
@media (prefers-reduced-motion: reduce) {
  .difference__card {
    opacity: 1 !important;
    transform: none !important;
    transition: box-shadow 0.2s ease;
  }

  .difference__card:hover {
    transform: none !important;
  }
}

/* ── Brand Carousel ── */
.carousel {
  padding: var(--space-3xl) 0;
  background-color: var(--clr-neutral-200);
  overflow: hidden;
}

.carousel h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.carousel__window {
  max-width: 960px;
  margin-inline: auto;
  overflow: hidden;
  cursor: grab;
  -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
  mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}

.carousel__window.dragging {
  cursor: grabbing;
}

.carousel__track {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-base) 0;
  width: max-content;
  will-change: transform;
  user-select: none;
}

.carousel__card {
  flex: 0 0 140px;
  height: 100px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.carousel__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: scale(1.03);
}

.carousel__card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
}

@media (max-width: 50em) {
  .carousel__card {
    flex: 0 0 120px;
    height: 85px;
    padding: 1rem;
  }
}

/* ── CTA ── */
.cta {
  position: relative;
  isolation: isolate;
  text-align: center;
}

@media (min-width: 50em) {
  .cta { text-align: left; }
}

.cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.1;
}

/* ── Bundle Hero ── */
.bundle-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-neutral-900);
  color: var(--clr-neutral-100);
}

.bundle-hero--has-img .bundle-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundle-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}

.bundle-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: var(--space-3xl);
  text-align: center;
  width: 100%;
}

.bundle-hero__badge {
  display: inline-block;
  background: var(--clr-accent-400);
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  padding: 0.4em 1.2em;
  border-radius: 8px;
  margin-bottom: var(--space-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bundle-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.bundle-hero__text {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  opacity: 0.85;
  margin-bottom: var(--space-lg);
  max-width: 540px;
  margin-inline: auto;
}

@media (min-width: 50em) {
  .bundle-hero { min-height: 400px; }
  .bundle-hero__inner {
    text-align: left;
    max-width: 600px;
  }
  .bundle-hero__text { margin-inline: 0; }
}

/* ── Footer (Bellwoods style) ── */
.footer {
  background-color: var(--clr-neutral-900);
  color: var(--clr-neutral-100);
}

.footer__nav-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-xl) 0;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg) var(--space-2xl);
  list-style: none;
  padding: 0;
}

.footer__nav a {
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-neutral-100);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer__nav a:hover {
  opacity: 1;
}

.footer__social-bar {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  list-style: none;
  padding: 0;
}

.footer__social-icon {
  width: 1.5rem;
  aspect-ratio: 1;
  fill: var(--clr-neutral-100);
  opacity: 0.6;
  transition: opacity 0.2s ease, fill 0.2s ease;
}

.footer__social a:hover .footer__social-icon {
  opacity: 1;
  fill: var(--clr-accent-400);
}

.footer__locations {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 50em) {
  .footer__locations-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
  }
}

.footer__location-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-base);
}

.footer__location-detail {
  font-size: var(--fs-sm);
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: var(--space-sm);
  max-width: none;
}

.footer__location-detail a {
  color: var(--clr-neutral-100);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__location-detail a:hover {
  color: var(--clr-accent-400);
}

#store-map {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 12px;
}

.footer__bottom {
  padding: var(--space-xl) 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-base);
}

.footer__logo {
  width: 7rem;
}

.footer__copyright {
  font-size: var(--fs-xs);
  opacity: 0.4;
  max-width: none;
}

.footer__payments {
  display: flex;
  list-style: none;
  gap: 0.75rem;
  padding: 0;
}

.footer__payment-icon {
  width: 2rem;
  aspect-ratio: 1.5;
  fill: var(--clr-neutral-100);
  opacity: 0.4;
}

input:where([type="text"], [type="email"]) {
  border-radius: 100vw;
  border: 0;
  padding: var(--space-md) var(--space-base);
  font-family: var(--ff-body);
}

/* ── Utilities ── */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  --max-width: 1410px;
  --container-padding: 1rem;
  width: min(var(--max-width), 100% - (var(--container-padding) * 2));
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: var(--space-base);
}

@media (min-width: 50em) {
  .grid {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}

.grid--align-center {
  align-items: center;
}

.grid__end-md {
  justify-self: start;
}

@media (min-width: 50em) {
  .grid__end-md {
    justify-self: end;
  }
}

:where(.flow :not(:first-child)) {
  margin-top: var(--flow-spacer, 3em);
}

.u-text-light { color: var(--clr-neutral-100); }
.u-text-muted { opacity: 0.5; }
.u-bg-dark { background-color: var(--clr-neutral-900); }
.u-bg-accent { background-color: var(--clr-accent-400); }
.u-bg-primary { background-color: var(--clr-primary-400); }

.u-bold { font-weight: var(--fw-bold); }
.u-heading-xl {
  font-family: var(--ff-heading);
  font-size: var(--fs-heading-xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.u-heading-lg {
  font-family: var(--ff-heading);
  font-size: var(--fs-heading-lg);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.u-text-sm { font-size: var(--fs-sm); }
.u-py-lg { padding-block: var(--space-4xl); }
.u-py-md { padding-block: var(--space-2xl); }

/* ── Live Search Overlay ── */
.live-search {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  padding-top: min(18vh, 140px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.live-search--open {
  opacity: 1;
  visibility: visible;
}

.live-search__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.live-search__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 92vw);
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  background: var(--clr-neutral-100);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: translateY(-12px);
  transition: transform 0.25s ease;
}

.live-search--open .live-search__panel {
  transform: translateY(0);
}

.live-search__form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.live-search__icon {
  flex-shrink: 0;
  color: #9ca3af;
}

.live-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  color: var(--clr-neutral-900);
  background: transparent;
}

.live-search__input::placeholder {
  color: #9ca3af;
}

.live-search__close {
  background: #f3f4f6;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--clr-neutral-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.live-search__close:hover {
  background: #e5e7eb;
}

.live-search__results {
  overflow-y: auto;
  padding: 0;
  scrollbar-width: thin;
}

.live-search__group {
  padding: 10px 0;
}

.live-search__group + .live-search__group {
  border-top: 1px solid #f3f4f6;
}

.live-search__group-title {
  font-family: var(--ff-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  padding: 4px 20px 6px;
}

.live-search__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  text-decoration: none;
  color: var(--clr-neutral-900);
  transition: background 0.1s ease;
}

.live-search__item:hover {
  background: #f7f7f8;
}

.live-search__thumb {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: #f9fafb;
  flex-shrink: 0;
}

.live-search__item-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.live-search__item-name {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-search__item-name mark {
  background: transparent;
  color: var(--clr-accent-400);
  font-weight: 700;
}

.live-search__item-meta {
  font-size: 0.75rem;
  color: #9ca3af;
}

.live-search__empty {
  padding: 24px 20px;
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}

.live-search__viewall {
  display: block;
  padding: 12px 20px;
  text-align: center;
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-accent-400);
  text-decoration: none;
  border-top: 1px solid #f3f4f6;
  transition: background 0.15s ease;
}

.live-search__viewall:hover {
  background: #f9fafb;
}

/* ── Search Results Page ── */
.search-hero {
  padding: var(--space-2xl) 0;
  background: var(--clr-neutral-200);
}

.search-bar {
  max-width: 600px;
  margin: var(--space-lg) auto 0;
}

.search-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-neutral-100);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 8px 8px 8px 16px;
  transition: border-color 0.2s ease;
}

.search-bar__inner:focus-within {
  border-color: var(--clr-accent-400);
}

.search-bar__icon {
  flex-shrink: 0;
  color: #9ca3af;
}

.search-bar__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--clr-neutral-900);
  background: transparent;
}

.search-bar__btn {
  padding: 0.6em 1.5em;
  background: var(--clr-accent-400);
  color: var(--clr-neutral-100);
  border: none;
  border-radius: 8px;
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-bar__btn:hover {
  background: var(--clr-accent-300);
}

.search-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--space-2xl);
  border-bottom: 2px solid #e5e7eb;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.search-tabs::-webkit-scrollbar {
  display: none;
}

.search-tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.search-tabs__tab:hover {
  color: var(--clr-primary-400);
}

.search-tabs__tab--active {
  color: var(--clr-primary-400);
  border-bottom-color: var(--clr-accent-400);
}

.search-tabs__count {
  font-size: var(--fs-xs);
  font-weight: 700;
  background: var(--clr-neutral-200);
  color: #6b7280;
  padding: 2px 8px;
  border-radius: 100vmax;
}

.search-tabs__tab--active .search-tabs__count {
  background: var(--clr-accent-400);
  color: var(--clr-neutral-100);
}

.search-docs {
  display: grid;
  gap: 0.5rem;
}

.search-docs__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--clr-neutral-200);
  border-radius: 10px;
  text-decoration: none;
  color: var(--clr-primary-400);
  transition: background 0.15s ease, transform 0.15s ease;
}

.search-docs__item:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

.search-docs__icon {
  flex-shrink: 0;
  color: #9ca3af;
}

.search-docs__title {
  font-family: var(--ff-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.search-docs__meta {
  font-size: 0.8125rem;
  color: #6b7280;
}

.search-results {
  padding: var(--space-2xl) 0 var(--space-4xl);
}

.search-section {
  margin-bottom: var(--space-2xl);
}

.search-section__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-section__count {
  font-size: var(--fs-xs);
  font-weight: 700;
  background: var(--clr-neutral-200);
  color: #6b7280;
  padding: 2px 8px;
  border-radius: 100vmax;
}

.search-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.search-links__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--clr-neutral-200);
  border-radius: 10px;
  text-decoration: none;
  color: var(--clr-primary-400);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s ease, transform 0.15s ease;
}

.search-links__item:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

.search-links__logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

.search-pages {
  display: grid;
  gap: 0.5rem;
  max-width: 600px;
}

.search-pages__item {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--clr-neutral-200);
  border-radius: 10px;
  text-decoration: none;
  color: var(--clr-primary-400);
  transition: background 0.15s ease;
}

.search-pages__item:hover {
  background: #e5e7eb;
}

.search-pages__name {
  font-family: var(--ff-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.search-pages__desc {
  font-size: 0.8125rem;
  color: #6b7280;
  max-width: none;
}

.search-empty {
  text-align: center;
  padding: var(--space-2xl) 0;
  color: #6b7280;
  font-size: 0.9375rem;
}

.search-empty__hint {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #9ca3af;
  max-width: none;
}

/* ── Pagination ── */
.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: var(--space-2xl);
}

.pagination__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-primary-400);
  text-decoration: none;
  background: var(--clr-neutral-100);
  border: 1px solid #e5e7eb;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.pagination__link:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.pagination__link--active {
  background: var(--clr-primary-400);
  color: var(--clr-neutral-100);
  border-color: var(--clr-primary-400);
  cursor: default;
}

.pagination__link--disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.pagination__link--prev,
.pagination__link--next {
  font-size: 1.1rem;
  font-weight: 400;
}

.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 36px;
  font-size: 0.875rem;
  color: #9ca3af;
  user-select: none;
}

.pagination__info {
  font-size: 0.75rem;
  color: #9ca3af;
  max-width: none;
}

/* ── Auth Pages ── */
.auth {
  min-height: calc(100vh - 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-base);
  background: #f4f4f4;
}

.auth__card {
  width: 100%;
  max-width: 440px;
  background: var(--clr-neutral-100);
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 2rem;
}

.auth__title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-neutral-900);
  text-align: center;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.auth__subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 1.75rem;
  max-width: none;
  line-height: 1.5;
}

.auth__error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: #b91c1c;
  line-height: 1.5;
}

.auth__error p {
  margin: 0;
  max-width: none;
  opacity: 1;
}

.auth__error p + p {
  margin-top: 0.25rem;
}

.auth__field {
  margin-bottom: 1rem;
}

.auth__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.auth__label {
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-neutral-900);
  margin-bottom: 0.35rem;
}

.auth__input {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--clr-neutral-900);
  background: var(--clr-neutral-100);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.auth__input::placeholder {
  color: #9ca3af;
}

.auth__input:focus {
  border-color: var(--clr-accent-400);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.15);
}

.auth__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
}

.auth__remember {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #4b5563;
  cursor: pointer;
  font-size: 0.8125rem;
}

.auth__remember input {
  accent-color: var(--clr-accent-400);
}

.auth__link {
  color: var(--clr-accent-400);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}

.auth__link:hover {
  color: var(--clr-accent-300);
  text-decoration: underline;
}

.auth__btn {
  width: 100%;
  padding: 0.8rem;
  background: var(--clr-primary-400);
  color: var(--clr-neutral-100);
  border: none;
  border-radius: 10px;
  font-family: var(--ff-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.auth__btn:hover {
  background: var(--clr-primary-900);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.auth__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: #d1d5db;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.auth__divider::before,
.auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.auth__divider span {
  color: #9ca3af;
}

.auth__footer {
  text-align: center;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0;
  max-width: none;
}

@media (max-width: 480px) {
  .auth__card {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }

  .auth__row {
    grid-template-columns: 1fr;
  }
}

/* ── Profile Page ── */
.profile {
  padding: var(--space-2xl) 0 var(--space-4xl);
  background: #f4f4f4;
  min-height: 60vh;
}

.profile--guest {
  padding-top: var(--space-3xl);
}

.profile__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--clr-neutral-100);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: var(--space-xl);
}

.profile__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-primary-400);
  color: var(--clr-neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}

.profile__name {
  font-family: var(--ff-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--clr-neutral-900);
  line-height: 1.2;
}

.profile__email {
  font-size: 0.8125rem;
  color: #6b7280;
  max-width: none;
}

.profile__signout {
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.profile__signout:hover {
  color: #ef4444;
  border-color: #fca5a5;
}

/* Quick links */
.profile__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: var(--space-xl);
}

.profile__link-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--clr-neutral-100);
  border-radius: 12px;
  text-decoration: none;
  color: var(--clr-neutral-900);
  font-family: var(--ff-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.profile__link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.profile__link-card svg {
  color: var(--clr-accent-400);
  flex-shrink: 0;
}

/* Section */
.profile__section {
  background: var(--clr-neutral-100);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.profile__section-title {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-neutral-900);
  margin-bottom: 0;
}

/* Collapsible toggle */
.profile__collapse-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 1.25rem;
  cursor: pointer;
  color: inherit;
}

.profile__collapse-icon {
  transition: transform 0.25s ease;
  color: #9ca3af;
  flex-shrink: 0;
}

.profile__panel.collapsed .profile__collapse-icon {
  transform: rotate(-90deg);
}

.profile__collapse-body {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
  max-height: 2000px;
  opacity: 1;
}

.profile__panel.collapsed .profile__collapse-body {
  max-height: 0;
  opacity: 0;
}

.profile__panel.collapsed .profile__collapse-toggle {
  margin-bottom: 0;
}

/* Welcome section */
.profile__welcome {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--clr-neutral-100);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.04);
  margin-bottom: var(--space-lg);
}

/* Active Requests Summary */
.profile__active-summary {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: var(--space-lg);
  color: #fff;
}
.profile__active-summary__title {
  font-family: var(--ff-heading);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  margin: 0 0 .75rem;
}
.profile__active-summary__cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.profile__summary-card {
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 160px;
}
.profile__summary-card__count {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 800;
}
.profile__summary-card__label {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
}

/* Latest Update Banner */
.profile__latest-update {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--clr-neutral-100);
  border-left: 4px solid #16a34a;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: var(--space-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.profile__latest-update__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.profile__latest-update__label {
  font-size: .75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 .15rem;
}
.profile__latest-update__detail {
  font-size: .9rem;
  color: var(--clr-neutral-900);
  margin: 0;
}
.profile__latest-update__date {
  display: block;
  font-size: .8rem;
  color: #9ca3af;
  margin-top: .15rem;
}

@media (max-width: 600px) {
  .profile__welcome { padding: 1.25rem; gap: 1rem; }
  .profile__active-summary { padding: 1.25rem; }
  .profile__active-summary__cards { flex-direction: column; }
  .profile__latest-update { flex-direction: column; align-items: flex-start; gap: .5rem; padding: 1rem; }
  .profile__links { grid-template-columns: 1fr 1fr; }
}

.profile__divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 1.5rem 0;
}

/* Order status badges */
.booking-card__status--pending  { background: #fffbeb; color: #d97706; }
.booking-card__status--confirmed { background: #eff6ff; color: #2563eb; }

.profile__empty {
  text-align: center;
  padding: 2rem 0;
  color: #9ca3af;
  font-size: 0.9375rem;
}

.profile__empty a {
  display: inline-block;
  margin-top: 0.5rem;
}

/* Booking cards */
.profile__bookings {
  display: grid;
  gap: 0.75rem;
}

.booking-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.booking-card:hover {
  border-color: #d1d5db;
}

.booking-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fafafa;
  border-bottom: 1px solid #f3f4f6;
}

.booking-card__order {
  font-family: var(--ff-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--clr-neutral-900);
  margin-right: 0.5rem;
}

.booking-card__service {
  font-size: 0.8125rem;
  color: #6b7280;
}

.booking-card__status {
  font-family: var(--ff-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3em 0.7em;
  border-radius: 100vmax;
  white-space: nowrap;
}

.booking-card__status--received {
  background: #eff6ff;
  color: #2563eb;
}

.booking-card__status--in_progress {
  background: #fffbeb;
  color: #d97706;
}

.booking-card__status--ready {
  background: #ecfdf5;
  color: #059669;
}

.booking-card__status--out_for_delivery {
  background: #f0f9ff;
  color: #0284c7;
}

.booking-card__status--completed {
  background: #ecfdf5;
  color: #059669;
}

.booking-card__status--cancelled {
  background: #fef2f2;
  color: #dc2626;
}

.booking-card__body {
  padding: 0.75rem 1.25rem 1rem;
  display: grid;
  gap: 0.4rem;
}

.booking-card__detail {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--clr-neutral-900);
  line-height: 1.4;
}

.booking-card__label {
  flex-shrink: 0;
  width: 80px;
  color: #9ca3af;
  font-weight: 500;
}

/* Guest profile */
.profile__guest-title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 0.35rem;
}

.profile__guest-subtitle {
  font-size: 0.9375rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: none;
}

.profile__guest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.profile__card {
  background: var(--clr-neutral-100);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.profile__card-title {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.profile__card-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  max-width: none;
  line-height: 1.5;
}

@media (max-width: 50em) {
  .profile__header {
    flex-wrap: wrap;
  }

  .profile__signout {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .profile__links {
    grid-template-columns: 1fr;
  }

  .profile__guest-grid {
    grid-template-columns: 1fr;
  }

  .profile__section {
    padding: 1.5rem 1.25rem;
  }
}

/* ── Cart Badge ── */
.cart-badge {
  position: absolute;
  top: 8px;
  right: 4px;
  background: var(--clr-accent-500);
  color: var(--clr-neutral-900);
  font-family: var(--ff-heading);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 8px;
  padding: 0 4px;
  pointer-events: none;
}

/* ── Cart Toast ── */
.cart-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  background: var(--clr-neutral-900);
  color: var(--clr-neutral-100);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cart-toast--show {
  transform: translateY(0);
  opacity: 1;
}
.cart-toast__link {
  color: var(--clr-accent-400);
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Cart Page ── */
.cart-empty {
  text-align: center;
  padding: 3rem 0;
  opacity: 0.6;
}
.cart-empty a {
  color: var(--clr-accent-400);
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: hsl(0 0% 90%);
  border: 1px solid hsl(0 0% 90%);
  border-radius: 8px;
  overflow: hidden;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--clr-neutral-100);
  align-items: center;
}

.cart-item__image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  background: var(--clr-neutral-200);
}
.cart-item__placeholder {
  width: 100%;
  height: 100%;
  background: var(--clr-neutral-200);
  border-radius: 6px;
}

.cart-item__details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.cart-item__info {
  flex: 1;
  min-width: 0;
}
.cart-item__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  margin: 0;
}
.cart-item__name a {
  color: inherit;
  text-decoration: none;
}
.cart-item__name a:hover {
  color: var(--clr-accent-500);
}
.cart-item__option,
.cart-item__sku {
  font-size: var(--fs-xs);
  color: hsl(0 0% 50%);
  margin: 2px 0 0;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid hsl(0 0% 82%);
  border-radius: 6px;
  overflow: hidden;
}
.cart-qty__btn {
  width: 32px;
  height: 32px;
  background: var(--clr-neutral-200);
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-neutral-900);
  font-weight: 600;
}
.cart-qty__btn:hover {
  background: hsl(0 0% 85%);
}
.cart-qty__input {
  width: 40px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid hsl(0 0% 82%);
  border-right: 1px solid hsl(0 0% 82%);
  font-size: 14px;
  font-family: var(--ff-body);
  -moz-appearance: textfield;
}
.cart-qty__input::-webkit-outer-spin-button,
.cart-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item__price {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  white-space: nowrap;
  min-width: 70px;
  text-align: right;
}

.cart-item__remove {
  background: none;
  border: none;
  font-size: 20px;
  color: hsl(0 0% 60%);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.cart-item__remove:hover {
  color: hsl(0 70% 50%);
}

/* ── Cart Summary ── */
.cart-summary {
  background: var(--clr-neutral-100);
  padding: 1rem 1.25rem;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  color: #6b7280;
}
.cart-summary__row--exempt {
  color: #16a34a;
  font-size: 0.8125rem;
  font-weight: 600;
}
.cart-summary__row--total {
  border-top: 2px solid hsl(0 0% 90%);
  padding-top: 0.65rem;
  margin-top: 0.35rem;
  font-family: var(--ff-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--clr-neutral-900);
}
.cart-summary--standalone {
  max-width: 400px;
  border: 1px solid hsl(0 0% 90%);
  border-radius: 8px;
}
.cart-summary__note {
  font-size: var(--fs-xs);
  color: hsl(0 0% 50%);
  margin-top: 0.25rem;
}
.cart-summary__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  max-width: 400px;
  margin-left: auto;
}
.cart-summary__continue {
  flex: 1;
  text-align: center;
  text-decoration: none;
}

/* ── Bundle in Cart ── */
.cart-bundle-group {
  background: var(--clr-neutral-100);
}
.cart-bundle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: hsl(45 60% 96%);
  border-bottom: 1px solid hsl(0 0% 90%);
}
.cart-bundle-header__info {
  min-width: 0;
}
.cart-bundle-header__savings {
  font-size: var(--fs-xs);
  color: hsl(0 0% 45%);
  margin-top: 2px;
}
.cart-bundle-header__savings s {
  text-decoration: line-through;
}
.cart-bundle-header__savings strong {
  color: var(--clr-neutral-900);
}
.cart-bundle-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cart-item__bundle-badge {
  display: inline-block;
  background: var(--clr-accent-500);
  color: var(--clr-neutral-900);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
  margin-right: 4px;
}
.cart-item--bundle-child {
  padding-left: 2.5rem;
  border-bottom: 1px solid hsl(0 0% 93%);
}
.cart-item--bundle-child:last-child {
  border-bottom: none;
}
.cart-item__original-price {
  color: hsl(0 0% 55%);
  font-weight: 400;
  text-decoration: line-through;
}

@media (max-width: 40em) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-item__details {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .cart-item__controls {
    width: 100%;
    justify-content: space-between;
    margin-top: 0.5rem;
  }
  .cart-item__image {
    width: 60px;
    height: 60px;
  }
  .cart-bundle-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .cart-item--bundle-child {
    padding-left: 1.25rem;
  }
}


/* ── Service Request Tracker ── */

.service-card-grid {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 2rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.service-card__eyebrow {
  margin: 0 0 0.25rem;
  color: #667085;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 0;
  color: #111827;
  font-size: 1.15rem;
}

.service-status-badge {
  color: #ffffff;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.service-card__message {
  color: #374151;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.service-note {
  background: #f8faf9;
  border: 1px solid #dbe7df;
  border-radius: 12px;
  padding: 0.9rem;
  margin-bottom: 1.25rem;
}

.service-note p {
  margin: 0.35rem 0 0;
  color: #374151;
}

.service-progress {
  margin: 1.25rem 0;
}

.service-progress__bar {
  width: 100%;
  height: 10px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.service-progress__fill {
  height: 100%;
  background: #163d24;
  border-radius: 999px;
}

.service-progress__steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.service-progress__step {
  text-align: center;
  min-width: 0;
}

.service-progress__dot {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 0.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}

.service-progress__step.is-complete .service-progress__dot {
  background: #163d24;
  color: #ffffff;
}

.service-progress__step.is-active .service-progress__dot {
  background: #f59e0b;
  color: #ffffff;
}

.service-progress__step.is-future .service-progress__dot {
  background: #e5e7eb;
  color: #6b7280;
}

.service-progress__label {
  display: block;
  font-size: 0.72rem;
  color: #6b7280;
  line-height: 1.2;
}

.service-progress__step.is-active .service-progress__label {
  color: #111827;
  font-weight: 700;
}

.service-progress__step.is-complete .service-progress__label {
  color: #163d24;
  font-weight: 600;
}

.service-card__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: #f9fafb;
  border-radius: 14px;
  padding: 1rem;
  margin-top: 1.25rem;
}

.service-card__details span,
.service-issue span {
  display: block;
  color: #667085;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.service-card__details strong {
  color: #111827;
  font-size: 0.95rem;
}

.service-issue {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eef1ef;
}

.service-issue p {
  margin: 0.25rem 0 0;
  color: #374151;
  line-height: 1.5;
}

.service-pickup-alert,
.service-wait-alert {
  margin-top: 1rem;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 600;
}

.service-pickup-alert {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.service-wait-alert {
  background: #fff8e5;
  color: #5f4b14;
  border: 1px solid #f2d98d;
}

@media (max-width: 760px) {
  .service-card__top {
    flex-direction: column;
  }

  .service-card__details {
    grid-template-columns: 1fr;
  }

  .service-progress__steps {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0.85rem;
  }
}

.trust-section {
  padding-bottom: var(--space-3xl);
}

/* Navy "Help Me Choose" CTA card */
.finder-cta-navy {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background-color: var(--clr-primary-400);
  color: var(--clr-neutral-100);
  border-radius: 12px;
  padding: var(--space-lg) var(--space-xl);
  margin-top: var(--space-xl);
}
.finder-cta-navy__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  white-space: nowrap;
}
.finder-cta-navy__text {
  font-size: var(--fs-sm);
  opacity: 0.8;
  line-height: 1.4;
}
.finder-cta-navy .btn {
  flex-shrink: 0;
  margin-left: auto;
}
.btn--accent {
  background: var(--clr-accent-400);
  color: var(--clr-neutral-100);
  border-radius: 8px;
  box-shadow: none;
}
.btn--accent:hover,
.btn--accent:focus-visible {
  background: var(--clr-accent-300);
}
@media (max-width: 600px) {
  .finder-cta-navy {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
  }
  .finder-cta-navy__title {
    white-space: normal;
  }
  .finder-cta-navy .btn {
    margin-left: 0;
  }
}

.story-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 48vw);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.story-section__content,
.story-section__media {
  opacity: 0;
  animation: storySlideIn 0.7s ease-out forwards;
}

.story-section__content {
  transform: translateX(-32px);
}

.story-section__media {
  width: 100%;
  max-width: 680px;
  justify-self: end;
  transform: translateX(32px);
  animation-delay: 0.12s;

  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.story-section__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: inherit;
}

@keyframes storySlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .story-section__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-section__media {
    order: -1;
    justify-self: center;
    max-width: 360px;
  }

  .story-section__content,
  .story-section__media {
    transform: translateY(24px);
  }

  .story-section__content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-section__content,
  .story-section__media {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ── Shop Pages ── */
.shop-hero { padding: 3rem 0 2rem; background: var(--clr-bg-subtle, #f9fafb); }
.shop-hero__title { font-size: 2rem; font-weight: 800; margin: 0; }
.shop-hero__subtitle { color: var(--clr-text-secondary, #6b7280); margin: 0.5rem 0 0; }

.shop-categories { padding: 2rem 0 3rem; }
.shop-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.shop-cat-card {
    display: flex;
    flex-direction: column;
    background: var(--clr-surface, #fff);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shop-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.shop-cat-card__image { aspect-ratio: 4/3; overflow: hidden; background: #f3f4f6; }
.shop-cat-card__image img { width: 100%; height: 100%; object-fit: cover; }
.shop-cat-card__body { padding: 1rem; }
.shop-cat-card__title { font-size: 1rem; font-weight: 700; margin: 0; }
.shop-cat-card__count { font-size: 0.8rem; color: var(--clr-text-secondary, #6b7280); margin: 0.25rem 0 0; }
.shop-cat-card--small .shop-cat-card__image { aspect-ratio: 3/2; }

/* ── Shop Category Image Rail ── */
.shop-cat-rail { padding: 1.25rem 0 1.5rem; }

.shop-cat-rail__header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
}

.shop-cat-rail__controls {
    display: flex;
    gap: 0.35rem;
}

.shop-cat-rail__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.shop-cat-rail__viewport::-webkit-scrollbar { display: none; }

.shop-cat-rail__track {
    display: flex;
    gap: 1rem;
    padding: 0.25rem 0;
}

.shop-cat-rail__card {
    flex: 0 0 170px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: var(--clr-surface, #fff);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-cat-rail__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
}

.shop-cat-rail__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f3f4f6;
}

.shop-cat-rail__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shop-cat-rail__card:hover .shop-cat-rail__img img {
    transform: scale(1.04);
}

.shop-cat-rail__info {
    padding: 0.6rem 0.75rem 0.7rem;
}

.shop-cat-rail__name {
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.shop-cat-rail__count {
    font-size: 0.7rem;
    color: var(--clr-text-secondary, #6b7280);
    margin: 0.15rem 0 0;
}

@media (max-width: 50em) {
    .shop-cat-rail__controls { display: none; }
    .shop-cat-rail__card { flex: 0 0 140px; }
    .shop-cat-rail__name { font-size: 0.8rem; }
    .shop-cat-rail__viewport {
        margin-inline: -1rem;
        padding-inline: 1rem;
    }
    .shop-cat-rail__track {
        padding-right: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-cat-rail__viewport { scroll-behavior: auto !important; }
    .shop-cat-rail__card,
    .shop-cat-rail__img img {
        animation: none !important;
        transition: none !important;
    }
}

.shop-subcategories { padding: 1.5rem 0; }
.shop-subcategories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.shop-category-hero { padding: 2.5rem 0 1.5rem; background: var(--clr-bg-subtle, #f9fafb); }
.shop-category-hero h1 { font-size: 1.75rem; font-weight: 800; margin: 0; }
.shop-category-hero__desc { color: var(--clr-text-secondary, #6b7280); margin: 0.5rem 0 0; max-width: 700px; }

/* Breadcrumbs */
.breadcrumbs { padding: 0.75rem 0; background: var(--clr-bg-subtle, #f9fafb); border-bottom: 1px solid #e5e7eb; }
.breadcrumbs__list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.25rem; font-size: 0.85rem; }
.breadcrumbs__list li::before { content: '/'; margin-right: 0.25rem; color: #9ca3af; }
.breadcrumbs__list li:first-child::before { display: none; }
.breadcrumbs__list a { color: var(--clr-primary, #1b1b1b); text-decoration: none; }
.breadcrumbs__list a:hover { text-decoration: underline; }

/* Category page promotion/bundle sections */
.category-promos { padding: 1.5rem 0; }
.category-promos__grid { display: flex; gap: 1rem; overflow-x: auto; }
.promo-card--inline { min-width: 260px; flex-shrink: 0; }
.category-bundles { padding: 1.5rem 0; }
.category-bundles h2 { margin-bottom: 1rem; }

/* ── Homepage Bundle Cards ── */
.homepage-bundles { padding: 3rem 0; }
.homepage-bundles__header { text-align: center; margin-bottom: 2rem; }
.homepage-bundles__subtitle { color: var(--clr-text-secondary, #6b7280); max-width: 600px; margin: 0.5rem auto 0; }
.homepage-bundles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .homepage-bundles__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    .homepage-bundles__grid .bundle-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

.bundle-card {
    display: flex;
    flex-direction: column;
    background: var(--clr-surface, #fff);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bundle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.bundle-card__image { aspect-ratio: 16/9; overflow: hidden; background: #f3f4f6; }
.bundle-card__image img { width: 100%; height: 100%; object-fit: cover; }
.bundle-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.bundle-card__badge {
    display: inline-block;
    background: var(--clr-primary, #1b1b1b);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    align-self: flex-start;
}
.bundle-card__title { font-size: 1.1rem; font-weight: 700; margin: 0; }
.bundle-card__tagline { font-size: 0.85rem; color: var(--clr-text-secondary, #6b7280); margin: 0; }
.bundle-card__count { font-size: 0.8rem; color: var(--clr-text-secondary, #6b7280); margin: 0; }
.bundle-card__pricing { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem; margin-top: auto; padding-top: 0.5rem; }
.bundle-card__original { text-decoration: line-through; color: #9ca3af; font-size: 0.85rem; }
.bundle-card__savings { color: #059669; font-size: 0.85rem; font-weight: 600; }
.bundle-card__total { font-size: 1.15rem; font-weight: 700; color: var(--clr-text-primary, #1b1b1b); }
.bundle-card__cta { font-size: 0.85rem; font-weight: 600; color: var(--clr-primary, #1b1b1b); margin-top: 0.5rem; }

/* ── Homepage Promotion Cards ── */
.homepage-promos { padding: 3rem 0; background: var(--clr-bg-subtle, #f9fafb); }
.homepage-promos__header { text-align: center; margin-bottom: 2rem; }
.homepage-promos__subtitle { color: var(--clr-text-secondary, #6b7280); max-width: 600px; margin: 0.5rem auto 0; }
.homepage-promos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .homepage-promos__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    .homepage-promos__grid .promo-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

.promo-card {
    background: var(--clr-surface, #fff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.promo-card__image { aspect-ratio: 16/9; overflow: hidden; background: #f3f4f6; }
.promo-card__image img { width: 100%; height: 100%; object-fit: cover; }
.promo-card__body { padding: 1.25rem; }
.promo-card__badge {
    display: inline-block;
    background: #059669;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.promo-card__title { font-size: 1.05rem; font-weight: 700; margin: 0 0 0.35rem; }
.promo-card__desc { font-size: 0.85rem; color: var(--clr-text-secondary, #6b7280); margin: 0; }

/* ── Navigation Setups & Offers ── */
.mega-nav__setup-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.35rem 0; }
.mega-nav__thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.mega-nav__promo-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0; }
.mega-nav__promo-badge {
    display: inline-block;
    background: #059669;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
}

/* ── Bundle Detail Page ── */
.bundle-detail { padding: 2rem 0 3rem; }
.bundle-detail__header { margin-bottom: 2rem; }
.bundle-detail__title { font-size: 1.75rem; font-weight: 800; margin: 0.5rem 0 0; }
.bundle-detail__desc { color: var(--clr-text-secondary, #6b7280); margin: 0.5rem 0 0; max-width: 700px; }
.bundle-detail__layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
@media (max-width: 768px) { .bundle-detail__layout { grid-template-columns: 1fr; } }
.bundle-detail__products h2 { font-size: 1.1rem; font-weight: 700; margin: 0 0 1rem; }
.bundle-detail__item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0; border-bottom: 1px solid #e5e7eb;
}
.bundle-detail__item:last-child { border-bottom: none; }
.bundle-detail__item-link {
    display: flex; align-items: center; gap: 1rem;
    text-decoration: none; color: inherit; flex: 1;
}
.bundle-detail__item-link:hover .bundle-detail__item-name { text-decoration: underline; }
.bundle-detail__item-img { width: 64px; height: 64px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.bundle-detail__item-info { display: flex; flex-direction: column; gap: 0.15rem; }
.bundle-detail__item-brand { font-size: 0.75rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.03em; }
.bundle-detail__item-name { font-weight: 600; font-size: 0.95rem; }
.bundle-detail__item-model { font-size: 0.8rem; color: #6b7280; }
.bundle-detail__item-price { font-weight: 600; white-space: nowrap; text-align: right; }
.bundle-detail__starting { display: block; font-size: 0.75rem; font-weight: 400; color: #6b7280; }
.bundle-detail__summary-card {
    background: var(--clr-surface, #fff); border: 1px solid #e5e7eb;
    border-radius: 12px; padding: 1.5rem; position: sticky; top: 5rem;
}
.bundle-detail__summary-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 1rem; }
.bundle-detail__pricing-dl { display: flex; justify-content: space-between; margin: 0.5rem 0; font-size: 0.95rem; }
.bundle-detail__pricing-dl dt { color: #6b7280; }
.bundle-detail__pricing-dl--savings dt, .bundle-detail__pricing-dl--savings dd { color: #059669; }
.bundle-detail__pricing-dl--total { border-top: 2px solid #1b1b1b; padding-top: 0.75rem; margin-top: 0.75rem; font-weight: 700; font-size: 1.1rem; }
.bundle-detail__pricing-dl--total dt, .bundle-detail__pricing-dl--total dd { color: var(--clr-text-primary, #1b1b1b); }
.bundle-detail__services { margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid #e5e7eb; }
.bundle-detail__service { font-size: 0.85rem; color: #059669; margin: 0.35rem 0; }
.bundle-detail__messages { margin-top: 0.75rem; }
.bundle-detail__message { font-size: 0.8rem; color: #6b7280; font-style: italic; margin: 0.25rem 0; }
.bundle-detail__summary-card .btn { width: 100%; margin-top: 1.25rem; }
.bundle-detail__note { font-size: 0.8rem; color: #9ca3af; margin: 0.75rem 0 0; text-align: center; }

/* ── Cart Enhancements ── */
.cart-coupon { padding: 1rem 0; border-top: 1px solid #e5e7eb; margin-top: 0.5rem; }
.cart-coupon__label { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; display: block; }
.cart-coupon__row { display: flex; gap: 0.5rem; }
.cart-coupon__input {
    flex: 1; max-width: 220px; padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db; border-radius: 6px; font-size: 0.9rem;
    text-transform: uppercase;
}
.cart-coupon__input:focus { outline: none; border-color: var(--clr-primary, #1b1b1b); }
.cart-coupon__btn { white-space: nowrap; }
.cart-coupon__status { font-size: 0.8rem; margin: 0.35rem 0 0; min-height: 1.2em; }
.cart-coupon__status--success { color: #059669; }
.cart-coupon__status--error { color: #dc2626; }

.cart-summary__row--savings { color: #059669; }
.cart-summary__savings-amount { font-weight: 600; }
.cart-summary__row--service { color: #059669; font-size: 0.9rem; }
.cart-summary__messages { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid #e5e7eb; }
.cart-summary__message { font-size: 0.8rem; color: #6b7280; margin: 0.25rem 0; font-style: italic; }
.cart-summary__applied { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.cart-summary__promo-tag {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    background: #ecfdf5; color: #059669; padding: 0.2rem 0.5rem;
    border-radius: 4px; text-transform: uppercase; letter-spacing: 0.03em;
}

/* ── Product Badges ── */
.product-badges { display:flex; flex-wrap:wrap; gap:.375rem; margin-top:.5rem; }
.product-badge {
    display:inline-flex; align-items:center; gap:.25rem;
    font-size:.7rem; font-weight:500; letter-spacing:.02em;
    padding:.2rem .5rem; border-radius:3px;
    line-height:1.3; white-space:nowrap;
}
.product-badge--service { background:rgba(34,197,94,.1); color:#16a34a; border:1px solid rgba(34,197,94,.2); }
.product-badge--delivery { background:rgba(59,130,246,.1); color:#2563eb; border:1px solid rgba(59,130,246,.2); }
.product-badge--gift { background:rgba(168,85,247,.1); color:#7c3aed; border:1px solid rgba(168,85,247,.2); }
.product-badge--savings { background:rgba(234,179,8,.1); color:#b45309; border:1px solid rgba(234,179,8,.2); }
.product-badge--bundle { background:rgba(14,165,233,.1); color:#0284c7; border:1px solid rgba(14,165,233,.2); }
.products__card .product-badges { margin-top:.35rem; }
.products__card .product-badge { font-size:.65rem; padding:.15rem .4rem; }

/* ── Quote Modal ── */
.quote-modal { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .3s; }
.quote-modal--show { opacity:1; pointer-events:auto; }
.quote-modal__backdrop { position:absolute; inset:0; background:rgba(0,0,0,.6); }
.quote-modal__dialog { position:relative; background:#1a1a2e; border:1px solid rgba(255,255,255,.1); border-radius:12px; padding:2rem; max-width:480px; width:90%; max-height:90vh; overflow-y:auto; }
.quote-modal__title { font-size:1.25rem; font-weight:600; margin-bottom:.5rem; color:#fff; }
.quote-modal__desc { font-size:.9rem; color:rgba(255,255,255,.6); margin-bottom:1.25rem; line-height:1.5; }
.quote-modal__field { margin-bottom:1rem; }
.quote-modal__label { display:block; font-size:.85rem; font-weight:500; margin-bottom:.35rem; color:rgba(255,255,255,.7); }
.quote-modal__input { width:100%; padding:.6rem .75rem; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.15); border-radius:6px; color:#fff; font-size:.9rem; box-sizing:border-box; }
.quote-modal__input:focus { outline:none; border-color:rgba(59,130,246,.5); }
.quote-modal__textarea { resize:vertical; min-height:60px; font-family:inherit; }
.quote-modal__actions { display:flex; gap:.75rem; margin-top:1.25rem; }
.quote-modal__status { margin-top:.75rem; font-size:.85rem; }
.quote-modal__status--error { color:#ef4444; }
.quote-modal__success { text-align:center; }

/* ── Quote Status Page ── */
.quote-status-card { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:12px; padding:2rem; }
.quote-status-card__header { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:.75rem; margin-bottom:1rem; }
.quote-status-card__customer { font-size:1rem; color:rgba(255,255,255,.7); }
.quote-status-badge { display:inline-block; padding:.25rem .75rem; border-radius:4px; font-size:.8rem; font-weight:500; }
.quote-status-badge--draft { background:rgba(156,163,175,.15); color:#9ca3af; }
.quote-status-badge--submitted { background:rgba(59,130,246,.15); color:#60a5fa; }
.quote-status-badge--staff_reviewing { background:rgba(234,179,8,.15); color:#fbbf24; }
.quote-status-badge--awaiting_customer { background:rgba(168,85,247,.15); color:#c084fc; }
.quote-status-badge--approved { background:rgba(34,197,94,.15); color:#4ade80; }
.quote-status-badge--ready_for_pickup { background:rgba(34,197,94,.2); color:#22c55e; }
.quote-status-badge--completed { background:rgba(34,197,94,.1); color:#16a34a; }
.quote-status-badge--expired { background:rgba(156,163,175,.1); color:#6b7280; }
.quote-status-badge--cancelled { background:rgba(239,68,68,.1); color:#ef4444; }
.quote-status-card__notes { background:rgba(234,179,8,.08); border:1px solid rgba(234,179,8,.2); border-radius:8px; padding:1rem; margin:1rem 0; font-size:.9rem; line-height:1.5; color:#fbbf24; }
.quote-items-list { display:flex; flex-direction:column; gap:.5rem; }
.quote-item { display:flex; justify-content:space-between; align-items:center; padding:.75rem; background:rgba(255,255,255,.03); border-radius:6px; gap:1rem; }
.quote-item__info { display:flex; flex-direction:column; gap:.15rem; }
.quote-item__name { font-weight:500; color:#fff; }
.quote-item__option, .quote-item__sku { font-size:.8rem; color:rgba(255,255,255,.5); }
.quote-item__pricing { display:flex; align-items:center; gap:1rem; font-size:.9rem; color:rgba(255,255,255,.6); white-space:nowrap; }
.quote-item__total { font-weight:600; color:#fff; }

/* ══════════════════════════════════════════════════════════════
   Category Rail – compact horizontal navigator
   ══════════════════════════════════════════════════════════════ */
.category-rail {
  padding: 1rem 0;
}

.category-rail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.category-rail__title {
  font-family: var(--ff-heading, sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text-secondary, #6b7280);
  margin: 0;
}

.category-rail__controls {
  display: flex;
  gap: 0.35rem;
}

.category-rail__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid #d1d5db;
  border-radius: 50%;
  background: var(--clr-neutral-100, #fff);
  color: var(--clr-neutral-900, #1b1b1b);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

.category-rail__arrow:hover:not(:disabled) {
  border-color: var(--clr-neutral-900, #1b1b1b);
  background: #f3f4f6;
}

.category-rail__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Viewport – horizontal scroll container */
.category-rail__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.category-rail__viewport::-webkit-scrollbar {
  display: none;
}

/* List */
.category-rail__list {
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem 0;
  margin: 0;
  list-style: none;
}

/* Each item */
.category-rail__item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Pill – the clickable element */
.category-rail__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--ff-body, sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-neutral-900, #1b1b1b);
  background: var(--clr-neutral-100, #fff);
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.category-rail__pill:hover {
  border-color: var(--clr-accent-400, #f59e0b);
  color: var(--clr-accent-500, #d97706);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* Count badge */
.category-rail__count {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--clr-text-secondary, #6b7280);
  background: #f3f4f6;
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  min-width: 1.25rem;
  text-align: center;
  line-height: 1.4;
}

/* ── Active state ── */
.category-rail__item.is-active .category-rail__pill {
  background: var(--clr-accent-400, #f59e0b);
  border-color: var(--clr-accent-400, #f59e0b);
  color: var(--clr-neutral-900, #1b1b1b);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.category-rail__item.is-active .category-rail__count {
  background: rgba(0, 0, 0, 0.12);
  color: var(--clr-neutral-900, #1b1b1b);
}

/* ── Disabled state ── */
.category-rail__item.is-disabled .category-rail__pill {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(1);
  background: #f9fafb;
  border-color: #e5e7eb;
  color: #9ca3af;
}

.category-rail__item.is-disabled .category-rail__count {
  background: #e5e7eb;
  color: #9ca3af;
}

.category-rail__item.is-disabled .category-rail__unavailable {
  font-size: 0.625rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Shop index: compact hero replacement ── */
.shop-hero--compact {
  padding: 2rem 0 0.5rem;
}

.shop-hero--compact .shop-hero__title {
  font-size: 1.5rem;
}

/* ── Mobile adjustments ── */
@media (max-width: 50em) {
  .category-rail__controls {
    display: none;
  }

  .category-rail__pill {
    font-size: 0.75rem;
    padding: 0.45rem 0.85rem;
  }

  .category-rail__count {
    font-size: 0.625rem;
    padding: 0.05rem 0.35rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .category-rail__viewport {
    scroll-behavior: auto !important;
  }

  .category-rail__item,
  .category-rail__pill,
  .category-rail__arrow {
    animation: none !important;
    transition: none !important;
  }
}