:root {
  --bg: #eef8f7;
  --surface: #f8fffe;
  --surface-strong: #ffffff;
  --text: #07272d;
  --muted: #53757b;
  --line: rgba(7, 39, 45, 0.12);
  --brand: #16c8ba;
  --brand-dark: #0f979b;
  --accent: #118d95;
  --dark: #03181c;
  --shadow: 0 20px 60px rgba(3, 24, 28, 0.08);
  --nav-panel-width: 20.5rem;
  --nav-panel-radius: 1.05rem;
  --nav-panel-shadow: 0 20px 48px rgba(3, 24, 28, 0.14);
  --nav-panel-border: 1px solid rgba(7, 39, 45, 0.1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(22, 200, 186, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(17, 141, 149, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #f4fffd 0%, #edf7f6 100%);
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.promo-banner {
  background: var(--dark);
  color: #fdf7ef;
  font-size: 0.95rem;
}
.promo-banner__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}
.promo-banner a {
  color: #7ff5ec;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.brand__logo {
  display: block;
  width: auto;
  height: 4.4rem;
  max-width: min(18rem, 42vw);
  object-fit: contain;
}

.nav__toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.86);
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  flex-direction: column;
  cursor: pointer;
}

.nav__mobile-input {
  display: none;
}

.nav__overlay,
.nav__menu-header {
  display: none;
}

.nav__toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.nav__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.nav__menu a {
  font-weight: 600;
}
.nav__account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(7, 39, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(3, 24, 28, 0.06);
}
.nav__shop-link {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: var(--text);
  color: white;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav__dropdown-toggle::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.1rem);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 0;
  z-index: 30;
  min-width: var(--nav-panel-width);
  padding: 0.7rem;
  border: var(--nav-panel-border);
  border-radius: var(--nav-panel-radius);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: var(--nav-panel-shadow);
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.9rem) scale(0.985);
  transform-origin: top left;
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 220ms;
  will-change: opacity, transform;
}

.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

@media (min-width: 961px) {
  .nav__dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 1rem;
  }

  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav__dropdown-menu {
    width: var(--nav-panel-width);
  }

  .nav__dropdown-group {
    position: relative;
    width: 100%;
  }

  .nav__dropdown-group + .nav__dropdown-group {
    margin-top: 0.2rem;
  }

  .nav__dropdown-group::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 0.95rem;
    height: 100%;
  }

  .nav__submenu-toggle {
    padding: 0.78rem 0.85rem;
    border-radius: 0.8rem;
    font-size: 0.97rem;
    line-height: 1.2;
    transition:
      background 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }

  .nav__submenu-toggle::after {
    width: 0.46rem;
    height: 0.46rem;
    margin-left: 0.28rem;
  }

  .nav__submenu-toggle:hover,
  .nav__dropdown-group:hover > .nav__submenu-toggle,
  .nav__dropdown-group:focus-within > .nav__submenu-toggle,
  .nav__dropdown-group.is-open > .nav__submenu-toggle {
    background: rgba(17, 141, 149, 0.08);
    color: var(--accent);
  }

  .nav__submenu-panel {
    position: absolute;
    top: 0;
    left: calc(100% + 0.12rem);
    width: var(--nav-panel-width);
    margin-top: 0;
    padding: 0.7rem;
    border: var(--nav-panel-border);
    border-radius: var(--nav-panel-radius);
    background: rgba(255, 255, 255, 0.985);
    box-shadow: var(--nav-panel-shadow);
    max-height: none;
    opacity: 0;
    visibility: hidden;
    overflow: visible;
    pointer-events: none;
    transform: translateX(0.72rem) scale(0.985);
    transition:
      opacity 220ms ease,
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 220ms;
  }

  .nav__dropdown-group:hover > .nav__submenu-panel,
  .nav__dropdown-group:focus-within > .nav__submenu-panel,
  .nav__dropdown-group.is-open > .nav__submenu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    transition-delay: 0s;
  }

  .nav__dropdown-group:hover > .nav__submenu-toggle::after,
  .nav__dropdown-group:focus-within > .nav__submenu-toggle::after,
  .nav__dropdown-group.is-open > .nav__submenu-toggle::after {
    transform: rotate(-45deg) translateY(0.02rem);
  }

  .nav__dropdown-group a {
    padding: 0.72rem 0.78rem;
    border-radius: 0.8rem;
    font-size: 0.97rem;
    line-height: 1.2;
  }

  .nav__dropdown-group a:hover {
    background: rgba(17, 141, 149, 0.08);
  }
}

.nav__dropdown-group {
  display: grid;
  gap: 0.5rem;
}

.nav__dropdown-group > a {
  display: none;
}

.nav__panel-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.78rem 0.85rem;
  border-radius: 0.8rem;
  color: var(--text);
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav__panel-link:hover {
  background: rgba(17, 141, 149, 0.08);
  color: var(--accent);
}

.nav__submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav__submenu-toggle::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.1rem);
}

.nav__submenu-panel {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.7rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height 260ms ease,
    opacity 180ms ease,
    margin-top 200ms ease;
}

.nav__dropdown-group.is-open .nav__submenu-panel {
  max-height: 36rem;
  opacity: 1;
  pointer-events: auto;
}

.nav__dropdown-group.is-open .nav__submenu-toggle::after {
  transform: rotate(-135deg) translateY(-0.05rem);
}

.nav__dropdown-group a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav__dropdown-group a:hover {
  color: var(--accent);
}

.nav__mobile-repairs {
  display: none;
}

.store-switcher {
  display: grid;
  gap: 0.35rem;
}

.store-switcher__top strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.18rem 0.2rem 0.4rem;
}

.store-switcher__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.store-switcher--repairs .store-switcher__grid {
  gap: 0.35rem;
}

.store-switcher--repairs .nav__dropdown-group {
  gap: 0;
}

.store-switcher--repairs .nav__submenu-toggle {
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.82rem 0.9rem;
  border-radius: 0.8rem;
  background: transparent;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav__submenu-copy {
  display: grid;
  gap: 0.18rem;
  text-align: left;
}

.nav__submenu-label {
  display: block;
}

.nav__submenu-meta {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.store-switcher--repairs .nav__submenu-toggle:hover,
.store-switcher--repairs .nav__dropdown-group:hover > .nav__submenu-toggle,
.store-switcher--repairs
  .nav__dropdown-group:focus-within
  > .nav__submenu-toggle,
.store-switcher--repairs .nav__dropdown-group.is-open > .nav__submenu-toggle {
  background: rgba(17, 141, 149, 0.08);
  color: var(--accent);
}

.store-switcher--repairs .nav__submenu-toggle::after {
  width: 0.46rem;
  height: 0.46rem;
  margin-left: 0.28rem;
}

.store-switcher__link {
  display: flex;
  align-items: center;
  min-height: 3.1rem;
  padding: 0.82rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  background: transparent;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  text-transform: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.store-switcher__link:hover {
  background: rgba(22, 200, 186, 0.14);
  border-color: rgba(17, 141, 149, 0.16);
  color: var(--accent);
  transform: translateX(2px);
}

.store-switcher__link.is-hidden {
  display: none;
}

.hero,
.inner-page {
  padding: 4rem 0 2rem;
}
.hero--service {
  padding-top: 4.5rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.home-banner {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 0 2rem;
  background: linear-gradient(180deg, #fffce8 0%, #fff4a6 100%);
  color: #fff;
}

.home-banner__shell {
  position: relative;
}

.home-banner__slides {
  position: relative;
  min-height: clamp(14rem, 38vw, 24rem);
}

.home-banner__slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateX(1.5%);
  transition:
    opacity 420ms ease,
    transform 540ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 420ms;
}

.home-banner__slide--flat {
  display: block;
}

.home-banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.home-banner__flat-link {
  display: block;
  overflow: hidden;
  border: 2px solid rgba(7, 39, 45, 0.18);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 18px 44px rgba(3, 24, 28, 0.12);
}

.home-banner__flat-link img {
  display: block;
  width: 100%;
  height: auto;
}

.home-banner__controls {
  position: relative;
  left: 50%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateX(-50%);
}

.home-banner__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.home-banner__arrow:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.home-banner__dots {
  display: flex;
  gap: 0.4rem;
}

.home-banner__dots button {
  width: 2.65rem;
  height: 0.42rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 39, 45, 0.16);
  cursor: pointer;
  transition: background 180ms ease;
}

.home-banner__dots button.is-active {
  background: var(--accent);
}

.home-section {
  padding-top: 2.2rem;
  padding-bottom: 3.2rem;
}

.home-products-showcase,
.home-repair-showcase,
.home-review-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.home-section__heading {
  max-width: 44rem;
}

.home-shop-grid,
.home-service-grid,
.home-store-grid {
  display: grid;
  gap: 1.2rem;
}

.home-shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.home-products-showcase {
  max-width: 76rem;
  margin: 0 auto;
  text-align: center;
}

.home-products-showcase__header {
  display: flex;
  max-width: 72rem;
  margin: 0 auto 0.65rem;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem 1.1rem;
  flex-wrap: wrap;
  text-align: left;
}

.home-products-showcase__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(22, 200, 186, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.home-products-showcase__header h2 {
  flex: 0 0 auto;
  max-width: none;
  margin: 0;
  text-align: left;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.home-products-showcase__header p {
  flex: 1 1 22rem;
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.home-products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.home-products-toolbar__note {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.home-products-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-products-toolbar__arrow {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(7, 39, 45, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    opacity 160ms ease;
}

.home-products-toolbar__arrow:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(22, 200, 186, 0.35);
  background: rgba(22, 200, 186, 0.08);
}

.home-products-toolbar__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.home-products-toolbar__viewall {
  color: var(--text);
  font-weight: 700;
}

.home-products-carousel {
  position: relative;
}

.home-products-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.55rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(7, 39, 45, 0.2) transparent;
}

.home-products-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3rem) / 4);
  gap: 0.95rem;
  align-items: stretch;
}

.home-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.45rem;
  align-content: stretch;
  min-height: 0;
  padding: 0.62rem;
  border: 1px solid rgba(7, 39, 45, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 32px rgba(3, 24, 28, 0.06);
  text-align: left;
  scroll-snap-align: start;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.home-product-card:hover,
.home-product-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 200, 186, 0.32);
  box-shadow: 0 16px 34px rgba(3, 24, 28, 0.1);
}

.home-product-card--loading {
  grid-template-columns: 1fr;
}

.home-product-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.home-product-card__deal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.6rem;
  padding: 0 0.58rem;
  border-radius: 0.45rem;
  background: rgba(22, 200, 186, 0.12);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-product-card__deal-badge.is-sale {
  background: #e3342f;
  color: #fff;
}

.home-product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(7.2rem, 11vw, 9.1rem);
  overflow: hidden;
  border-radius: 0.72rem;
  background: linear-gradient(180deg, #f8fcfd 0%, #eef7f8 100%);
}

.home-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-product-card__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(7, 39, 45, 0.42);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-product-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  font-size: 2.2rem;
}

.home-product-card__content {
  display: grid;
  grid-template-rows: minmax(2.35rem, auto) auto 1fr;
  gap: 0.42rem;
  height: 100%;
}

.home-product-card__eyebrow {
  color: rgba(7, 39, 45, 0.68);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-product-card__row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.home-product-card__brand {
  color: rgba(7, 39, 45, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.home-product-card__title-link {
  color: inherit;
}

.home-product-card h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-product-card__summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.84rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-product-card__variants,
.storefront-card__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.home-product-card__variant,
.storefront-card__variant,
.storefront-pdp__variant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.7rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 39, 45, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
}

.home-product-card__variant.is-active,
.storefront-card__variant.is-active,
.storefront-pdp__variant.is-active {
  border-color: rgba(22, 200, 186, 0.35);
  background: rgba(22, 200, 186, 0.12);
  color: var(--accent);
}

.home-product-card__price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.home-product-card strong {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  line-height: 1;
}

.home-product-card__compare {
  color: rgba(7, 39, 45, 0.42);
  font-size: 0.82rem;
  text-decoration: line-through;
}

.home-product-card__saving {
  margin: 0;
  color: #c9322c;
  font-size: 0.8rem;
  font-weight: 700;
}

.home-product-card__saving.is-muted {
  color: rgba(7, 39, 45, 0.54);
}

.home-product-card__actions {
  display: flex;
  align-items: center;
  margin-top: 0.1rem;
  align-self: end;
}

.home-product-card__cart-button {
  min-height: 2.25rem;
  border-radius: 0.62rem;
  font-weight: 700;
  font-size: 0.78rem;
}

.home-product-card__cart-button {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  cursor: pointer;
}

.home-product-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.5rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: rgba(22, 200, 186, 0.12);
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
}

.home-products-showcase__cta {
  margin-top: 1.3rem;
  text-align: center;
}

.home-products-showcase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.15rem;
  padding: 0 1.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 28px rgba(15, 151, 155, 0.22);
}

.home-products-showcase__cta p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.home-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.home-store-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2rem;
}

.home-shop-card,
.home-service-card,
.home-store-card,
.home-review-card,
.home-review-score {
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.home-shop-card,
.home-service-card,
.home-store-card,
.home-review-card {
  padding: 1.35rem;
}

.home-shop-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.72rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(17, 141, 149, 0.1);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-shop-card h3,
.home-service-card h3,
.home-store-card h3,
.home-review-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.12rem;
}

.home-shop-card p,
.home-service-card p,
.home-store-card p,
.home-review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5rem;
  min-height: 2rem;
  padding: 0 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(22, 200, 186, 0.16),
    rgba(17, 141, 149, 0.14)
  );
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-store-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.home-store-card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
}

.home-section__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.home-review-summary {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

.home-review-score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #05333b, #0b5f62);
  color: #fff;
}

.home-review-score__label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-review-score strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 4.6rem);
  line-height: 1;
}

.home-review-score p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.home-review-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-review-card__stars {
  margin-bottom: 0.9rem;
  color: #f5b100;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.home-repair-showcase {
  background: linear-gradient(180deg, #f7fbfd 0%, #f0f6f8 100%);
}

.home-repair-showcase__header {
  max-width: 56rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.home-repair-showcase__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.9rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: rgba(22, 200, 186, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.home-repair-showcase__header h2 {
  max-width: 14ch;
  margin: 0 auto 1rem;
  text-align: center;
}

.home-repair-showcase__header p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.home-repair-categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 4.5rem;
}

.home-repair-category-card {
  padding: 1.65rem 1.2rem;
  text-align: center;
  border: 1px solid rgba(7, 39, 45, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(3, 24, 28, 0.06);
}

.home-repair-category-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.home-repair-category-card__icon svg {
  width: 2.3rem;
  height: 2.3rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-repair-category-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.08rem;
}

.home-repair-category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-repair-showcase__stores-title {
  margin-bottom: 1.8rem;
  text-align: center;
}

.home-repair-showcase__stores-title h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.home-repair-store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.home-repair-store-card {
  overflow: hidden;
  border: 1px solid rgba(7, 39, 45, 0.1);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(3, 24, 28, 0.08);
}

.home-repair-store-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.1rem;
  color: #fff;
}

.home-repair-store-card__top h4 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

.home-repair-store-card__top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.home-repair-store-card__top--blue {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.home-repair-store-card__top--indigo {
  background: linear-gradient(135deg, #13bcb2, #0f8f9d);
}

.home-repair-store-card__top--purple {
  background: linear-gradient(135deg, #19d6c2, #118d95);
}

.home-repair-store-card__top--teal {
  background: linear-gradient(135deg, #0f979b, #0b6d74);
}

.home-repair-store-card__top--cyan {
  background: linear-gradient(135deg, #25cfc2, #12949b);
}

.home-repair-store-card__rating {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffe26f;
  font-size: 0.95rem;
  font-weight: 700;
}

.home-repair-store-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.25rem;
}

.home-repair-store-card__body p {
  display: flex;
  gap: 0.55rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.home-repair-store-card__body span[aria-hidden="true"] {
  color: var(--accent);
  font-size: 0.95rem;
}

.home-repair-store-card__body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  margin-top: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
}

.home-repair-store-card__body a.home-repair-store-card__inline-link {
  display: inline-flex;
  justify-content: flex-start;
  min-height: 0;
  margin-top: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
}

.home-repair-store-card__body a.home-repair-store-card__inline-link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  max-width: 12ch;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
}

.hero__lead,
.section-heading p:last-child,
.store-card p,
.product-card p,
.cta p,
.inner-page p,
.policy-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero__actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.button--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  box-shadow: 0 14px 34px rgba(17, 141, 149, 0.26);
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(22, 200, 186, 0.22),
    0 14px 34px rgba(17, 141, 149, 0.26);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.button--primary:hover {
  background: linear-gradient(135deg, #1ed9c9, #0d8a8f);
  box-shadow: 0 18px 40px rgba(17, 141, 149, 0.32);
}

.button--primary:active {
  box-shadow: 0 8px 20px rgba(17, 141, 149, 0.22);
}

.button--secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.hero__stats li {
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero__stats strong {
  display: block;
  font-size: 1.35rem;
}
.hero__visual {
  display: grid;
  gap: 1rem;
}
.hero__visual--split {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.repairs-hero-panel {
  display: grid;
  gap: 1rem;
}

.repair-spotlight {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.repair-spotlight__icon {
  height: 5rem;
  border-radius: 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(22, 200, 186, 0.2),
    rgba(17, 141, 149, 0.18)
  );
  position: relative;
}

.repair-spotlight__icon::before,
.repair-spotlight__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}

.repair-spotlight--phone .repair-spotlight__icon::before {
  width: 2rem;
  height: 3.2rem;
  border-radius: 0.5rem;
  border: 3px solid var(--text);
}

.repair-spotlight--computer .repair-spotlight__icon::before {
  width: 3rem;
  height: 2rem;
  border-radius: 0.35rem;
  border: 3px solid var(--text);
  top: 1rem;
}

.repair-spotlight--computer .repair-spotlight__icon::after {
  width: 2rem;
  height: 0.3rem;
  background: var(--text);
  top: 3.8rem;
}

.repair-spotlight--console .repair-spotlight__icon::before {
  width: 3.2rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 3px solid var(--text);
}

.repair-spotlight span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.repair-spotlight strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.repair-spotlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-card,
.category-tile,
.product-card,
.store-card,
.policy-card,
.store-details article,
.landing-card,
.service-card,
.info-card,
.device-card,
.issue-card,
.brand-panel,
.trust-card {
  padding: 1.4rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  min-height: 10rem;
}
.hero-card span,
.product-card__badge,
.category-tile span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 141, 149, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-card--accent {
  background: linear-gradient(
    135deg,
    rgba(22, 200, 186, 0.96),
    rgba(15, 151, 155, 0.92)
  );
  color: white;
}
.hero-card--dark {
  background: linear-gradient(
    135deg,
    rgba(3, 24, 28, 0.98),
    rgba(17, 141, 149, 0.94)
  );
  color: white;
}
.hero-card--accent span,
.hero-card--dark span {
  color: inherit;
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: 4.5rem 0;
}
.section--muted {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--line);
}
.section-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.section-heading--split {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.category-grid,
.product-grid,
.store-grid,
.policy-grid,
.landing-grid,
.service-grid,
.info-grid,
.device-grid,
.issue-grid,
.brand-showcase,
.trust-grid {
  display: grid;
  gap: 1rem;
}
.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.store-grid,
.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.landing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-grid--simple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.device-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.issue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.brand-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-tile h3,
.product-card h3,
.store-card h3,
.landing-card h3,
.service-card h3,
.info-card h2,
.device-card h3,
.issue-card h3,
.brand-panel h3,
.trust-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--text);
  color: white;
}
.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.product-card a,
.store-card a,
.landing-card a {
  color: var(--brand-dark);
  font-weight: 700;
}
.product-card.is-hidden {
  display: none;
}

.store-locator-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 3rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(5, 206, 172, 0.22),
      transparent 34rem
    ),
    linear-gradient(
      135deg,
      rgba(241, 255, 252, 0.96),
      rgba(255, 255, 255, 0.94)
    );
  border-bottom: 1px solid var(--line);
}

.store-locator-hero__inner {
  max-width: 58rem;
}

.store-locator-hero h1 {
  max-width: 12ch;
  margin: 0 0 1rem;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.store-locator-hero p:last-child {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.store-locator {
  display: grid;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.7fr);
  gap: 1.25rem;
  align-items: stretch;
}

.store-locator__panel,
.store-locator__map-shell {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.store-locator__panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.1rem;
}

.store-locator__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.store-locator__panel-head h2,
.store-locator__map-toolbar h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}

.store-locator__panel-head span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(5, 206, 172, 0.14);
  color: var(--brand-dark);
  font-weight: 800;
  white-space: nowrap;
}

.store-locator__search {
  display: grid;
  gap: 0.45rem;
}

.store-locator__search span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-locator__search input {
  width: 100%;
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.store-locator__search input:focus-visible {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(5, 206, 172, 0.16);
}

.store-locator__list {
  display: grid;
  gap: 0.7rem;
  max-height: 38rem;
  overflow: auto;
  padding-right: 0.25rem;
}

.store-locator__card {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(7, 39, 45, 0.1);
  border-radius: 1.1rem;
  background: rgba(247, 252, 251, 0.82);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.store-locator__card:hover,
.store-locator__card.is-active {
  border-color: rgba(5, 206, 172, 0.78);
  background: rgba(5, 206, 172, 0.1);
}

.store-locator__card:hover {
  transform: translateY(-1px);
}

.store-locator__card strong {
  font-size: 1.08rem;
}

.store-locator__card span {
  color: var(--muted);
  line-height: 1.55;
}

.store-locator__card small {
  color: var(--brand-dark);
  font-weight: 800;
}

.store-locator__map-shell {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.store-locator__map-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
}

.store-locator__map-toolbar p:last-child {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.store-locator__map-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.store-locator__map-actions .button {
  min-height: 2.8rem;
  padding: 0 1rem;
  white-space: nowrap;
}

.store-locator__map {
  min-height: 34rem;
  flex: 1;
  border-top: 1px solid var(--line);
  background: rgba(5, 206, 172, 0.08);
}

.store-locator__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 34rem;
  border: 0;
}

@media (max-width: 900px) {
  .store-locator {
    grid-template-columns: 1fr;
  }

  .store-locator__map-toolbar {
    flex-direction: column;
  }

  .store-locator__map-actions {
    justify-content: flex-start;
  }

  .store-locator__list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .store-locator__map,
  .store-locator__map iframe {
    min-height: 26rem;
  }
}

@media (max-width: 560px) {
  .store-locator-hero {
    padding-top: 2.3rem;
  }

  .store-locator-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .store-locator__panel,
  .store-locator__map-shell {
    border-radius: 1.15rem;
  }

  .store-locator__panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-locator__map-actions,
  .store-locator__map-actions .button {
    width: 100%;
  }

  .store-locator__map-actions .button {
    justify-content: center;
  }

  .store-locator__map,
  .store-locator__map iframe {
    min-height: 22rem;
  }
}

.button--ghost {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.storefront-page {
  padding-bottom: 4.5rem;
}

.storefront-hero {
  padding: 3.25rem 0 2rem;
}

.storefront-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.75fr);
  gap: 1.35rem;
  align-items: stretch;
}

.storefront-hero__content,
.storefront-hero__panel,
.storefront-sidebar__panel,
.storefront-card,
.storefront-feature-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
}

.storefront-hero__content {
  padding: 2rem;
  background:
    radial-gradient(
      circle at top right,
      rgba(22, 200, 186, 0.16),
      transparent 30%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 255, 253, 0.9));
}

.storefront-hero__content h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
}

.storefront-hero__lead {
  max-width: 60ch;
}

.storefront-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.storefront-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.storefront-hero__notes span,
.storefront-card__pill,
.storefront-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.storefront-hero__notes span,
.storefront-card__pill {
  background: rgba(22, 200, 186, 0.12);
  color: var(--accent);
}

.storefront-card__tag {
  background: rgba(7, 39, 45, 0.08);
  color: var(--text);
}

.storefront-hero__panel {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.storefront-hero__stat {
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.2rem;
  background: linear-gradient(
    180deg,
    rgba(7, 39, 45, 0.04),
    rgba(22, 200, 186, 0.05)
  );
  border: 1px solid rgba(7, 39, 45, 0.06);
}

.storefront-hero__stat span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.storefront-hero__stat strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.storefront-hero__stat p,
.storefront-feature-card p,
.storefront-sidebar__panel p,
.storefront-card p {
  margin: 0;
  color: var(--muted);
}

.storefront-feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.storefront-feature-card {
  padding: 1.35rem;
}

.storefront-feature-card span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.storefront-feature-card h2 {
  max-width: none;
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

.storefront-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 18rem) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.storefront-sidebar {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.storefront-sidebar__panel {
  padding: 1.3rem;
}

.storefront-sidebar__panel h2,
.storefront-sidebar__panel h3 {
  margin-bottom: 0.7rem;
}

.storefront-category-list {
  display: grid;
  gap: 0.55rem;
}

.storefront-category-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.9rem;
  padding: 0 0.95rem;
  border-radius: 0.95rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.storefront-category-button:hover,
.storefront-category-button.is-active {
  border-color: rgba(17, 141, 149, 0.3);
  background: rgba(22, 200, 186, 0.12);
  transform: translateY(-1px);
}

.storefront-content {
  display: grid;
  gap: 1rem;
}

.storefront-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.storefront-toolbar h2 {
  max-width: none;
  margin-bottom: 0;
}

.storefront-search {
  display: grid;
  gap: 0.45rem;
  min-width: min(100%, 22rem);
}

.storefront-search__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.storefront-search input {
  width: 100%;
  min-height: 3.15rem;
  padding: 0 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
}

.storefront-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  color: var(--muted);
}

.storefront-meta p {
  margin: 0;
}

.storefront-meta a {
  color: var(--brand-dark);
  font-weight: 700;
}

.storefront-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.storefront-grid--dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.storefront-card {
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.storefront-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 141, 149, 0.22);
  box-shadow: 0 22px 40px rgba(3, 24, 28, 0.1);
}

.storefront-card__media-link,
.storefront-card__title-link {
  color: inherit;
}

.storefront-card__media {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(
      circle at top left,
      rgba(22, 200, 186, 0.15),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95),
      rgba(239, 248, 247, 0.85)
    );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}

.storefront-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.storefront-card__image--placeholder {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  color: var(--accent);
}

.storefront-card__body {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.storefront-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.storefront-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.storefront-card__title-link:hover h3 {
  color: var(--accent);
}

.storefront-card__price-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.storefront-card__price-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.95rem;
  line-height: 1;
  color: var(--accent);
  order: 2;
}

.storefront-card__compare {
  color: #8ca5aa;
  text-decoration: line-through;
  font-weight: 700;
  font-size: 1rem;
  order: 1;
}

.storefront-card__saving {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(255, 92, 92, 0.12);
  color: #d64545;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  order: 3;
}

.storefront-card__pill--link:hover {
  background: rgba(22, 200, 186, 0.2);
}

.storefront-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.storefront-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(7, 39, 45, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.storefront-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.storefront-card__actions a {
  color: var(--brand-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(22, 200, 186, 0.12);
}

.storefront-card__actions a:hover {
  background: rgba(22, 200, 186, 0.18);
}

.storefront-card--loading,
.storefront-card--empty {
  grid-column: 1 / -1;
}

.storefront-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.storefront-breadcrumbs a:hover {
  color: var(--accent);
}

.storefront-category-hero {
  padding-bottom: 1rem;
}

.storefront-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.storefront-category-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.storefront-category-link.is-active,
.storefront-category-link:hover {
  background: rgba(22, 200, 186, 0.12);
  border-color: rgba(17, 141, 149, 0.25);
}

.storefront-category-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.storefront-category-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.storefront-search--inline {
  min-width: min(100%, 24rem);
}

.storefront-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 30rem);
  gap: 1.4rem;
  align-items: start;
}

.storefront-detail__gallery,
.storefront-detail__summary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  box-shadow: var(--shadow);
}

.storefront-detail__gallery {
  padding: 1.15rem;
}

.storefront-detail__image-frame {
  aspect-ratio: 1 / 1;
  border-radius: 1.15rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(22, 200, 186, 0.15),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95),
      rgba(239, 248, 247, 0.85)
    );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.storefront-detail__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.storefront-detail__summary {
  padding: 1.45rem;
}

.storefront-detail__category {
  margin-bottom: 0.8rem;
}

.storefront-detail__category a {
  color: var(--accent);
  font-weight: 700;
}

.storefront-detail__description {
  color: var(--muted);
  line-height: 1.75;
}

.storefront-detail__price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 0.7rem;
}

.storefront-detail__price-block strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  color: var(--accent);
  line-height: 1;
}

.storefront-detail__compare {
  color: #8ca5aa;
  text-decoration: line-through;
  font-size: 1.05rem;
  font-weight: 700;
}

.storefront-detail__saving {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 92, 92, 0.12);
  color: #d64545;
  font-weight: 800;
}

.storefront-detail__stock {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 600;
}

.storefront-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.storefront-detail__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.storefront-detail__meta-item {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(7, 39, 45, 0.04);
  border: 1px solid rgba(7, 39, 45, 0.06);
}

.storefront-detail__meta-item span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 141, 149, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-card p,
.landing-card p,
.info-card p,
.device-card p,
.issue-card p,
.brand-panel p,
.trust-card p {
  color: var(--muted);
  line-height: 1.7;
}

.device-card__art {
  height: 10rem;
  margin-bottom: 1rem;
  border-radius: 1.2rem;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.8),
      transparent 24%
    ),
    linear-gradient(135deg, rgba(22, 200, 186, 0.22), rgba(17, 141, 149, 0.18));
  position: relative;
  overflow: hidden;
}

.device-card__art::before,
.device-card__art::after {
  content: "";
  position: absolute;
  background: rgba(19, 32, 46, 0.92);
}

.device-card__art--phone::before {
  width: 3rem;
  height: 5.4rem;
  border-radius: 0.7rem;
  inset: 1.6rem auto auto 50%;
  transform: translateX(-50%);
}

.device-card__art--tablet::before {
  width: 5rem;
  height: 6rem;
  border-radius: 0.8rem;
  inset: 1.2rem auto auto 50%;
  transform: translateX(-50%);
}

.device-card__art--desktop::before {
  width: 5.8rem;
  height: 3.8rem;
  border-radius: 0.45rem;
  inset: 2rem auto auto 50%;
  transform: translateX(-50%);
}

.device-card__art--desktop::after {
  width: 2rem;
  height: 0.4rem;
  inset: auto auto 1.6rem 50%;
  transform: translateX(-50%);
}

.device-card__art--laptop::before {
  width: 5.8rem;
  height: 3.6rem;
  border-radius: 0.45rem;
  inset: 1.8rem auto auto 50%;
  transform: translateX(-50%);
}

.device-card__art--laptop::after {
  width: 7rem;
  height: 0.5rem;
  border-radius: 999px;
  inset: auto auto 1.7rem 50%;
  transform: translateX(-50%);
}

.device-card__art--console::before {
  width: 6rem;
  height: 2.4rem;
  border-radius: 999px;
  inset: 3rem auto auto 50%;
  transform: translateX(-50%);
}

.device-card__art--wearable::before {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.1rem;
  inset: 2.5rem auto auto 50%;
  transform: translateX(-50%) rotate(12deg);
}

.brand-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.trust-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.section--cta {
  color: white;
}
.cta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 2rem;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.15),
      transparent 24%
    ),
    linear-gradient(135deg, var(--accent), var(--dark));
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  background: rgba(3, 24, 28, 0.98);
  color: rgba(255, 255, 255, 0.84);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.5rem;
}
.footer--rich {
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.1fr;
  align-items: start;
}

.footer--bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 1.25rem;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand__logo {
  display: block;
  width: auto;
  height: 4rem;
  margin-bottom: 1rem;
}

.footer h4 {
  margin-bottom: 0.8rem;
}
.footer a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.repair-category-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.repair-category-card {
  padding: 1.5rem;
  border-radius: 1.6rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

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

.repair-category-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1.1rem;
  background: linear-gradient(
    135deg,
    rgba(22, 200, 186, 0.2),
    rgba(17, 141, 149, 0.18)
  );
  position: relative;
  flex-shrink: 0;
}

.repair-category-card__icon::before,
.repair-category-card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(7, 39, 45, 0.92);
}

.repair-category-card__icon--svg {
  display: grid;
  place-items: center;
  color: var(--brand-dark);
}

.repair-category-card__icon--svg::before,
.repair-category-card__icon--svg::after {
  display: none;
}

.repair-category-card__icon--svg svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.repair-category-card__icon--phone::before {
  width: 1.35rem;
  height: 2.5rem;
  border-radius: 0.35rem;
}

.repair-category-card__icon--tablet::before {
  width: 2rem;
  height: 2.6rem;
  border-radius: 0.4rem;
}

.repair-category-card__icon--computer::before {
  width: 2.3rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  top: 0.7rem;
}

.repair-category-card__icon--computer::after {
  width: 1rem;
  height: 0.24rem;
  top: 2.2rem;
}

.repair-category-card__icon--console::before {
  width: 2.3rem;
  height: 1.4rem;
  border-radius: 999px;
}

.repair-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.repair-link-card {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(17, 141, 149, 0.08);
  border: 1px solid rgba(17, 141, 149, 0.12);
  font-weight: 700;
  color: var(--text);
}

.repair-detail-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.repair-detail-panel {
  padding: 1.6rem;
  border-radius: 1.6rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.repair-detail-panel--brands {
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(5, 206, 172, 0.18),
      transparent 18rem
    ),
    rgba(255, 255, 255, 0.88);
}

.repair-brand-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  min-height: 16rem;
  padding: 0.25rem;
}

.repair-brand-wall__item {
  display: grid;
  place-items: center;
  min-height: 6.75rem;
  padding: 1.05rem;
  border: 1px solid rgba(7, 39, 45, 0.08);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(7, 39, 45, 0.07);
}

.repair-brand-wall__item img {
  display: block;
  max-width: 100%;
  max-height: 3.4rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.repair-detail-panel__icon {
  width: 100%;
  min-height: 16rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(
      circle at 24% 20%,
      rgba(255, 255, 255, 0.88),
      transparent 18%
    ),
    linear-gradient(135deg, rgba(22, 200, 186, 0.22), rgba(17, 141, 149, 0.18));
  position: relative;
  overflow: hidden;
}

.repair-detail-panel__icon::before,
.repair-detail-panel__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(7, 39, 45, 0.94);
}

.vector-phone::before {
  width: 4rem;
  height: 7rem;
  border-radius: 0.9rem;
}

.vector-tablet::before {
  width: 5.5rem;
  height: 7rem;
  border-radius: 0.9rem;
}

.vector-laptop::before {
  width: 7rem;
  height: 4.4rem;
  border-radius: 0.55rem;
  top: 4rem;
}

.vector-laptop::after {
  width: 8.5rem;
  height: 0.55rem;
  border-radius: 999px;
  top: 9rem;
}

.vector-desktop::before {
  width: 7rem;
  height: 4.5rem;
  border-radius: 0.45rem;
  top: 4rem;
}

.vector-desktop::after {
  width: 2rem;
  height: 0.45rem;
  border-radius: 999px;
  top: 9rem;
}

.vector-smallpc::before {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1rem;
}

.vector-console::before {
  width: 7rem;
  height: 3rem;
  border-radius: 999px;
}

.repair-brand-card,
.repair-device-card {
  min-height: 16rem;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 52, 60, 0.08);
  background:
    radial-gradient(
      circle at 18% 16%,
      rgba(255, 255, 255, 0.92),
      transparent 20%
    ),
    linear-gradient(140deg, rgba(22, 200, 186, 0.16), rgba(9, 102, 115, 0.12));
}

.repair-brand-card::after,
.repair-device-card::after {
  content: "";
  position: absolute;
  inset: auto -2.5rem -3rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.repair-brand-card__mark,
.repair-device-card__icon {
  width: 4.9rem;
  height: 4.9rem;
  border-radius: 1.2rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(10, 79, 88, 0.14);
}

.repair-brand-card__mark {
  padding: 0.55rem;
}

.repair-brand-card__mark--fallback {
  font:
    700 1.35rem/1 "Space Grotesk",
    sans-serif;
  letter-spacing: 0.04em;
  color: #07272d;
}

.repair-brand-card__logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.repair-brand-card__logo--google {
  width: 100%;
}

.repair-brand-card__logo--apple,
.repair-brand-card__logo--xiaomi,
.repair-brand-card__logo--xbox,
.repair-brand-card__logo--nintendo,
.repair-brand-card__logo--oppo {
  width: 100%;
  height: 100%;
}

.repair-brand-card__copy,
.repair-device-card__copy {
  display: grid;
  gap: 0.35rem;
  max-width: 14rem;
}

.repair-brand-card__copy strong,
.repair-device-card__copy strong {
  color: var(--brand-dark);
  font-size: 1.32rem;
  line-height: 1.1;
}

.repair-brand-card__copy span,
.repair-device-card__copy span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.repair-device-card__icon svg {
  width: 2.75rem;
  height: 2.75rem;
}

.repair-device-card--pc-tower .repair-device-card__icon,
.repair-device-card--all-in-one .repair-device-card__icon,
.repair-device-card--laptop .repair-device-card__icon,
.repair-device-card--small-pc .repair-device-card__icon {
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-dark);
}

.repair-content-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inner-page__hero,
.store-hero {
  padding-bottom: 3rem;
}
.section--tight {
  padding-top: 0;
}
.policy-grid,
.store-details {
  margin-top: 2rem;
}
.store-details {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.store-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.store-contact-list {
  display: grid;
  gap: 0.85rem;
}

.store-contact-list p {
  display: flex;
  gap: 0.6rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.store-contact-list span[aria-hidden="true"] {
  color: var(--accent);
  font-size: 1rem;
}

.store-contact-list a {
  color: var(--brand-dark);
  font-weight: 700;
}

.store-contact-list a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .hero__grid,
  .section-heading--split,
  .cta,
  .footer,
  .category-grid,
  .product-grid,
  .store-grid,
  .policy-grid,
  .store-details,
  .landing-grid,
  .service-grid,
  .info-grid,
  .device-grid,
  .issue-grid,
  .brand-showcase,
  .trust-grid,
  .repair-category-grid,
  .repair-detail-hero,
  .repair-content-grid,
  .home-banner__inner,
  .home-shop-grid,
  .home-service-grid,
  .home-store-grid,
  .home-review-summary,
  .home-review-highlights,
  .home-repair-categories,
  .home-repair-store-grid {
    grid-template-columns: 1fr;
  }

  .home-banner__slides {
    min-height: clamp(12rem, 38vw, 20rem);
  }

  .home-banner__controls {
    justify-content: center;
  }

  .home-review-score {
    padding: 1.5rem;
  }

  .home-service-grid,
  .home-store-grid {
    margin-top: 1.4rem;
  }

  .home-repair-categories,
  .home-repair-store-grid {
    gap: 1rem;
  }

  .home-products-grid {
    grid-auto-columns: calc((100% - 1rem) / 2);
    gap: 0.85rem;
  }

  .home-product-card {
    min-height: 0;
    padding: 0.65rem;
    border-radius: 0.9rem;
  }

  .home-product-card__media {
    height: clamp(7rem, 20vw, 8.6rem);
  }

  .home-product-card__icon {
    min-height: 2.9rem;
    font-size: 1.8rem;
  }

  .home-product-card h3 {
    font-size: 0.88rem;
  }

  .home-product-card strong {
    font-size: 1.15rem;
  }

  .home-product-card__pill {
    min-height: 1.6rem;
    padding: 0 0.55rem;
    font-size: 0.68rem;
  }

  .home-repair-showcase__header h2 {
    max-width: 16ch;
  }

  .nav {
    align-items: center;
  }

  .promo-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav > .nav__toggle {
    display: inline-flex;
    align-self: center;
    margin-left: auto;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    width: min(82vw, 24rem);
    max-width: 24rem;
    height: 100vh;
    padding: 0 0 2rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(3, 24, 28, 0.24);
    transform: translateX(104%);
    transition: transform 220ms ease;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav__menu.is-open,
  .nav__mobile-input:checked + .nav__toggle + .nav__menu,
  .nav__mobile-input:checked + .nav__toggle + .nav__overlay + .nav__menu {
    transform: translateX(0);
  }

  .nav__overlay {
    position: fixed;
    inset: 0;
    z-index: 35;
    display: block;
    background: rgba(3, 24, 28, 0.56);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .nav__mobile-input:checked + .nav__toggle + .nav__overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__menu-header {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem 0.9rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .brand--menu .brand__logo {
    height: 2.6rem;
    max-width: min(12rem, 55vw);
  }

  .nav__toggle--close {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    position: relative;
    cursor: pointer;
  }

  .nav__toggle--close span {
    position: absolute;
    width: 1rem;
  }

  .nav__toggle--close span:first-child {
    transform: rotate(45deg);
  }

  .nav__toggle--close span:last-child {
    transform: rotate(-45deg);
  }

  .nav__dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(7, 39, 45, 0.08);
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
  }

  .nav__dropdown.is-open > .nav__dropdown-toggle {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
  }

  .nav__dropdown.is-open > .nav__dropdown-toggle::after {
    border-color: currentColor;
    transform: rotate(-135deg) translateY(-0.05rem);
  }

  .nav__dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0;
    padding: 0;
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 280ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease,
      padding 220ms ease;
  }

  .nav__dropdown--stores .nav__dropdown-menu {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .nav__dropdown.is-open .nav__dropdown-menu {
    max-height: 80vh;
    padding: 0.35rem 0 0.7rem;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__dropdown--stores.is-open .nav__dropdown-menu {
    padding: 0.6rem 1rem 1rem;
  }

  .nav__dropdown--repairs > .nav__dropdown-menu {
    display: none;
  }

  .nav__mobile-repairs {
    display: grid;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 220ms ease,
      padding 220ms ease;
  }

  .nav__dropdown--repairs.is-open > .nav__mobile-repairs {
    max-height: 120rem;
    overflow: visible;
    padding: 0.35rem 0 0.7rem;
  }

  .nav__mobile-repairs-group {
    width: 100%;
  }

  .nav__mobile-repairs-toggle {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.25rem;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
  }

  .nav__mobile-repairs-toggle::after {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-0.1rem);
  }

  .nav__mobile-repairs-group.is-open > .nav__mobile-repairs-toggle {
    background: rgba(17, 141, 149, 0.08);
    color: var(--accent);
  }

  .nav__mobile-repairs-group.is-open > .nav__mobile-repairs-toggle::after {
    transform: rotate(-135deg) translateY(-0.05rem);
  }

  .nav__mobile-repairs-panel {
    display: grid;
    gap: 0.45rem;
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    transition:
      max-height 220ms ease,
      padding-bottom 220ms ease;
  }

  .nav__mobile-repairs-group.is-open > .nav__mobile-repairs-panel {
    max-height: 56rem;
    overflow: visible;
    padding-bottom: 0.4rem;
  }

  .nav__mobile-repairs-panel a {
    display: block;
    padding: 0.78rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
  }

  .nav__dropdown-group {
    gap: 0;
    width: 100%;
  }

  .nav__submenu-toggle {
    padding: 0.95rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
  }

  .nav__dropdown-group.is-open > .nav__submenu-toggle {
    background: rgba(17, 141, 149, 0.08);
  }

  .nav__submenu-panel {
    margin-top: 0;
    max-height: 0;
    padding-bottom: 0.4rem;
  }

  .nav__dropdown-group a {
    padding: 0.78rem 1.8rem;
    font-size: 1rem;
    color: var(--text);
  }

  .nav__menu > a {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(7, 39, 45, 0.08);
  }

  .store-switcher__grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .store-switcher--repairs .store-switcher__grid {
    gap: 0.15rem;
  }

  .nav__submenu-meta {
    font-size: 0.76rem;
  }

  .store-switcher__link {
    min-height: 3.2rem;
    text-transform: none;
  }

  .nav__shop-link {
    width: auto;
    margin: 1.25rem 1.25rem 0;
    padding: 0.9rem 1.3rem;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 12px 24px rgba(15, 151, 155, 0.24);
  }

  .nav__account-link {
    width: auto;
    margin: 1.25rem 1.25rem 0;
  }

  .brand__logo {
    height: 3.4rem;
    max-width: min(16rem, 60vw);
  }

  .footer--bottom {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .auth-layout,
  .auth-grid,
  .auth-profile-grid,
  .history-card__grid {
    grid-template-columns: 1fr;
  }

  .repair-subgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero,
  .inner-page,
  .section {
    padding: 3rem 0;
  }
  h1 {
    max-width: unset;
  }
  .hero__stats {
    flex-direction: column;
  }

  .home-banner {
    padding: 0.8rem 0 1.4rem;
  }

  .home-banner__slides {
    min-height: clamp(10rem, 46vw, 14rem);
  }

  .home-banner__flat-link {
    border-radius: 0.35rem;
  }

  .home-section__cta {
    flex-direction: row;
    justify-content: flex-start;
  }

  .home-section__cta .button {
    width: auto;
  }

  .home-banner__controls {
    gap: 0.6rem;
  }

  .home-banner__arrow {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.45rem;
  }

  .home-banner__dots {
    position: static;
    transform: none;
  }

  .home-banner__dots {
    position: absolute;
    left: 50%;
    bottom: 0.1rem;
    transform: translateX(-50%);
  }

  .home-repair-showcase__header p {
    font-size: 1rem;
  }

  .home-products-showcase__header p {
    display: none;
  }

  .home-products-showcase__header {
    justify-content: flex-start;
    margin-bottom: 0.45rem;
    text-align: left;
  }

  .home-products-showcase__header h2 {
    flex-basis: auto;
    max-width: none;
    text-align: left;
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .home-repair-showcase__header h2,
  .home-repair-showcase__stores-title h3 {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .home-products-showcase__button {
    width: min(100%, 20rem);
  }

  .home-products-toolbar {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0.65rem;
  }

  .home-products-toolbar__note {
    display: none;
  }

  .home-products-grid {
    grid-auto-columns: calc((100% - 0.75rem) / 2);
    gap: 0.75rem;
  }

  .home-product-card {
    min-height: 0;
    padding: 0.6rem;
  }

  .home-product-card__media {
    height: clamp(6.3rem, 32vw, 8rem);
  }

  .home-product-card__icon {
    min-height: 3.2rem;
    font-size: 2rem;
  }

  .home-product-card__content {
    align-content: start;
    grid-template-rows: minmax(2.55rem, auto) auto 1fr;
    min-height: 0;
  }

  .home-product-card h3 {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .home-product-card strong {
    font-size: 1rem;
  }

  .home-product-card__pill {
    align-self: flex-start;
  }

  .home-repair-showcase {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .home-repair-showcase__header {
    margin-bottom: 2.25rem;
  }

  .home-repair-showcase__header p {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.7;
  }

  .home-repair-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 3.1rem;
  }

  .home-repair-category-card {
    min-height: 11rem;
    padding: 1.35rem 1rem;
  }

  .home-repair-category-card__icon {
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 0.8rem;
  }

  .home-repair-category-card__icon svg {
    width: 1.95rem;
    height: 1.95rem;
  }

  .home-repair-category-card h3 {
    font-size: 1rem;
  }

  .home-repair-category-card p {
    font-size: 0.95rem;
  }

  .home-repair-categories .home-repair-category-card:last-child {
    grid-column: 1 / -1;
    max-width: 16rem;
    justify-self: center;
  }

  .home-repair-store-grid {
    gap: 1.1rem;
  }

  .home-repair-store-card__top {
    padding: 1.1rem 1.1rem 1rem;
  }

  .home-repair-store-card__body {
    gap: 0.8rem;
    padding: 1.1rem;
  }

  .home-repair-store-card__body p {
    font-size: 0.98rem;
  }

  .home-repair-store-card__body a {
    width: 100%;
  }

  .brand__logo {
    height: 2.9rem;
    max-width: min(14rem, 65vw);
  }

  .promo-banner__inner {
    padding: 0.9rem 0;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .repair-spotlight {
    grid-template-columns: 1fr;
  }

  .device-card__art {
    height: 8.5rem;
  }

  .repair-detail-panel__icon {
    min-height: 12rem;
  }

  .repair-brand-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .repair-brand-wall__item {
    min-height: 5.8rem;
  }

  .repair-category-card__icon {
    width: 3.4rem;
    height: 3.4rem;
  }

  .repair-category-card__icon--svg svg {
    width: 2.1rem;
    height: 2.1rem;
  }

  .repair-brand-card,
  .repair-device-card {
    min-height: 12rem;
    padding: 1.15rem;
  }

  .repair-brand-card__mark,
  .repair-device-card__icon {
    width: 4.2rem;
    height: 4.2rem;
  }
}
.store-profile {
  padding-top: 0;
}

.store-profile__hero {
  background: linear-gradient(
    135deg,
    #0c5960 0%,
    var(--brand-dark) 52%,
    var(--accent) 100%
  );
  color: #fff;
  padding: 3rem 0 0;
}

.store-profile__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.store-profile__eyebrows {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.store-profile__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f7fbff;
  font-size: 0.78rem;
  font-weight: 700;
}

.store-profile__hero h1 {
  max-width: none;
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.store-profile__hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.store-profile__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.store-profile__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-weight: 700;
}

.store-profile__stars {
  color: #ffd44d;
  letter-spacing: 0.12em;
}

.store-profile__status {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 600;
}

.store-profile__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.store-profile__hero .button--primary {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: none;
}

.store-profile__hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.store-profile__tabs {
  display: flex;
  gap: 0.25rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.store-profile__tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 3.2rem;
  padding: 0 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.store-profile__tabs a.is-active {
  color: #fff;
  box-shadow: inset 0 -3px 0 #fff;
}

.store-profile__section {
  padding: 2rem 0 0;
}

.store-profile__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.65fr);
  gap: 1.4rem;
  align-items: start;
}

.store-profile__panel,
.store-profile__sidebar-card,
.store-profile__service-card,
.store-profile__cta {
  border: 1px solid rgba(7, 39, 45, 0.1);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(3, 24, 28, 0.06);
}

.store-profile__panel {
  padding: 1.7rem;
}

.store-profile__panel + .store-profile__panel {
  margin-top: 1.2rem;
}

.store-profile__panel h2,
.store-profile__sidebar-card h3,
.store-profile__services-heading h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.store-profile__panel p,
.store-profile__sidebar-card p,
.store-profile__service-card p,
.store-profile__services-heading p,
.store-profile__service-card li,
.store-profile__feature-list li {
  color: var(--muted);
  line-height: 1.75;
}

.store-profile__feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 1.3rem 0 0;
  list-style: none;
}

.store-profile__feature-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 0.95rem;
  border-radius: 1rem;
  background: rgba(22, 200, 186, 0.08);
  font-weight: 600;
}

.store-profile__feature-list li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(22, 200, 186, 0.16);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.store-profile__sidebar {
  display: grid;
  gap: 1rem;
}

.store-profile__sidebar-card {
  padding: 1.3rem;
}

.store-profile__contact-list {
  display: grid;
  gap: 0.9rem;
}

.store-profile__contact-list p,
.store-profile__contact-list a {
  display: flex;
  gap: 0.6rem;
  margin: 0;
}

.store-profile__contact-list a {
  color: var(--brand-dark);
  font-weight: 700;
}

.store-profile__contact-list a:hover {
  text-decoration: underline;
}

.store-profile__contact-icon {
  color: var(--accent);
  min-width: 1rem;
}

.store-profile__services-heading {
  margin-bottom: 1.5rem;
}

.store-profile__services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.store-profile__service-card {
  padding: 1.35rem;
}

.store-profile__service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: rgba(22, 200, 186, 0.12);
  color: var(--accent);
  font-size: 1.15rem;
}

.store-profile__service-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.22rem;
}

.store-profile__service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.store-profile__service-link {
  color: var(--accent);
  font-weight: 700;
}

.store-profile__cta {
  margin-top: 1.5rem;
  padding: 1.9rem;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--accent) 100%);
  color: #fff;
}

.store-profile__cta h3 {
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: 1.9rem;
}

.store-profile__cta p {
  margin: 0 0 1.3rem;
  color: rgba(255, 255, 255, 0.84);
}

.store-profile__cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.store-profile__cta .button--primary {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: none;
}

.store-profile__cta .button--secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 960px) {
  .store-profile__hero-inner,
  .store-profile__grid,
  .store-profile__services-grid {
    grid-template-columns: 1fr;
  }

  .store-profile__actions {
    justify-content: flex-start;
  }

  .store-profile__feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .store-profile__hero {
    padding-top: 2.3rem;
  }

  .store-profile__tabs {
    flex-wrap: wrap;
  }

  .store-profile__tabs a {
    min-height: 2.9rem;
    padding: 0 0.85rem;
  }

  .store-profile__cta-actions {
    flex-direction: column;
  }
}

.store-profile__hero {
  padding: 3.5rem 0 0;
  background: linear-gradient(
    135deg,
    #0c5960 0%,
    var(--brand-dark) 48%,
    var(--accent) 100%
  );
}

.store-profile__hero-inner {
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  align-items: end;
}

.store-profile__eyebrow {
  min-height: 1.9rem;
  padding: 0 0.8rem;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}

.store-profile__status {
  font-weight: 700;
}

.store-profile__actions .button {
  min-width: 10.5rem;
  justify-content: center;
}

.store-profile__tabs {
  gap: 1rem;
}

.store-profile__tabs a {
  min-height: 3.35rem;
  padding: 0 0.2rem;
}

.store-profile__section {
  padding: 2.75rem 0 0;
}

.store-profile__section + .store-profile__section {
  padding-top: 2.2rem;
}

.store-profile__panel {
  padding: 1.9rem;
}

.store-profile__panel h2,
.store-profile__sidebar-card h3,
.store-profile__services-heading h2 {
  font-size: 1.62rem;
}

.store-profile__support-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.store-profile__support-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(22, 200, 186, 0.16);
  border-radius: 1rem;
  background: rgba(241, 255, 252, 0.96);
  color: var(--muted);
  line-height: 1.65;
}

.store-profile__support-list li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: rgba(22, 200, 186, 0.16);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.store-profile__sidebar {
  gap: 1.1rem;
}

.store-profile__sidebar-card {
  padding: 1.45rem;
}

.store-profile__sidebar-card--rating {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--accent) 100%);
  color: #fff;
}

.store-profile__sidebar-card--rating h3,
.store-profile__sidebar-card--rating p,
.store-profile__sidebar-card--rating a {
  color: #fff;
}

.store-profile__sidebar-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.store-profile__sidebar-rating strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.store-profile__sidebar-rating-text {
  display: grid;
  gap: 0.25rem;
}

.store-profile__sidebar-rating-text span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.store-profile__sidebar-stars {
  color: #ffd44d;
  letter-spacing: 0.12em;
}

.store-profile__map-card {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
  border: 1px solid rgba(22, 200, 186, 0.16);
  border-radius: 1.4rem;
  background: linear-gradient(
    180deg,
    rgba(236, 255, 252, 0.98),
    rgba(247, 255, 253, 0.98)
  );
  box-shadow: 0 18px 44px rgba(3, 24, 28, 0.05);
}

.store-profile__map-card strong {
  font-size: 1.05rem;
}

.store-profile__map-card p {
  margin: 0;
  color: var(--muted);
}

.store-profile__map-card .button {
  width: 100%;
  justify-content: center;
}

.store-profile__services-grid {
  gap: 1.15rem;
}

.store-profile__service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem;
}

.store-profile__service-icon {
  font-size: 1.35rem;
}

.store-profile__service-card p {
  flex: 1 1 auto;
}

.store-profile__service-meta {
  margin-top: 1.15rem;
}

.store-profile__cta {
  margin-top: 1.8rem;
}

@media (max-width: 960px) {
  .store-profile__hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .store-profile__actions {
    justify-content: flex-start;
  }

  .store-profile__tabs {
    gap: 0.8rem;
  }
}

@media (max-width: 640px) {
  .store-profile__hero {
    padding-top: 2.4rem;
  }

  .store-profile__hero h1 {
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  .store-profile__actions .button {
    width: 100%;
    min-width: 0;
  }

  .store-profile__tabs {
    gap: 0.6rem;
  }

  .store-profile__tabs a {
    min-height: 2.9rem;
  }

  .store-profile__panel,
  .store-profile__sidebar-card,
  .store-profile__service-card,
  .store-profile__map-card,
  .store-profile__cta {
    padding: 1.2rem;
  }

  .store-profile__feature-list {
    grid-template-columns: 1fr;
  }

  .store-profile__cta h3 {
    font-size: 1.55rem;
  }
}

.booking-hero {
  padding-bottom: 2rem;
}

.booking-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.3rem;
  align-items: start;
}

.booking-hero__copy h1 {
  max-width: 12ch;
}

.booking-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.booking-hero__points span,
.booking-hero__panel li {
  color: rgba(255, 255, 255, 0.84);
}

.booking-hero__points span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 600;
}

.booking-hero__panel {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 44px rgba(3, 24, 28, 0.08);
}

.booking-hero__panel strong {
  display: block;
  margin-bottom: 0.9rem;
  color: #fff;
  font-size: 1.15rem;
}

.booking-hero__panel ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.75rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.62fr);
  gap: 1.35rem;
  align-items: start;
}

.booking-card,
.booking-sidebar__card {
  padding: 1.7rem;
  border: 1px solid rgba(7, 39, 45, 0.1);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(3, 24, 28, 0.06);
}

.booking-form {
  display: grid;
  gap: 1.2rem;
}

.booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-field {
  display: grid;
  gap: 0.55rem;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-field span,
.booking-checkbox span {
  font-size: 0.95rem;
  font-weight: 700;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(7, 39, 45, 0.14);
  border-radius: 1rem;
  background: #fff;
  color: var(--text);
  font: inherit;
  resize: vertical;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: rgba(15, 151, 155, 0.55);
  box-shadow: 0 0 0 4px rgba(22, 200, 186, 0.12);
}

.booking-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.booking-checkbox input {
  margin-top: 0.22rem;
}

.booking-form__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.booking-message {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
}

.booking-message.is-success {
  background: rgba(22, 200, 186, 0.12);
  color: #0d6468;
  border: 1px solid rgba(22, 200, 186, 0.24);
}

.booking-message.is-error {
  background: rgba(220, 70, 70, 0.08);
  color: #8a2323;
  border: 1px solid rgba(220, 70, 70, 0.2);
}

.auth-page {
  min-height: calc(100vh - 16rem);
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 0.78fr);
  gap: 1.25rem;
  align-items: start;
}

.auth-layout__main,
.auth-layout__sidebar {
  display: grid;
  gap: 1rem;
}

.auth-panel,
.auth-card {
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(3, 24, 28, 0.07);
}

.auth-panel {
  padding: 1.25rem;
}

.auth-card {
  padding: 1.2rem;
}

.auth-panel--member {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(240, 255, 252, 0.96)
  );
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.auth-grid--secondary {
  margin-top: 1rem;
}

.auth-form {
  display: grid;
  gap: 0.85rem;
}

.auth-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--text);
}

.auth-form input {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(7, 39, 45, 0.12);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.auth-form input:focus {
  outline: 2px solid rgba(22, 200, 186, 0.18);
  border-color: rgba(15, 151, 155, 0.36);
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.auth-actions--stack {
  display: grid;
  gap: 0.8rem;
}

.auth-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0 1.15rem;
}

.auth-profile-item {
  display: grid;
  gap: 0.28rem;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(7, 39, 45, 0.08);
  border-radius: 1rem;
  background: rgba(248, 255, 254, 0.92);
}

.auth-profile-item strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.auth-card__note {
  margin: 1rem 0 0;
  color: var(--muted);
}

.auth-history {
  display: grid;
  gap: 0.7rem;
}

.auth-history__item {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(7, 39, 45, 0.08);
  border-radius: 1rem;
  background: rgba(248, 255, 254, 0.92);
}

.auth-history__item strong {
  font-size: 0.96rem;
}

.auth-history__item span,
.auth-history__empty {
  color: var(--muted);
}

.history-layout {
  display: grid;
  gap: 1.1rem;
}

.history-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.history-card--empty {
  text-align: left;
}

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

.history-card__top h2 {
  margin: 0;
  max-width: unset;
  font-size: 1.3rem;
}

.history-card__status {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(22, 200, 186, 0.12);
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.history-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.history-card__grid div {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(7, 39, 45, 0.04);
}

.history-card__grid strong {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.has-booking-modal {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 24, 28, 0.55);
}

.booking-modal__dialog {
  position: relative;
  width: min(32rem, calc(100% - 2rem));
  margin: min(12vh, 5rem) auto 0;
  padding: 1.6rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(7, 39, 45, 0.12);
  background: #fff;
  box-shadow: 0 28px 60px rgba(3, 24, 28, 0.18);
}

.booking-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 39, 45, 0.06);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.booking-modal__eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-modal__dialog h3 {
  margin-bottom: 0.7rem;
}

.booking-modal__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.booking-modal__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.3rem;
}

.booking-modal.is-success .booking-modal__dialog {
  border-color: rgba(22, 200, 186, 0.25);
}

.booking-modal.is-error .booking-modal__dialog {
  border-color: rgba(220, 70, 70, 0.24);
}

.booking-sidebar {
  display: grid;
  gap: 1rem;
}

.booking-sidebar__card h3 {
  margin-bottom: 0.9rem;
}

.booking-sidebar__steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
}

.booking-sidebar__links {
  display: grid;
  gap: 0.75rem;
}

.booking-sidebar__links a {
  color: var(--brand-dark);
  font-weight: 700;
}

.booking-sidebar__links a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .booking-hero__inner,
  .booking-layout,
  .booking-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .booking-card,
  .booking-sidebar__card {
    padding: 1.2rem;
  }

  .booking-form__actions {
    flex-direction: column;
  }

  .booking-modal__dialog {
    margin-top: 4.5rem;
    padding: 1.3rem;
  }
}

@media (max-width: 960px) {
  .storefront-hero__grid,
  .storefront-feature-strip__grid,
  .storefront-layout,
  .storefront-grid,
  .storefront-detail__layout {
    grid-template-columns: 1fr;
  }

  .storefront-sidebar {
    position: static;
  }

  .storefront-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .storefront-meta {
    align-items: stretch;
  }

  .storefront-search {
    min-width: 0;
    width: 100%;
  }

  .storefront-category-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .storefront-hero {
    padding-top: 2rem;
  }

  .storefront-hero__content,
  .storefront-sidebar__panel,
  .storefront-card,
  .storefront-feature-card {
    border-radius: 1.2rem;
  }

  .storefront-hero__content,
  .storefront-card__body {
    padding: 1.15rem;
  }

  .storefront-card__media {
    padding: 1rem;
  }

  .storefront-card__price-row strong {
    font-size: 1.45rem;
  }

  .storefront-detail__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .storefront-grid,
  .storefront-grid--dense {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .storefront-grid,
  .storefront-grid--dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .storefront-grid,
  .storefront-grid--dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.nav__cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.7rem;
  padding: 0 1rem;
  border: 1px solid rgba(22, 200, 186, 0.2);
  border-radius: 999px;
  background: rgba(22, 200, 186, 0.1);
  color: var(--brand-dark);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(6, 31, 36, 0.06);
}

.nav__cart-link:hover {
  background: rgba(22, 200, 186, 0.16);
  border-color: rgba(22, 200, 186, 0.34);
}

.nav__cart-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
}

.nav__cart-icon svg {
  width: 100%;
  height: 100%;
}

.nav__cart-text {
  display: inline-flex;
  align-items: center;
}

.nav__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(22, 200, 186, 0.14);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
}

.floating-cart {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 16px 34px rgba(3, 24, 28, 0.24);
}

.floating-cart__icon {
  display: inline-flex;
  width: 1.3rem;
  height: 1.3rem;
}

.floating-cart__icon svg {
  width: 100%;
  height: 100%;
}

.floating-cart__count {
  position: absolute;
  top: -0.18rem;
  right: -0.12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(3, 24, 28, 0.15);
}

.storefront-layout {
  grid-template-columns: minmax(14rem, 15.5rem) minmax(0, 1fr);
  gap: 0.95rem;
}

.storefront-grid,
.storefront-grid--dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.storefront-card--commerce,
.storefront-grid .storefront-card,
.storefront-grid--dense .storefront-card {
  border-radius: 1.05rem;
}

.storefront-card__media {
  padding: 0.72rem;
}

.storefront-card__body {
  gap: 0.5rem;
  padding: 0.85rem;
}

.storefront-card h3 {
  font-size: 0.98rem;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.storefront-card__summary {
  min-height: 2.8rem;
  font-size: 0.88rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.storefront-card__price-row--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.storefront-card__price-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 1rem;
}

.storefront-card__price-row strong {
  font-size: 1.72rem;
  order: 0;
}

.storefront-card__compare {
  font-size: 0.98rem;
}

.storefront-card__saving {
  min-height: 1.65rem;
  padding: 0 0.6rem;
  font-size: 0.72rem;
  background: rgba(255, 92, 92, 0.14);
  color: #cb2d2d;
}

.storefront-card__meta {
  gap: 0.4rem;
}

.storefront-card__meta span {
  min-height: 1.55rem;
  padding: 0 0.55rem;
  font-size: 0.76rem;
}

.storefront-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}

.storefront-card__stock {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}

.storefront-card__stock.is-in-stock {
  color: #127d54;
}

.storefront-card__actions {
  gap: 0.4rem;
}

.storefront-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0 0.8rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.storefront-card__action--primary {
  background: rgba(22, 200, 186, 0.14);
  color: var(--brand-dark);
}

.storefront-card__action--secondary {
  border: 1px solid rgba(7, 39, 45, 0.1);
  background: transparent;
  color: var(--text);
}

.storefront-card__action--primary:hover {
  background: rgba(22, 200, 186, 0.2);
}

.storefront-card__action--secondary:hover {
  background: rgba(7, 39, 45, 0.04);
}

.storefront-pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.88fr);
  gap: 1.1rem;
  align-items: stretch;
}

.storefront-pdp__gallery,
.storefront-pdp__summary,
.storefront-pdp__panel,
.storefront-pdp__sidecard,
.storefront-summary,
.storefront-cart__item {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  box-shadow: var(--shadow);
}

.storefront-pdp__gallery {
  padding: 1rem;
}

.storefront-pdp__gallery-main {
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(22, 200, 186, 0.15),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(239, 248, 247, 0.85)
    );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.storefront-pdp__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.storefront-pdp__gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4.5rem, 1fr));
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.storefront-pdp__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.storefront-pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.storefront-pdp__thumb:hover,
.storefront-pdp__thumb.is-active {
  border-color: rgba(22, 200, 186, 0.52);
  box-shadow: 0 12px 24px rgba(6, 31, 36, 0.09);
  transform: translateY(-1px);
}

.storefront-pdp__gallery-note {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.storefront-pdp__summary {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}

.storefront-pdp__brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.storefront-pdp__brand {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.storefront-pdp__stock {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.storefront-pdp__summary h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.storefront-pdp__intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.storefront-pdp__price-card {
  margin: 1.2rem 0 1rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(7, 39, 45, 0.03);
  border: 1px solid rgba(7, 39, 45, 0.08);
}

.storefront-pdp__price-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.storefront-pdp__compare {
  color: #85979d;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: line-through;
}

.storefront-pdp__save {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: rgba(255, 92, 92, 0.14);
  color: #cb2d2d;
  font-size: 0.75rem;
  font-weight: 800;
}

.storefront-pdp__price-main {
  margin-top: 0.4rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--accent);
}

.storefront-pdp__price-note {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.storefront-pdp__variant-picker {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.storefront-pdp__variant-label {
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.storefront-pdp__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.storefront-pdp__variant {
  min-height: 2rem;
  padding: 0 0.9rem;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.storefront-pdp__variant:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 200, 186, 0.35);
}

.storefront-pdp__purchase {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: end;
}

.storefront-pdp__qty {
  display: grid;
  gap: 0.35rem;
  min-width: 5.5rem;
}

.storefront-pdp__qty span {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
}

.storefront-pdp__qty input {
  min-height: 3rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}

.storefront-pdp__cart-button {
  min-width: 10rem;
}

.storefront-pdp__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.storefront-pdp__highlight {
  padding: 0.9rem 0.95rem;
  border-radius: 1rem;
  background: rgba(7, 39, 45, 0.04);
  border: 1px solid rgba(7, 39, 45, 0.06);
}

.storefront-pdp__highlight strong,
.storefront-pdp__facts strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.storefront-pdp__detail-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.storefront-pdp__panel {
  padding: 1.2rem;
}

.storefront-pdp__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.storefront-pdp__facts div {
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: rgba(7, 39, 45, 0.04);
}

.storefront-pdp__facts span {
  color: var(--muted);
  line-height: 1.7;
}

.storefront-pdp__panel--detail-html {
  padding: 1.35rem;
}

.storefront-rich-content {
  color: var(--text);
  line-height: 1.78;
}

.storefront-rich-content > :first-child {
  margin-top: 0;
}

.storefront-rich-content > :last-child {
  margin-bottom: 0;
}

.storefront-rich-content h2,
.storefront-rich-content h3,
.storefront-rich-content h4 {
  margin: 1.6rem 0 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
}

.storefront-rich-content p,
.storefront-rich-content ul,
.storefront-rich-content ol,
.storefront-rich-content table,
.storefront-rich-content figure {
  margin: 0 0 1rem;
}

.storefront-rich-content ul,
.storefront-rich-content ol {
  padding-left: 1.2rem;
}

.storefront-rich-content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.storefront-rich-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--line);
}

.storefront-rich-content th,
.storefront-rich-content td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.storefront-product-rail {
  padding-top: 0;
}

.storefront-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15rem, 17rem);
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
}

.storefront-rail-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-snap-align: start;
}

.storefront-rail-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 0.9rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(22, 200, 186, 0.12),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(240, 249, 248, 0.92)
    );
}

.storefront-rail-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.storefront-rail-card__body {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 0.95rem;
}

.storefront-rail-card__eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.storefront-rail-card__title {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.25;
}

.storefront-rail-card__price {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.storefront-rail-card__price strong {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.storefront-rail-card__compare {
  color: #8b999e;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: line-through;
}

.storefront-rail-card__saving {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  width: fit-content;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: rgba(255, 92, 92, 0.14);
  color: #cb2d2d;
  font-size: 0.74rem;
  font-weight: 800;
}

.storefront-rail-card__actions {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.storefront-rail-card__actions .storefront-card__action {
  flex: 1 1 0;
}

.storefront-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 24rem);
  gap: 1.25rem;
  align-items: start;
}

.storefront-checkout .section-heading {
  margin-bottom: 0;
}

.storefront-checkout .section-heading h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.94;
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid rgba(7, 39, 45, 0.12);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(3, 24, 28, 0.08);
}

.checkout-progress li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.95rem 1rem;
  color: var(--muted);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(244, 250, 250, 0.92)
  );
}

.checkout-progress li + li {
  border-left: 1px solid rgba(7, 39, 45, 0.1);
}

.checkout-progress span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(7, 39, 45, 0.16);
  color: var(--brand-dark);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.checkout-progress strong {
  display: block;
  color: inherit;
  font-size: 0.95rem;
}

.checkout-progress small {
  display: block;
  margin-top: 0.12rem;
  color: inherit;
  font-size: 0.78rem;
}

.checkout-progress li.is-active {
  color: var(--brand-dark);
  background:
    radial-gradient(
      circle at top left,
      rgba(22, 200, 186, 0.28),
      transparent 42%
    ),
    linear-gradient(135deg, rgba(22, 200, 186, 0.2), rgba(255, 255, 255, 0.94));
}

.checkout-progress li.is-active span,
.checkout-progress li.is-complete span {
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #fff;
}

.checkout-progress li.is-complete {
  color: var(--brand-dark);
}

.section--cart {
  padding-top: clamp(1.2rem, 3vw, 2rem);
}

.storefront-checkout--cart {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 20rem);
}

.storefront-checkout__main,
.storefront-checkout__sidebar {
  display: grid;
  gap: 1rem;
}

.storefront-checkout:not(.storefront-checkout--cart)
  .storefront-checkout__sidebar {
  padding-top: clamp(9rem, 16vw, 12rem);
}

.storefront-cart__compact-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.55rem;
}

.storefront-cart__compact-heading .eyebrow {
  margin: 0;
}

.storefront-cart__compact-heading a {
  font-weight: 700;
  color: var(--brand-dark);
}

.storefront-cart__sidebar {
  padding-top: 2.55rem;
}

.storefront-cart__recommendation-card,
.storefront-checkout__recommendation-card {
  overflow: hidden;
}

.storefront-recommendation-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(13.8rem, 15.5rem);
  gap: 0.9rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  padding: 0.15rem 0.1rem 0.8rem;
  scrollbar-color: rgba(22, 200, 186, 0.7) rgba(7, 39, 45, 0.08);
}

.storefront-recommendation-rail > * {
  scroll-snap-align: start;
  min-width: 0;
}

.storefront-grid--cart,
.storefront-grid--checkout {
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
}

.storefront-cart__item {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.storefront-cart__media {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(22, 200, 186, 0.15),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(239, 248, 247, 0.85)
    );
  padding: 0.85rem;
  aspect-ratio: 1 / 1;
}

.storefront-cart__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.storefront-cart__details {
  display: grid;
  gap: 0.55rem;
}

.storefront-cart__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.storefront-cart__eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.storefront-cart__top h3 {
  margin: 0;
  font-size: 1rem;
}

.storefront-cart__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.storefront-cart__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.storefront-cart__controls label {
  display: grid;
  gap: 0.3rem;
}

.storefront-cart__controls label span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.storefront-cart__controls input {
  width: 4.5rem;
  min-height: 2.6rem;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}

.storefront-cart__price {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.storefront-cart__remove {
  border: 0;
  background: transparent;
  color: #ba3838;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.storefront-summary {
  padding: 1.2rem;
}

.storefront-summary--checkout {
  position: sticky;
  top: 6.5rem;
  padding: 0;
  overflow: hidden;
}

.storefront-summary__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(7, 39, 45, 0.1);
  background: rgba(7, 39, 45, 0.06);
}

.storefront-summary__heading h2 {
  margin: 0;
  font-size: 1.05rem;
}

.storefront-summary__heading a {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
}

.storefront-summary__items {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(7, 39, 45, 0.1);
}

.storefront-summary--checkout [data-checkout-summary] {
  padding: 0 1.1rem 1rem;
}

.storefront-summary-item {
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.storefront-summary-item--empty {
  grid-template-columns: 1fr;
}

.storefront-summary-item--empty p {
  margin: 0;
  color: var(--muted);
}

.storefront-summary-item__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(7, 39, 45, 0.08);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.88);
}

.storefront-summary-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.storefront-summary-item__media span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.storefront-summary-item__body {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.storefront-summary-item__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.storefront-summary-item__body p strong {
  color: #0a9f63;
}

.storefront-summary-item__body h3 {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.28;
}

.storefront-summary-item__body h3 a {
  color: var(--brand-dark);
}

.storefront-summary-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.storefront-summary-item__meta strong {
  color: var(--accent);
}

.storefront-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(7, 39, 45, 0.08);
}

.storefront-summary__row--muted {
  color: var(--muted);
}

.storefront-summary__row--total {
  font-size: 1.06rem;
}

.storefront-summary__actions {
  margin-top: 1rem;
}

.cart-side-panel {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 34px rgba(3, 24, 28, 0.08);
}

.cart-side-panel__heading {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.cart-side-panel__heading h2 {
  margin: 0;
  font-size: 1rem;
}

.cart-side-panel__heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(7, 39, 45, 0.25);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.cart-freight p,
.cart-payment p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cart-freight__dispatch {
  display: block;
  margin: 0.65rem 0 0.85rem;
  color: #ff6a2a;
  font-size: 0.9rem;
  line-height: 1.35;
}

.cart-freight__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
}

.cart-freight__form input {
  min-width: 0;
  min-height: 2.75rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

.cart-freight__form input:focus-visible {
  outline: none;
  border-color: rgba(22, 200, 186, 0.72);
  box-shadow: 0 0 0 4px rgba(22, 200, 186, 0.14);
}

.cart-freight__form button {
  min-height: 2.75rem;
  padding: 0 0.95rem;
  border: 0;
  background: #1e9d5d;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-freight__form button:hover {
  background: #167d4a;
}

.cart-freight__results {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.cart-freight__row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.72rem 0.75rem;
  background: rgba(7, 39, 45, 0.06);
  color: var(--brand-dark);
}

.cart-freight__error {
  padding: 0.72rem 0.75rem;
  background: rgba(186, 56, 56, 0.08);
  color: #a73535 !important;
  font-weight: 700;
}

.cart-trust-panel {
  display: grid;
  gap: 1.2rem;
}

.cart-trust-list {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 700;
}

.cart-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cart-trust-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(22, 200, 186, 0.16);
  color: var(--accent);
  font-size: 0.78rem;
}

.cart-payment {
  display: grid;
  gap: 0.65rem;
}

.cart-payment__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.95rem;
  min-height: 1.8rem;
  padding: 0 0.45rem;
  border: 1px solid rgba(7, 39, 45, 0.15);
  border-radius: 0.28rem;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 12px rgba(3, 24, 28, 0.06);
}

.payment-badge--visa {
  color: #1434cb;
  font-style: italic;
}

.payment-badge--mastercard {
  background: linear-gradient(90deg, #eb001b 0 48%, #f79e1b 52% 100%);
  color: #fff;
}

.payment-badge--amex {
  background: #1175ba;
  color: #fff;
}

.payment-badge--paypal {
  color: #003087;
}

.payment-badge--zip {
  color: #1b123f;
  font-size: 0.95rem;
}

.payment-badge--bank {
  background: #0a7b45;
  color: #fff;
}

.payment-badge--apple {
  color: #111;
}

.payment-badge--google {
  color: #4285f4;
}

.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;
}

.storefront-checkout__form {
  display: grid;
  gap: 1rem;
}

.storefront-checkout__step {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(7, 39, 45, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.storefront-checkout__step-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.storefront-checkout__step-heading h2 {
  margin: 0;
  font-size: 1.25rem;
}

.storefront-checkout__step-heading p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.storefront-checkout__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #fff;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
}

.storefront-checkout__delivery-card {
  display: grid;
  gap: 1rem;
}

.storefront-checkout__auth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.storefront-checkout__auth-panel,
.storefront-checkout__auth-status {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(7, 39, 45, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.88);
}

.storefront-checkout__auth-panel h3,
.storefront-checkout__auth-panel p {
  margin: 0;
}

.storefront-checkout__auth-panel p {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.6;
}

.storefront-checkout__auth-status {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border-color: rgba(22, 200, 186, 0.26);
  background: rgba(22, 200, 186, 0.08);
}

.storefront-checkout__auth-status strong {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.storefront-checkout__auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.storefront-checkout__step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
}

.storefront-checkout__auth-actions a {
  color: var(--accent);
  font-weight: 800;
}

.storefront-checkout__delivery-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.storefront-checkout__choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  min-height: 6.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.storefront-checkout__choice:hover,
.storefront-checkout__choice.is-selected {
  border-color: rgba(22, 200, 186, 0.55);
  box-shadow: 0 16px 36px rgba(8, 95, 91, 0.12);
  transform: translateY(-1px);
}

.storefront-checkout__choice input {
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.storefront-checkout__choice span {
  display: grid;
  gap: 0.35rem;
}

.storefront-checkout__choice small {
  color: var(--muted);
  line-height: 1.55;
}

.storefront-checkout__delivery-select {
  display: grid;
  gap: 0.4rem;
}

.storefront-checkout__delivery-select span {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
}

.storefront-checkout__delivery-select select {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
}

.storefront-checkout__delivery-detail {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(22, 200, 186, 0.22);
  border-radius: 1rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(22, 200, 186, 0.12),
      transparent 35%
    ),
    rgba(240, 251, 249, 0.96);
}

.storefront-checkout__delivery-detail-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.storefront-checkout__delivery-detail-top h3 {
  margin: 0.2rem 0 0;
  font-size: 1.18rem;
}

.storefront-checkout__delivery-mode {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.storefront-checkout__delivery-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(22, 200, 186, 0.14);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.storefront-checkout__delivery-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.storefront-checkout__delivery-meta {
  display: grid;
  gap: 0.7rem;
}

.storefront-checkout__delivery-meta p {
  display: grid;
  gap: 0.2rem;
  margin: 0;
}

.storefront-checkout__delivery-meta strong {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.storefront-checkout__delivery-meta span,
.storefront-checkout__delivery-meta a {
  color: var(--brand-dark);
}

.storefront-checkout__delivery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.storefront-checkout__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.storefront-checkout__form-grid label {
  display: grid;
  gap: 0.35rem;
}

.storefront-checkout__form-grid span {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
}

.storefront-checkout__label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
}

.storefront-checkout__form-grid input,
.storefront-checkout__form-grid select,
.storefront-checkout__form-grid textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  resize: vertical;
}

.storefront-checkout__form-grid input:focus-visible,
.storefront-checkout__form-grid select:focus-visible,
.storefront-checkout__form-grid textarea:focus-visible,
.storefront-checkout__delivery-select select:focus-visible {
  outline: none;
  border-color: rgba(22, 200, 186, 0.6);
  box-shadow: 0 0 0 4px rgba(22, 200, 186, 0.14);
}

.storefront-checkout__form-grid input.is-invalid,
.storefront-checkout__form-grid select.is-invalid,
.storefront-checkout__form-grid textarea.is-invalid,
.storefront-checkout__delivery-select select.is-invalid {
  border-color: rgba(205, 79, 79, 0.9);
  background: rgba(255, 249, 249, 0.96);
}

.storefront-field-error {
  margin: 0.1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
  color: #b53d3d;
}

.storefront-field-hint {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
}

.storefront-field-hint.is-error {
  color: #b53d3d;
}

.storefront-field-hint.is-success {
  color: #087f5b;
}

.storefront-checkout__form-grid-full {
  grid-column: 1 / -1;
}

.storefront-checkout__account-setup {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(22, 200, 186, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.storefront-checkout__account-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.storefront-checkout__payment-note {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(22, 200, 186, 0.22);
  border-radius: 1rem;
  background: rgba(22, 200, 186, 0.08);
  color: var(--muted);
  line-height: 1.7;
}

.storefront-payment-list,
.storefront-shipping-list {
  display: grid;
  gap: 0.8rem;
}

.storefront-checkout__shipping-methods {
  display: grid;
  gap: 0.35rem;
}

.storefront-shipping-option .storefront-payment-option__fee {
  color: var(--muted);
}

.storefront-payment-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.storefront-shipping-option {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.storefront-payment-option:hover {
  border-color: rgba(22, 200, 186, 0.38);
  box-shadow: 0 10px 24px rgba(6, 31, 36, 0.08);
}

.storefront-payment-option.is-selected {
  border-color: rgba(22, 200, 186, 0.48);
  background: rgba(233, 250, 248, 0.95);
  box-shadow: 0 12px 28px rgba(22, 200, 186, 0.12);
}

.storefront-payment-option__radio {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 2px solid rgba(7, 39, 45, 0.2);
  position: relative;
  flex-shrink: 0;
}

.storefront-payment-option.is-selected .storefront-payment-option__radio {
  border-color: var(--accent);
}

.storefront-payment-option.is-selected
  .storefront-payment-option__radio::after {
  content: "";
  position: absolute;
  inset: 0.17rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.storefront-payment-option__body {
  display: grid;
  gap: 0.45rem;
}

.storefront-payment-option__top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.storefront-payment-option__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.storefront-payment-option__fee {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent);
}

.storefront-payment-option__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.storefront-payment-option__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0 0.68rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(7, 39, 45, 0.1);
  background: #fff;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: inset 0 -1px 0 rgba(7, 39, 45, 0.04);
}

.storefront-payment-option__badge--visa {
  color: #1a1f71;
}

.storefront-payment-option__badge--mc {
  color: #eb001b;
}

.storefront-payment-option__badge--amex {
  color: #016fd0;
}

.storefront-payment-option__badge--jcb {
  color: #0b7c3e;
}

.storefront-payment-option__badge--apple {
  color: #111;
}

.storefront-payment-option__badge--afterpay {
  color: #0bb38d;
}

.storefront-payment-option__badge--manual {
  color: var(--accent);
}

.storefront-payment-option__description {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.storefront-payment-option__estimate {
  display: grid;
  gap: 0.2rem;
  justify-items: end;
  text-align: right;
}

.storefront-payment-option__estimate strong {
  font-family: "Space Grotesk", sans-serif;
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.storefront-payment-option__estimate span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 700;
}

.storefront-summary--embedded {
  padding: 1rem;
}

.storefront-checkout__submit {
  display: flex;
  justify-content: flex-start;
}

.storefront-checkout__submit .button--primary {
  min-width: 14rem;
}

.storefront-success {
  padding: 1.3rem;
  border: 1px solid rgba(22, 200, 186, 0.2);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.storefront-success__lead {
  margin: 0.3rem 0 0;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
}

.storefront-success__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.storefront-success__item {
  padding: 0.9rem 0.95rem;
  border-radius: 1rem;
  background: rgba(7, 39, 45, 0.04);
}

.storefront-success__item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.storefront-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.button:disabled,
.storefront-card__action:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .storefront-grid,
  .storefront-grid--dense {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .storefront-layout,
  .storefront-pdp,
  .storefront-checkout {
    grid-template-columns: 1fr;
  }

  .storefront-summary--checkout {
    position: static;
    order: -1;
  }

  .storefront-checkout:not(.storefront-checkout--cart)
    .storefront-checkout__sidebar {
    padding-top: 0;
  }

  .checkout-progress {
    grid-template-columns: 1fr;
  }

  .checkout-progress li + li {
    border-left: 0;
    border-top: 1px solid rgba(7, 39, 45, 0.1);
  }

  .storefront-cart__sidebar {
    padding-top: 0;
  }

  .storefront-recommendation-rail {
    grid-auto-columns: minmax(10.5rem, 44vw);
  }

  .storefront-pdp {
    align-items: start;
  }

  .storefront-pdp__highlights,
  .storefront-pdp__facts,
  .storefront-checkout__auth-grid,
  .storefront-checkout__delivery-choice-grid,
  .storefront-checkout__form-grid,
  .storefront-success__grid {
    grid-template-columns: 1fr;
  }

  .storefront-payment-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .storefront-rail {
    grid-auto-columns: minmax(13.5rem, 15rem);
  }

  .storefront-payment-option__estimate {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .storefront-checkout__step-heading,
  .storefront-checkout__delivery-detail-top {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav__cart-link {
    display: none;
  }

  .floating-cart {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .storefront-grid,
  .storefront-grid--dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront-card__body {
    padding: 0.78rem;
  }

  .storefront-card__price-row strong {
    font-size: 1.45rem;
  }

  .storefront-cart__item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .storefront-grid,
  .storefront-grid--dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront-card__body {
    padding: 0.72rem;
    gap: 0.42rem;
  }

  .storefront-card h3 {
    font-size: 0.92rem;
    line-height: 1.28;
  }

  .storefront-card__summary {
    min-height: 2.35rem;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .storefront-card__price-row strong {
    font-size: 1.28rem;
  }

  .storefront-card__actions,
  .storefront-card__action {
    width: 100%;
    min-height: 2rem;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    font-size: 0.76rem;
  }

  .storefront-pdp__purchase {
    grid-template-columns: 1fr;
  }

  .storefront-pdp__purchase .button,
  .storefront-pdp__cart-button {
    width: 100%;
  }

  .storefront-rail-card__actions {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .storefront-grid,
  .storefront-grid--dense {
    grid-template-columns: 1fr;
  }
}

/* Banner slider overrides */
.home-banner__controls {
  position: relative;
  left: 50%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  transform: translateX(-50%);
}

.home-banner__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.65rem;
  height: 3.65rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 39, 45, 0.08);
  color: var(--text);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(3, 24, 28, 0.12);
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.home-banner__arrow:hover {
  background: rgba(5, 206, 172, 0.16);
  color: var(--accent);
  transform: translateY(-1px) scale(1.03);
}

.home-banner__arrow:active {
  transform: translateY(0) scale(0.98);
}

.home-banner__counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.24rem;
  min-width: 4.6rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(3, 24, 28, 0.08);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.home-banner__counter [data-banner-current] {
  color: var(--accent);
}

.home-banner__counter-separator {
  opacity: 0.45;
}

.home-banner__dots {
  display: flex;
  gap: 0.45rem;
}

.home-banner__dots button {
  width: 2.65rem;
  height: 0.42rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 39, 45, 0.16);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.home-banner__dots button:hover {
  transform: scaleX(1.04);
}

.home-banner__dots button.is-active {
  background: var(--accent);
}

@media (max-width: 720px) {
  .home-banner__controls {
    gap: 0.55rem;
    margin-top: 0.8rem;
    flex-wrap: nowrap;
  }

  .home-banner__arrow {
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
  }

  .home-banner__counter {
    min-width: 3.85rem;
    padding: 0.42rem 0.72rem;
    font-size: 0.82rem;
  }

  .home-banner__dots button {
    width: 1.9rem;
  }
}

@media (max-width: 960px) {
  .nav__dropdown--repairs > .nav__dropdown-menu {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }

  .nav__dropdown--repairs.is-open > .nav__mobile-repairs {
    display: block;
    max-height: none !important;
    overflow: visible;
    pointer-events: auto;
  }

  .nav__mobile-repairs-group.is-open > .nav__mobile-repairs-panel {
    display: grid;
    max-height: none !important;
    overflow: visible;
  }
}

/* Home banner final layout */
.site-header {
  background: rgba(248, 255, 254, 0.96);
  box-shadow: 0 10px 30px rgba(3, 24, 28, 0.08);
}

.home-banner {
  padding: 1.15rem 0 1.45rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(5, 206, 172, 0.28), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(5, 206, 172, 0.16), transparent 24%),
    linear-gradient(180deg, #03181c 0%, #073036 58%, #eafbf8 100%);
  color: var(--text);
}

.home-banner__shell {
  max-width: 1180px;
}

.home-banner__slides {
  min-height: auto;
  aspect-ratio: 1672 / 941;
  border-radius: 1rem;
}

.home-banner__flat-link {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  background: #061b20;
  box-shadow: 0 24px 60px rgba(3, 24, 28, 0.26);
}

.home-banner__flat-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.home-banner__controls {
  width: fit-content;
  margin-top: 0.9rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(3, 24, 28, 0.88);
  box-shadow: 0 18px 36px rgba(3, 24, 28, 0.22);
}

.home-banner__arrow {
  width: 3.3rem;
  height: 3.3rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 800;
}

.home-banner__arrow:hover {
  background: var(--brand);
  color: #04282d;
}

.home-banner__counter {
  min-width: 4.4rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: none;
}

.home-banner__counter [data-banner-current] {
  color: #7ff5ec;
}

.home-banner__dots button {
  width: 2.5rem;
  height: 0.45rem;
  background: rgba(255, 255, 255, 0.28);
}

.home-banner__dots button.is-active {
  background: var(--brand);
}

@media (max-width: 720px) {
  .home-banner {
    padding: 0.75rem 0 1.1rem;
  }

  .home-banner__slides {
    aspect-ratio: 1672 / 941;
    border-radius: 0.85rem;
  }

  .home-banner__flat-link {
    border-radius: 0.85rem;
  }

  .home-banner__controls {
    gap: 0.45rem;
    padding: 0.38rem 0.5rem;
  }

  .home-banner__arrow {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 2.05rem;
  }

  .home-banner__dots button {
    width: 1.65rem;
  }
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  max-width: 76rem;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid rgba(5, 206, 172, 0.3);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(3, 24, 28, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-consent__content {
  display: grid;
  gap: 0.3rem;
}

.cookie-consent__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-consent h2,
.cookie-settings h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.15;
}

.cookie-consent p:not(.cookie-consent__eyebrow) {
  margin: 0;
  max-width: 52rem;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-consent a {
  width: fit-content;
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-consent__actions,
.cookie-settings__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.cookie-consent__button {
  border: 1px solid rgba(7, 39, 45, 0.14);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.cookie-consent__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(3, 24, 28, 0.12);
}

.cookie-consent__button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, #05ceac, #0a9f96);
  color: #ffffff;
}

.cookie-consent__button--muted {
  background: #f5fbfa;
  color: var(--text);
}

.cookie-consent__button--ghost {
  background: transparent;
  color: var(--accent);
}

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(3, 24, 28, 0.42);
}

.cookie-settings[hidden] {
  display: none;
}

.cookie-settings__card {
  position: relative;
  display: grid;
  gap: 1rem;
  width: min(34rem, 100%);
  padding: 1.25rem;
  border: 1px solid rgba(5, 206, 172, 0.25);
  border-radius: 1.35rem;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(3, 24, 28, 0.2);
}

.cookie-settings__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 39, 45, 0.06);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.cookie-settings__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(7, 39, 45, 0.1);
  border-radius: 1rem;
  background: #f8fffe;
}

.cookie-settings__option strong,
.cookie-settings__option small {
  display: block;
}

.cookie-settings__option small {
  margin-top: 0.25rem;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-settings__option input {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: #05ceac;
  flex: 0 0 auto;
}

.cookie-settings__option.is-locked {
  background: rgba(5, 206, 172, 0.08);
}

@media (max-width: 760px) {
  .cookie-consent {
    grid-template-columns: 1fr;
    padding: 0.95rem;
    border-radius: 1.1rem;
  }

  .cookie-consent__actions,
  .cookie-settings__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent__button {
    width: 100%;
  }
}
