/* These styles are generated from project.scss. */

:root {
  --shop-font-sans: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shop-color-accent: #ff7a00;
  --shop-color-accent-strong: #f06d00;
  --shop-color-accent-fade: rgba(255, 122, 0, 0.2);
  --shop-color-accent-pale: #ffe4cb;
  --shop-color-ink: #00194e;
  --shop-color-muted: #7e7e7e;
  --shop-color-icon: #a9a9a9;
  --shop-color-surface: #ffffff;
  --shop-color-surface-alt: #f3f7ff;
  --shop-color-surface-muted: #fff4ea;
  --shop-color-line: rgba(0, 25, 78, 0.08);
  --shop-color-page: #f3f7ff;
  --shop-radius-xs: 4px;
  --shop-radius-sm: 8px;
  --shop-radius-md: 12px;
  --shop-radius-lg: var(--shop-radius-md);
  --shop-shadow-none: none;
  --shop-shadow-subtle: 0 1px 2px rgba(0, 25, 78, 0.05), 0 8px 18px rgba(0, 25, 78, 0.04);
  --shop-shadow-floating: 0 10px 28px rgba(0, 25, 78, 0.09);
  --shop-shadow-card: var(--shop-shadow-subtle);
  --shop-shadow-card-hover: var(--shop-shadow-floating);
  --shop-shadow-header: 0 1px 0 rgba(0, 25, 78, 0.06), 0 8px 18px rgba(0, 25, 78, 0.035);
  --shop-focus-ring: 0 0 0 3px rgba(255, 122, 0, 0.16);
  --shop-control-height: 44px;
}

body {
  font-family: var(--shop-font-sans);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  color: var(--shop-color-ink);
  margin: 0;
}

[hidden] {
  display: none !important;
}

.shop-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.06), transparent 24%),
    linear-gradient(180deg, #f6f9ff 0%, #edf3ff 100%);
}

.shop-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shop-header-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0 0 0.5rem;
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.98), rgba(246, 249, 255, 0.78));
  backdrop-filter: blur(14px);
}

.shop-header {
  display: grid;
  grid-template-columns: auto auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.8rem 2rem;
  background: var(--shop-color-surface);
  border-bottom: 1px solid rgba(0, 25, 78, 0.04);
  box-shadow: var(--shop-shadow-header);
}

.shop-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  background: transparent;
  text-decoration: none;
}

.shop-logo__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.shop-catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: var(--shop-control-height);
  padding: 0.75rem 1rem 0.75rem 0.85rem;
  border: 1px solid var(--shop-color-accent);
  border-radius: var(--shop-radius-sm);
  background: var(--shop-color-accent);
  color: var(--shop-color-surface);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: none;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.shop-catalog-button:hover {
  background: var(--shop-color-accent-strong);
  border-color: var(--shop-color-accent-strong);
  color: var(--shop-color-surface);
}

.shop-catalog-button[aria-expanded="true"] {
  background: var(--shop-color-accent-strong);
  border-color: var(--shop-color-accent-strong);
}

.shop-catalog-button:focus-visible,
.shop-search__button:focus-visible,
.shop-header-tab:focus-visible,
.shop-button:focus-visible,
.shop-product-action:focus-visible,
.shop-quantity-picker__button:focus-visible,
.shop-cart-remove-button:focus-visible,
.shop-favorite-button:focus-visible {
  outline: 0;
  box-shadow: var(--shop-focus-ring);
}

.shop-search {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: var(--shop-control-height);
  padding-left: 1rem;
  border: 2px solid var(--shop-color-accent);
  border-radius: var(--shop-radius-sm);
  background: var(--shop-color-surface);
  overflow: hidden;
}

.shop-search__field {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--shop-color-ink);
  font-size: 1rem;
}

.shop-search__field::placeholder {
  color: var(--shop-color-muted);
}

.shop-search__field:focus {
  outline: 0;
}

.shop-search__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--shop-control-height);
  border: 0;
  background: var(--shop-color-accent);
  color: var(--shop-color-surface);
}

.shop-search__button:hover {
  background: var(--shop-color-accent-strong);
}

.shop-header-tabs {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
}

.shop-header-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  min-width: 88px;
  padding: 0.5rem 0.4rem;
  border-radius: var(--shop-radius-sm);
  color: var(--shop-color-icon);
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.shop-header-tab:hover {
  color: var(--shop-color-ink);
  background: rgba(255, 255, 255, 0.75);
}

.shop-header-tab .shop-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
}

.shop-header-tab__label {
  width: auto;
  max-width: 120px;
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.shop-hero {
  padding: 1rem 1.5rem 0;
}

.shop-hero__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: var(--shop-radius-md);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 25, 78, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shop-shadow-card);
}

.shop-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--shop-color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero__title {
  max-width: 14ch;
  margin: 0.9rem 0 0.75rem;
  font-size: clamp(2.25rem, 3.6vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.shop-hero__copy {
  max-width: 52ch;
  margin: 0 0 1rem;
  color: rgba(0, 25, 78, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.shop-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.shop-hero__chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(0, 25, 78, 0.05);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: rgba(0, 25, 78, 0.8);
  font-size: 0.92rem;
}

.shop-hero__aside {
  display: grid;
  gap: 0.85rem;
}

.shop-hero__card {
  padding: 1rem;
  border: 1px solid rgba(0, 25, 78, 0.05);
  border-radius: var(--shop-radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.shop-hero__card strong,
.shop-hero__card span {
  display: block;
}

.shop-hero__card strong {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.shop-hero__card span {
  color: rgba(0, 25, 78, 0.68);
  line-height: 1.45;
}

.shop-content {
  flex: 1 0 auto;
  padding: 1rem 2rem 3rem;
}

.shop-content__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.shop-content__title {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1;
}

.shop-content__copy {
  margin: 0.5rem 0 0;
  color: rgba(0, 25, 78, 0.62);
}

.shop-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.shop-category-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0, 25, 78, 0.05);
  border-radius: var(--shop-radius-sm);
  background: rgba(255, 255, 255, 0.85);
  color: var(--shop-color-ink);
  font-size: 1rem;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.shop-category-item.is-active,
.shop-category-item:hover {
  background: var(--shop-color-surface-muted);
  border-color: rgba(255, 122, 0, 0.14);
  box-shadow: var(--shop-shadow-subtle);
}

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

.shop-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}

.shop-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.shop-favorite-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: #bfc5d4;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.shop-favorite-button:hover,
.shop-favorite-button.is-active {
  border-color: rgba(255, 122, 0, 0.16);
  background: rgba(255, 244, 234, 0.98);
  color: var(--shop-color-accent);
}

.shop-favorite-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  line-height: 1;
}

.shop-favorite-button__icon--filled {
  color: #ff7a00;
}

.shop-favorite-button__icon--outline {
  color: inherit;
}

.shop-favorite-button .shop-icon {
  width: 0.82rem;
  height: 0.82rem;
}

.shop-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-md);
  background: #fff;
  box-shadow: var(--shop-shadow-card);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.shop-product-card:hover {
  border-color: rgba(255, 122, 0, 0.2);
  box-shadow: var(--shop-shadow-subtle);
}

.shop-product-card__media {
  position: relative;
  aspect-ratio: 1.35 / 1;
  border-radius: var(--shop-radius-md) var(--shop-radius-md) 0 0;
  background:
    linear-gradient(135deg, rgba(0, 25, 78, 0.1), rgba(255, 122, 0, 0.1)),
    var(--shop-color-surface-alt);
  overflow: hidden;
}

.shop-product-card__media-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.shop-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-product-card__favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shop-product-card__badges {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: auto;
  max-width: calc(100% - 48px);
  justify-items: start;
}

.shop-product-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(243, 247, 255, 0.96);
  color: rgba(0, 25, 78, 0.88);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.shop-product-card__badge--stock.is-in-stock {
  background: rgba(47, 173, 102, 0.14);
  color: #137446;
}

.shop-product-card__badge--stock.is-out-of-stock {
  background: rgba(226, 98, 73, 0.14);
  color: #b63a22;
}

.shop-product-card__badge--pack {
  background: rgba(255, 122, 0, 0.14);
  color: #c35d00;
}

.shop-product-card__body {
  display: grid;
  gap: 0.25rem;
  padding: 0.4rem 0.45rem 0.15rem;
}

.shop-product-card__body-link {
  color: inherit;
  text-decoration: none;
}

.shop-product-card__body-link:hover .shop-product-card__name {
  color: var(--shop-color-accent-strong);
}

.shop-product-card__name {
  margin: 0;
  color: var(--shop-color-ink);
  font-size: 1.1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.shop-product-card__meta,
.shop-product-card__description {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.25;
}

.shop-product-card__meta {
  color: rgba(0, 25, 78, 0.82);
}

.shop-product-card__description {
  color: rgba(0, 25, 78, 0.58);
}

.shop-product-card__footer {
  display: grid;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.2rem 0.25rem 0.25rem;
}

.shop-product-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  height: 40px;
  min-height: 40px;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: var(--shop-radius-sm);
  background: var(--shop-color-accent-fade);
  color: var(--shop-color-accent);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.shop-product-action:hover {
  border-color: var(--shop-color-accent);
  background: var(--shop-color-accent);
  color: var(--shop-color-surface);
}

.shop-product-action__label {
  display: inline-flex;
  align-items: center;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transform: translateX(6px);
  transition:
    max-width 0.2s ease,
    opacity 0.18s ease,
    transform 0.18s ease;
}

.shop-product-action__content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
  line-height: 1;
}

.shop-product-action:hover .shop-product-action__label,
.shop-product-action:focus-visible .shop-product-action__label {
  max-width: 120px;
  opacity: 1;
  transform: translateX(0);
}

.shop-product-action__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 40px;
  line-height: 1;
}

.shop-product-action__icon .shop-icon {
  width: 1rem;
  height: 1rem;
}

.shop-product-action__price {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}

.shop-quantity-picker {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  width: 100%;
  height: 40px;
  min-height: 40px;
  border-radius: var(--shop-radius-sm);
  background: var(--shop-color-accent);
  color: var(--shop-color-surface);
  overflow: hidden;
}

.shop-quantity-picker__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  transition:
    background-color 0.18s ease,
    opacity 0.18s ease;
}

.shop-quantity-picker__button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.14);
}

.shop-quantity-picker__button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--shop-color-accent);
}

.shop-quantity-picker__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.shop-quantity-picker__content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 40px;
  padding: 0 0.35rem;
}

.shop-quantity-picker__row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 0;
  white-space: nowrap;
}

.shop-quantity-picker__value {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.shop-quantity-picker__value small {
  font-size: 1rem;
  font-weight: 600;
}

.shop-quantity-picker__price {
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0.96;
  white-space: nowrap;
}

.shop-product-detail {
  padding-top: 1.2rem;
}

.shop-product-detail__header {
  margin-bottom: 0.9rem;
}

.shop-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
  color: rgba(0, 25, 78, 0.56);
  font-size: 0.9rem;
  line-height: 1.35;
}

.shop-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.shop-breadcrumbs__item a {
  color: rgba(0, 25, 78, 0.72);
  font-weight: 600;
  text-decoration: none;
}

.shop-breadcrumbs__item a:hover {
  color: var(--shop-color-accent);
}

.shop-breadcrumbs__item:not(:last-child)::after {
  content: ">";
  color: rgba(0, 25, 78, 0.28);
}

.shop-breadcrumbs__item.is-current {
  color: rgba(0, 25, 78, 0.72);
}

.shop-product-detail__title {
  margin: 0;
  color: var(--shop-color-ink);
  font-size: clamp(2rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.shop-product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 460px;
  gap: 1.25rem;
  align-items: start;
}

.shop-product-detail__left,
.shop-product-detail__right {
  min-width: 0;
}

.shop-product-detail__right {
  display: grid;
  gap: 0.55rem;
}

.shop-product-detail__media-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 25, 78, 0.06);
  border-radius: var(--shop-radius-sm);
  background: #fff;
  min-height: 688px;
}

.shop-product-detail__slide {
  width: 100%;
  height: 688px;
}

.shop-product-detail__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background:
    linear-gradient(135deg, rgba(0, 25, 78, 0.04), rgba(255, 122, 0, 0.05)),
    #fff;
}

.shop-product-detail__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--shop-color-ink);
  box-shadow: var(--shop-shadow-floating);
}

.shop-product-detail__nav:hover {
  background: var(--shop-color-accent);
  color: #fff;
}

.shop-product-detail__nav--prev {
  left: 16px;
}

.shop-product-detail__nav--next {
  right: 16px;
}

.shop-product-detail__nav span {
  font-size: 1.6rem;
  line-height: 1;
}

.shop-product-detail__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding-top: 0.85rem;
}

.shop-product-detail__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 25, 78, 0.18);
}

.shop-product-detail__dot.is-active {
  width: 24px;
  background: var(--shop-color-accent);
}

.shop-product-detail__panel {
  border: 1px solid rgba(0, 25, 78, 0.05);
  border-radius: var(--shop-radius-sm);
  background: rgba(255, 255, 255, 0.96);
}

.shop-product-detail__panel--summary {
  padding: 0;
  overflow: hidden;
}

.shop-product-detail__summary-actions {
  padding: 0.9rem;
}

.shop-product-detail__cta {
  display: grid;
  gap: 0.45rem;
}

.shop-product-detail__meta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0.45rem;
}

.shop-product-detail__price-block {
  display: grid;
  gap: 0.18rem;
}

.shop-product-detail__price-caption {
  color: rgba(0, 25, 78, 0.54);
  font-size: 0.8rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.shop-product-detail__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22rem;
  color: var(--shop-color-accent);
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
}

.shop-product-detail__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: var(--shop-color-surface-alt);
  color: var(--shop-color-ink);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  align-self: end;
}

.shop-product-detail__status.is-in-stock {
  background: rgba(47, 173, 102, 0.14);
  color: #137446;
}

.shop-product-detail__status.is-out-of-stock {
  background: rgba(226, 98, 73, 0.14);
  color: #b63a22;
}

.shop-product-detail__purchase .shop-product-action,
.shop-product-detail__purchase .shop-quantity-picker {
  height: var(--shop-control-height);
  min-height: var(--shop-control-height);
}

.shop-product-detail__purchase {
  display: grid;
  gap: 0.55rem;
}

.shop-product-detail__purchase-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--shop-control-height);
  gap: 0.55rem;
  align-items: stretch;
}

.shop-product-detail__purchase-main {
  position: relative;
  min-width: 0;
  min-height: var(--shop-control-height);
}

.shop-product-detail__buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: var(--shop-control-height);
  border: 1px solid var(--shop-color-accent);
  border-radius: var(--shop-radius-sm);
  background: var(--shop-color-accent);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.shop-product-detail__buy-button:hover {
  background: var(--shop-color-accent-strong);
  border-color: var(--shop-color-accent-strong);
}

.shop-product-detail__buy-button--secondary {
  background: #f3f7ff;
  color: var(--shop-color-ink);
  border: 1px solid rgba(0, 25, 78, 0.08);
}

.shop-product-detail__buy-button--secondary:hover {
  background: #eaf1ff;
  color: var(--shop-color-ink);
}

.shop-product-detail__buy-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shop-product-detail__favorite-box {
  display: flex;
  width: var(--shop-control-height);
  min-width: var(--shop-control-height);
  height: var(--shop-control-height);
}

.shop-product-detail__favorite-box .shop-favorite-button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-sm);
  background: #fff8ea;
  color: #9a9aa0;
}

.shop-product-detail__favorite-box .shop-favorite-button:hover,
.shop-product-detail__favorite-box .shop-favorite-button.is-active {
  background: #fff1d9;
  border-color: rgba(255, 122, 0, 0.18);
  color: var(--shop-color-accent);
}

.shop-product-detail__favorite-box .shop-favorite-button__icon {
  width: 18px;
  height: 18px;
}

.shop-product-detail__favorite-box .shop-favorite-button .shop-icon {
  width: 1rem;
  height: 1rem;
}

.shop-product-detail__purchase .shop-quantity-picker {
  width: 100%;
  max-width: 100%;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
}

.shop-product-detail__purchase-quantity {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  pointer-events: none;
}

.shop-product-detail__purchase .shop-quantity-picker__button {
  width: var(--shop-control-height);
  height: var(--shop-control-height);
}

.shop-product-detail__purchase .shop-quantity-picker__content,
.shop-product-detail__purchase .shop-product-action__icon {
  height: var(--shop-control-height);
}

.shop-product-detail__purchase .shop-quantity-picker__content {
  padding: 0 0.5rem;
  overflow: hidden;
}

.shop-product-detail__purchase .shop-quantity-picker__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  gap: 0.35rem;
}

.shop-product-detail__purchase .shop-quantity-picker__value {
  font-size: 0.95rem;
}

.shop-product-detail__purchase .shop-quantity-picker__value small {
  font-size: 0.82rem;
}

.shop-product-detail__purchase .shop-quantity-picker__price {
  min-width: 0;
  font-size: 0.72rem;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-product-detail__purchase .shop-quantity-picker[hidden] {
  display: none;
  pointer-events: none;
}

.shop-product-detail__purchase .shop-quantity-picker:not([hidden]) {
  pointer-events: auto;
}

.shop-product-detail__pack {
  padding: 0;
  color: rgba(0, 25, 78, 0.62);
  font-size: 0.9rem;
}

.shop-product-detail__panel--attributes {
  padding: 0.2rem 0;
}

.shop-product-detail__section-head {
  padding: 0.7rem 0.85rem 0.55rem;
}

.shop-product-detail__section-title {
  margin: 0;
  color: var(--shop-color-ink);
  font-size: 1.35rem;
  line-height: 1.12;
}

.shop-product-detail__description-text {
  padding: 0 0.85rem 0.85rem;
  color: rgba(0, 25, 78, 0.76);
  font-size: 0.98rem;
  line-height: 1.55;
}

.shop-product-detail__attributes {
  display: grid;
  gap: 0;
  padding: 0 0.85rem 0.35rem;
}

.shop-product-detail__attribute {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 25, 78, 0.06);
}

.shop-product-detail__attribute-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #535a6d;
  font-size: 0.96rem;
  line-height: 1.25;
}

.shop-product-detail__attribute-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: var(--shop-color-accent);
  flex: 0 0 auto;
}

.shop-product-detail__attribute-icon .shop-icon {
  width: 1rem;
  height: 1rem;
}

.shop-product-detail__attribute-value {
  color: var(--shop-color-ink);
  font-size: 0.96rem;
  line-height: 1.25;
  text-align: left;
  word-break: break-word;
}

.shop-ui-shell {
  padding: 3rem 0 4rem;
}

.shop-ui-hero {
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: var(--shop-radius-md);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 25, 78, 0.08), transparent 30%),
    var(--shop-color-surface);
  box-shadow: var(--shop-shadow-card);
}

.shop-ui-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--shop-color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-ui-title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.shop-ui-copy {
  max-width: 42rem;
  margin: 0;
  color: rgba(0, 25, 78, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
}

.shop-ui-grid {
  display: grid;
  gap: 1.5rem;
}

.shop-home-sections {
  display: grid;
  gap: 1.5rem;
}

.shop-home-section {
  display: grid;
  gap: 0.85rem;
}

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

.shop-catalog-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.shop-catalog-sidebar {
  min-width: 0;
}

.shop-catalog-filters {
  position: sticky;
  top: 1rem;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(0, 25, 78, 0.06);
  border-radius: var(--shop-radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shop-shadow-subtle);
}

.shop-catalog-filters__section {
  display: grid;
  gap: 0.7rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 25, 78, 0.06);
}

.shop-catalog-filters__section > * {
  min-width: 0;
}

.shop-catalog-filters__section:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.shop-catalog-filters__section[open] summary {
  margin-bottom: 0.15rem;
}

.shop-catalog-filters__title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--shop-color-ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

.shop-catalog-filters__title::after {
  content: "";
  flex: 0 0 auto;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid rgba(0, 25, 78, 0.52);
  border-bottom: 2px solid rgba(0, 25, 78, 0.52);
  transform: rotate(45deg);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.shop-catalog-filters__section[open] > .shop-catalog-filters__title::after {
  transform: rotate(225deg);
  border-color: var(--shop-color-accent);
}

.shop-catalog-filters__title::-webkit-details-marker {
  display: none;
}

.shop-filter-options {
  display: grid;
  gap: 0.55rem;
  max-height: 220px;
  overflow: auto;
  padding-right: 0.15rem;
}

.shop-filter-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(0, 25, 78, 0.78);
  font-size: 0.88rem;
  line-height: 1.35;
}

.shop-filter-check input {
  margin-top: 0.15rem;
  accent-color: var(--shop-color-accent);
}

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

.shop-catalog-filters__actions {
  display: grid;
  gap: 0.6rem;
}

.shop-catalog-results {
  min-width: 0;
}

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

.shop-catalog-toolbar__count {
  color: var(--shop-color-ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.shop-catalog-toolbar__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.shop-filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--shop-color-accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.shop-ui-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.shop-ui-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.shop-ui-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--shop-radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shop-shadow-card);
  backdrop-filter: blur(10px);
}

.shop-ui-section-title {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.shop-ui-section-copy {
  margin: 0 0 1.25rem;
  color: rgba(0, 25, 78, 0.65);
}

.shop-showcase-strip,
.shop-component-stack,
.shop-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-component-stack {
  align-items: flex-start;
}

.shop-card-column {
  display: grid;
  gap: 1rem;
}

.shop-note {
  padding: 1rem 1.25rem;
  border: 1px dashed rgba(0, 25, 78, 0.15);
  border-radius: var(--shop-radius-md);
  color: rgba(0, 25, 78, 0.75);
  background: rgba(255, 255, 255, 0.45);
}

.shop-content__head--stack {
  align-items: flex-start;
  flex-direction: column;
}

.shop-account-layout,
.shop-cart-page__grid,
.shop-checkout-grid {
  display: grid;
  gap: 1.2rem;
}

.shop-account-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
}

.shop-account-layout--compact {
  grid-template-columns: minmax(0, 540px);
  justify-content: center;
}

.shop-cart-page__grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.7fr);
  align-items: start;
}

.shop-checkout-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.55fr);
  align-items: start;
  gap: 1.35rem;
}

.shop-account-card {
  padding: 1.25rem;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-md);
  background: #fff;
  box-shadow: var(--shop-shadow-subtle);
}

.shop-account-card + .shop-account-card,
.shop-checkout-form > .shop-account-card + .shop-account-card {
  margin-top: 1rem;
}

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

.shop-account-card__title {
  margin: 0;
  color: var(--shop-color-ink);
  font-size: 1.35rem;
  line-height: 1.1;
}

.shop-account-card__text {
  margin: 0.35rem 0 0;
  color: rgba(0, 25, 78, 0.64);
  font-size: 0.94rem;
  line-height: 1.45;
}

.shop-cart-page__summary,
.shop-checkout-grid__summary {
  position: sticky;
  top: 1rem;
}

.shop-checkout-form {
  gap: 2.1rem;
}

.shop-checkout-section {
  display: grid;
  gap: 1.15rem;
}

.shop-checkout-section + .shop-checkout-section {
  padding-top: 0.25rem;
}

.shop-checkout-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.shop-checkout-section__title {
  margin: 0;
  color: var(--shop-color-ink);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.15;
}

.shop-checkout-section__field {
  max-width: none;
}

.shop-checkout-consent {
  margin-top: -0.4rem;
}

.shop-checkout-grid__summary .shop-order-summary {
  min-height: auto;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-md);
  background: #fff;
  box-shadow: var(--shop-shadow-subtle);
}

.shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--shop-control-height);
  padding: 0 1rem;
  border: 1px solid transparent;
  border-radius: var(--shop-radius-sm);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.shop-button--full {
  width: 100%;
}

.shop-button--accent {
  background: var(--shop-color-accent);
  color: #fff;
}

.shop-button--accent:hover {
  background: var(--shop-color-accent-strong);
  border-color: var(--shop-color-accent-strong);
  color: #fff;
}

.shop-button--soft {
  border-color: rgba(0, 25, 78, 0.08);
  background: #f8faff;
  color: var(--shop-color-ink);
}

.shop-button--soft:hover {
  background: #edf3ff;
  color: var(--shop-color-ink);
}

.shop-inline-message {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--shop-radius-md);
  font-size: 0.94rem;
  line-height: 1.4;
}

.shop-inline-message--error {
  background: rgba(226, 98, 73, 0.12);
  color: #aa3823;
}

.shop-inline-message--success {
  background: rgba(47, 173, 102, 0.14);
  color: #137446;
}

.shop-form-error {
  margin-top: 0.4rem;
  color: #aa3823;
  font-size: 0.86rem;
  line-height: 1.35;
}

.shop-footer {
  margin-top: auto;
  padding: 0 1.5rem 1.75rem;
}

.shop-footer__inner {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(0, 25, 78, 0.05);
  border-radius: var(--shop-radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 255, 0.98));
  box-shadow: var(--shop-shadow-subtle);
}

.shop-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(220px, 0.8fr));
  gap: 0.9rem;
  align-items: start;
}

.shop-footer__panel {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(0, 25, 78, 0.05);
  border-radius: var(--shop-radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.shop-footer__panel--brand {
  grid-row: span 2;
}

.shop-footer__panel--legal {
  grid-column: 2 / -1;
}

.shop-footer__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0.16rem 0.64rem;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.08);
  color: var(--shop-color-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-footer__title {
  margin: 0;
  color: var(--shop-color-ink);
  font-size: clamp(1.08rem, 1.5vw, 1.5rem);
  line-height: 1.2;
  font-weight: 800;
}

.shop-footer__copy {
  display: grid;
  gap: 0.7rem;
  color: rgba(0, 25, 78, 0.68);
  font-size: 0.88rem;
  line-height: 1.6;
}

.shop-footer__copy p,
.shop-footer__heading,
.shop-footer__bottom,
.shop-footer__legal-body p {
  margin: 0;
}

.shop-footer__heading {
  color: var(--shop-color-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.shop-footer__list {
  display: grid;
  gap: 0.6rem;
}

.shop-footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--shop-color-ink);
  font-size: 0.88rem;
  line-height: 1.5;
  text-decoration: none;
}

.shop-footer__contact .shop-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  margin-top: 0.16rem;
  color: var(--shop-color-accent);
}

.shop-footer__contact--lead {
  font-size: 1rem;
  font-weight: 700;
}

.shop-footer__contact:hover {
  color: var(--shop-color-accent);
}

.shop-footer__contact--text:hover {
  color: var(--shop-color-ink);
}

.shop-footer__legal {
  display: grid;
  gap: 0.8rem;
}

.shop-footer__legal-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
  list-style: none;
  color: var(--shop-color-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.shop-footer__legal-summary::-webkit-details-marker {
  display: none;
}

.shop-footer__legal-summary small {
  color: rgba(0, 25, 78, 0.48);
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
}

.shop-footer__legal-summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--shop-color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.shop-footer__legal[open] .shop-footer__legal-summary::after {
  content: "−";
}

.shop-footer__legal-body {
  padding-top: 0.1rem;
  border-top: 1px solid rgba(0, 25, 78, 0.06);
}

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

.shop-footer__legal-grid div {
  display: grid;
  gap: 0.18rem;
}

.shop-footer__legal-grid strong {
  color: var(--shop-color-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.shop-footer__legal-grid span {
  color: rgba(0, 25, 78, 0.68);
  font-size: 0.84rem;
  line-height: 1.5;
}

.shop-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1rem;
  padding: 0.1rem 0.2rem 0;
  color: rgba(0, 25, 78, 0.52);
  font-size: 0.78rem;
  line-height: 1.5;
  border-top: 1px solid rgba(0, 25, 78, 0.06);
}

@media (max-width: 1080px) {
  .shop-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-footer__panel--brand,
  .shop-footer__panel--legal {
    grid-row: auto;
    grid-column: auto;
  }

  .shop-footer__panel--brand {
    grid-column: 1 / -1;
  }

  .shop-footer__panel--legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .shop-footer {
    padding: 0 1rem 1.5rem;
  }

  .shop-footer__inner {
    padding: 1rem;
    border-radius: var(--shop-radius-md);
  }

  .shop-footer__top,
  .shop-footer__legal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .shop-footer__panel {
    padding: 0.95rem;
    border-radius: var(--shop-radius-md);
  }

  .shop-footer__title {
    font-size: 1.2rem;
    line-height: 1.24;
  }

  .shop-footer__copy {
    font-size: 0.84rem;
  }

  .shop-footer__contact--lead {
    font-size: 0.94rem;
  }

  .shop-footer__legal-summary {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .shop-footer__legal-summary small {
    white-space: normal;
  }

  .shop-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.shop-form,
.shop-checkout-form {
  display: grid;
  gap: 1rem;
}

.shop-checkout-form {
  gap: 2.1rem;
}

.shop-form-field {
  display: grid;
  gap: 0.4rem;
}

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

.shop-form-field--wide {
  grid-column: 1 / -1;
}

.shop-form-label {
  color: var(--shop-color-ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.shop-form-input {
  width: 100%;
  min-height: var(--shop-control-height);
  padding: 0 0.9rem;
  border: 1px solid rgba(0, 25, 78, 0.18);
  border-radius: var(--shop-radius-sm);
  background: #fff;
  color: var(--shop-color-ink);
  font-size: 0.95rem;
}

.shop-form-input:focus {
  border-color: rgba(255, 122, 0, 0.5);
  outline: none;
  box-shadow: var(--shop-focus-ring);
}

.shop-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(0, 25, 78, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
}

.shop-checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--shop-color-accent);
}

.shop-feature-list {
  display: grid;
  gap: 0.7rem;
}

.shop-feature-list__item,
.shop-empty-state {
  padding: 1rem;
  border-radius: var(--shop-radius-md);
  background: #f8faff;
  color: rgba(0, 25, 78, 0.7);
  font-size: 0.94rem;
  line-height: 1.5;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.shop-auth-card__phone {
  margin-bottom: 0.7rem;
  color: var(--shop-color-ink);
  font-size: 1.35rem;
  font-weight: 700;
}

.shop-auth-card__hint {
  margin: 0 0 1rem;
  color: rgba(0, 25, 78, 0.66);
  font-size: 0.92rem;
}

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

.shop-profile-card {
  padding: 1rem;
  border-radius: var(--shop-radius-md);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 255, 255, 0.9));
}

.shop-profile-card__name {
  color: var(--shop-color-ink);
  font-size: 1.2rem;
  font-weight: 700;
}

.shop-profile-card__meta {
  margin-top: 0.3rem;
  color: rgba(0, 25, 78, 0.68);
}

.shop-account-links {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.shop-account-link-card {
  display: grid;
  gap: 0.28rem;
  padding: 1rem;
  border: 1px solid rgba(0, 25, 78, 0.06);
  border-radius: var(--shop-radius-md);
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.shop-account-link-card:hover {
  border-color: rgba(255, 122, 0, 0.22);
  color: inherit;
}

.shop-account-link-card__title {
  color: var(--shop-color-ink);
  font-size: 1rem;
  font-weight: 700;
}

.shop-account-link-card__text {
  color: rgba(0, 25, 78, 0.64);
  font-size: 0.9rem;
  line-height: 1.4;
}

.shop-cart-page__lines {
  display: grid;
  gap: 0.9rem;
}

.shop-cart-line {
  display: grid;
  grid-template-columns: 112px minmax(0, 1.25fr) minmax(220px, 0.8fr) 176px;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-md);
  background: #fff;
  box-shadow: var(--shop-shadow-subtle);
}

.shop-cart-line__media {
  border-radius: var(--shop-radius-md);
  overflow: hidden;
  background: #fff;
}

.shop-cart-line__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.shop-cart-line__title {
  color: var(--shop-color-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.shop-cart-line__meta {
  margin-top: 0.35rem;
  color: rgba(0, 25, 78, 0.6);
  font-size: 0.9rem;
}

.shop-cart-line__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.shop-cart-line__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f3f7ff;
  color: var(--shop-color-ink);
  font-size: 0.8rem;
  font-weight: 600;
}

.shop-cart-line__badge.is-in-stock {
  background: rgba(47, 173, 102, 0.14);
  color: #137446;
}

.shop-cart-line__badge.is-out-of-stock {
  background: rgba(226, 98, 73, 0.14);
  color: #b63a22;
}

.shop-cart-line__controls .shop-quantity-picker {
  width: 100%;
}

.shop-cart-quantity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.shop-cart-quantity__value {
  min-width: 72px;
  padding: 0 0.75rem;
  color: var(--shop-color-ink);
  font-weight: 700;
  text-align: center;
}

.shop-cart-quantity__remove {
  width: auto;
}

.shop-cart-remove-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-sm);
  background: rgba(247, 248, 251, 0.96);
  color: rgba(0, 25, 78, 0.56);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.shop-cart-remove-button:hover {
  border-color: rgba(226, 98, 73, 0.18);
  background: rgba(226, 98, 73, 0.08);
  color: #b63a22;
}

.shop-cart-remove-button .shop-icon {
  width: 1rem;
  height: 1rem;
}

.shop-cart-line__summary {
  display: grid;
  gap: 0.7rem;
  justify-items: end;
}

.shop-cart-line__price,
.shop-cart-line__total {
  display: grid;
  gap: 0.2rem;
  justify-items: end;
}

.shop-cart-line__price-label {
  color: rgba(0, 25, 78, 0.54);
  font-size: 0.8rem;
}

.shop-cart-line__price-value,
.shop-cart-line__total-value {
  color: var(--shop-color-ink);
  font-size: 1rem;
  font-weight: 700;
}

.shop-order-summary__items {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.shop-order-summary__item,
.shop-order-summary__row,
.shop-order-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.shop-order-summary__item {
  color: rgba(0, 25, 78, 0.72);
  font-size: 0.9rem;
}

.shop-order-summary__item-name {
  min-width: 0;
  color: var(--shop-color-ink);
  line-height: 1.35;
}

.shop-order-summary__item-price {
  color: var(--shop-color-ink);
  font-weight: 700;
  white-space: nowrap;
}

.shop-order-summary__rows {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(0, 25, 78, 0.08);
}

.shop-order-summary__row {
  color: rgba(0, 25, 78, 0.72);
}

.shop-order-summary__total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 25, 78, 0.08);
  color: var(--shop-color-ink);
  font-size: 1.1rem;
}

.shop-product-card__in-cart,
.shop-field-error {
  font-size: 0.82rem;
  font-weight: 600;
}

.shop-product-card__in-cart {
  color: rgba(0, 25, 78, 0.68);
}

.shop-field-error {
  color: #b63a22;
}

.shop-favorite-form,
.shop-product-action-form,
.shop-product-detail__purchase-form {
  width: 100%;
}

.shop-order-history {
  display: grid;
  gap: 0.8rem;
}

.shop-order-history__item {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-md);
  background: rgba(255, 255, 255, 0.88);
}

.shop-segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.shop-segmented__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(0, 25, 78, 0.06);
  border-radius: var(--shop-radius-sm);
  background: #f7f8fc;
  color: rgba(0, 25, 78, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.shop-segmented__item.is-selected {
  border-color: rgba(255, 122, 0, 0.22);
  background: rgba(255, 122, 0, 0.14);
  color: var(--shop-color-accent);
}

.shop-segmented__item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.shop-checkout-options {
  display: grid;
  gap: 0.65rem;
}

.shop-checkout-option {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-md);
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

.shop-checkout-option:first-child {
  border-top: 1px solid rgba(0, 25, 78, 0.08);
  padding-top: 0.8rem;
}

.shop-checkout-option:hover,
.shop-checkout-option.is-selected {
  border-color: rgba(255, 122, 0, 0.22);
  background: rgba(255, 250, 246, 0.95);
}

.shop-checkout-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.shop-checkout-option__mark {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  border: 2px solid rgba(255, 122, 0, 0.72);
  border-radius: 999px;
}

.shop-checkout-option__input:checked + .shop-checkout-option__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: var(--shop-color-accent);
}

.shop-checkout-option__body {
  display: grid;
  gap: 0.2rem;
}

.shop-checkout-option__title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.shop-checkout-option__title {
  color: var(--shop-color-ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.18;
}

.shop-checkout-option__price {
  color: var(--shop-color-ink);
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
}

.shop-checkout-option__text {
  color: rgba(0, 25, 78, 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

.shop-auth-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 25, 78, 0.06);
  border-radius: var(--shop-radius-md);
  background: #f8faff;
}

.shop-auth-state__phone {
  color: var(--shop-color-ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.shop-auth-state__text {
  color: rgba(0, 25, 78, 0.62);
  font-size: 0.9rem;
  text-align: right;
}

@media (max-width: 1199px) {
  .shop-home-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-catalog-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .shop-account-layout,
  .shop-cart-page__grid,
  .shop-checkout-grid {
    grid-template-columns: 1fr;
  }

  .shop-checkout-grid__summary .shop-order-summary {
    min-height: auto;
    box-shadow: var(--shop-shadow-subtle);
  }

  .shop-cart-line {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .shop-cart-line__controls,
  .shop-cart-line__summary {
    grid-column: 2;
    justify-items: start;
  }

  .shop-hero__panel {
    grid-template-columns: 1fr;
  }

  .shop-product-detail__grid {
    grid-template-columns: 1fr;
  }

  .shop-product-detail__media-stage,
  .shop-product-detail__slide {
    min-height: 560px;
    height: 560px;
  }
}

@media (max-width: 991px) {
  .shop-home-strip,
  .shop-catalog-layout {
    grid-template-columns: 1fr;
  }

  .shop-catalog-filters {
    position: static;
  }

  .shop-catalog-toolbar {
    flex-direction: column;
  }

  .shop-catalog-toolbar__chips {
    justify-content: flex-start;
  }

  .shop-header {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo button tabs"
      "search search search";
  }

  .shop-header > :nth-child(1) {
    grid-area: logo;
  }

  .shop-header > :nth-child(2) {
    grid-area: button;
  }

  .shop-header > :nth-child(3) {
    grid-area: search;
  }

  .shop-header > :nth-child(4) {
    grid-area: tabs;
    justify-self: end;
  }

  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-form-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-detail__attribute {
    grid-template-columns: minmax(140px, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .shop-header-wrap {
    padding-top: 0;
  }

  .shop-header,
  .shop-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .shop-header {
    gap: 0.55rem;
    padding-top: 0.65rem;
    padding-bottom: 0.75rem;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "logo button"
      "search search"
      "tabs tabs";
    justify-items: stretch;
  }

  .shop-logo {
    width: 50px;
    height: 50px;
  }

  .shop-catalog-button {
    min-height: 44px;
    justify-self: end;
    padding: 0.65rem 0.85rem;
  }

  .shop-search {
    min-height: 44px;
  }

  .shop-header > :nth-child(4) {
    justify-self: stretch;
    width: 100%;
  }

  .shop-header-tabs {
    width: 100%;
    justify-content: space-between;
  }

  .shop-header-tab {
    flex: 1;
    min-width: 0;
    padding: 0.35rem 0.2rem;
    border-radius: var(--shop-radius-sm);
  }

  .shop-content__head {
    align-items: start;
    flex-direction: column;
  }

  .shop-account-card {
    padding: 1rem;
  }

  .shop-account-card__header,
  .shop-auth-state {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-cart-page__summary,
  .shop-checkout-grid__summary {
    position: static;
  }

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

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

  .shop-cart-line {
    grid-template-columns: 1fr;
  }

  .shop-cart-line__media {
    max-width: 180px;
  }

  .shop-cart-line__controls,
  .shop-cart-line__summary {
    grid-column: auto;
  }

  .shop-cart-line__summary,
  .shop-cart-line__price,
  .shop-cart-line__total {
    justify-items: start;
  }

  .shop-segmented {
    grid-template-columns: 1fr;
  }

  .shop-checkout-option__title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .shop-checkout-section__header {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-checkout-option__title,
  .shop-checkout-option__price {
    font-size: 1.08rem;
  }

  .shop-product-detail__title {
    font-size: 1.8rem;
  }

  .shop-product-detail__meta-row {
    grid-template-columns: 1fr;
  }

  .shop-product-detail__media-stage,
  .shop-product-detail__slide {
    min-height: 420px;
    height: 420px;
  }

  .shop-product-detail__attribute {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .shop-product-detail__attribute-value {
    text-align: left;
  }

  .shop-ui-shell {
    padding-top: 1.5rem;
  }

  .shop-ui-hero,
  .shop-ui-section,
  .shop-hero__panel {
    padding: 1.25rem;
    border-radius: var(--shop-radius-md);
  }
}

@media (max-width: 520px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-home-strip,
  .shop-filter-price {
    grid-template-columns: 1fr;
  }

  .shop-cart-line__media {
    max-width: 140px;
  }

  .shop-header-tabs {
    gap: 0.15rem;
  }

  .shop-header-tab__label {
    width: auto;
    font-size: 0.68rem;
  }

  .shop-header {
    gap: 0.45rem;
  }

  .shop-catalog-button span {
    font-size: 0.92rem;
  }
}

.shop-hero-feature {
  display: block;
  padding: 0.8rem;
  border: 1px solid rgba(226, 232, 245, 0.95);
  border-radius: var(--shop-radius-md);
  background: #fff;
  box-shadow: var(--shop-shadow-subtle);
  overflow: hidden;
}

.shop-hero-feature__header {
  display: none;
}

.shop-hero-swiper {
  padding: 0;
}

.shop-hero-swiper .swiper-wrapper {
  align-items: stretch;
}

.shop-hero-feature__slide {
  height: auto;
}

.shop-hero-feature__panel {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: stretch;
  min-height: 356px;
}

.shop-hero-feature__intro {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.4rem 0.2rem 0.2rem 0.1rem;
}

.shop-hero-feature__eyebrow {
  margin: 0;
  color: var(--shop-color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-hero-feature__title {
  margin: 0;
  color: var(--shop-color-ink);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.shop-hero-feature__description {
  margin: 0;
  max-width: 32ch;
  color: rgba(0, 25, 78, 0.66);
  font-size: 0.88rem;
  line-height: 1.45;
}

.shop-hero-feature__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.15rem;
  color: rgba(0, 25, 78, 0.46);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero-feature__meta-line {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.28);
}

.shop-hero-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  align-items: stretch;
}

.shop-hero-feature .shop-product-card {
  display: flex;
  height: 100%;
  border-radius: var(--shop-radius-md);
  border-color: rgba(0, 25, 78, 0.08);
  box-shadow: none;
}

.shop-hero-feature .shop-product-card__media {
  aspect-ratio: 1.6 / 1;
  min-height: 148px;
  border-radius: var(--shop-radius-md) var(--shop-radius-md) 0 0;
}

.shop-hero-feature .shop-product-card__favorite {
  top: 10px;
  right: 10px;
}

.shop-hero-feature .shop-favorite-button {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}

.shop-hero-feature .shop-product-card__badges {
  left: 10px;
  bottom: 10px;
  gap: 0.24rem;
}

.shop-hero-feature .shop-product-card__badge {
  min-height: 20px;
  padding: 0.18rem 0.44rem;
  font-size: 0.6rem;
}

.shop-hero-feature .shop-product-card__body {
  gap: 0.22rem;
  padding: 0.6rem 0.65rem 0.24rem;
  min-height: 86px;
}

.shop-hero-feature .shop-product-card__name {
  font-size: 0.8rem;
  line-height: 1.22;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-hero-feature .shop-product-card__meta,
.shop-hero-feature .shop-product-card__description {
  font-size: 0.66rem;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-hero-feature .shop-product-card__meta {
  -webkit-line-clamp: 1;
}

.shop-hero-feature .shop-product-card__description {
  -webkit-line-clamp: 2;
}

.shop-hero-feature .shop-product-card__footer {
  padding: 0.16rem 0.22rem 0.22rem;
}

.shop-hero-feature .shop-product-action,
.shop-hero-feature .shop-quantity-picker {
  min-height: 30px;
  height: 30px;
  border-radius: var(--shop-radius-sm);
}

.shop-hero-feature .shop-product-action {
  font-size: 0.7rem;
}

.shop-hero-feature .shop-product-action__icon {
  height: 30px;
}

.shop-hero-feature .shop-product-action__price {
  font-size: 0.72rem;
}

.shop-hero-feature .shop-quantity-picker {
  grid-template-columns: 32px minmax(0, 1fr) 32px;
}

.shop-hero-feature .shop-quantity-picker__button,
.shop-hero-feature .shop-quantity-picker__content {
  height: 30px;
}

.shop-hero-feature .shop-quantity-picker__button {
  width: 32px;
}

.shop-hero-feature .shop-quantity-picker__value,
.shop-hero-feature .shop-quantity-picker__value small,
.shop-hero-feature .shop-quantity-picker__price {
  font-size: 0.66rem;
}

.shop-hero-feature__progress {
  width: 100%;
  height: 3px;
  margin-top: 0.6rem;
  border-radius: 999px;
  background: rgba(0, 25, 78, 0.08);
  overflow: hidden;
}

.shop-hero-feature__progress::after {
  content: "";
  display: block;
  width: var(--hero-progress, 33%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--shop-color-accent), #ffb067 72%, rgba(0, 25, 78, 0.35));
  transition: width 0.4s ease;
}

.shop-catalog-overlay {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  right: 0;
  z-index: 14;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease,
    transform 0.28s ease;
}

.shop-catalog-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.shop-catalog-overlay__panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  padding: 0.8rem 1rem 1rem;
  border-radius: 0 0 var(--shop-radius-md) var(--shop-radius-md);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: var(--shop-shadow-floating);
  height: min(68vh, 700px);
  overflow: hidden;
}

.shop-catalog-overlay__content {
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  gap: 0.9rem;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.shop-catalog-menu {
  display: grid;
  gap: 0.12rem;
  padding: 0.18rem;
  border-radius: var(--shop-radius-md);
  background: #f7f8fb;
  border: 1px solid rgba(0, 25, 78, 0.06);
  min-height: 0;
  overflow: auto;
}

.shop-catalog-menu__item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 0.58rem;
  align-items: center;
  padding: 0.52rem 0.58rem;
  box-sizing: border-box;
  border-radius: var(--shop-radius-sm);
  box-shadow: inset 0 0 0 1px transparent;
  color: rgba(0, 25, 78, 0.78);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.shop-catalog-menu__item:hover,
.shop-catalog-menu__item.is-active {
  background: #fff;
  color: var(--shop-color-ink);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.22);
}

.shop-catalog-menu__icon,
.shop-category-page__child-icon,
.shop-catalog-mega__link-icon,
.shop-catalog-tree__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--shop-radius-sm);
  background: rgba(255, 122, 0, 0.1);
  color: var(--shop-color-accent);
  flex-shrink: 0;
}

.shop-catalog-menu__meta,
.shop-category-page__child-copy,
.shop-catalog-mega__link-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.shop-catalog-menu__meta strong,
.shop-category-page__child-copy strong,
.shop-catalog-mega__link-copy strong {
  color: var(--shop-color-ink);
  font-size: 0.9rem;
  line-height: 1.25;
}

.shop-catalog-menu__meta small,
.shop-category-page__child-copy small,
.shop-catalog-mega__link-copy small {
  color: rgba(0, 25, 78, 0.58);
  font-size: 0.8rem;
  line-height: 1.45;
}

.shop-catalog-mega {
  display: grid;
  gap: 0.4rem;
  min-height: 0;
  padding: 0.1rem 0.1rem 0 0;
  overflow: auto;
}

.shop-catalog-panel-view {
  display: none;
  gap: 0.75rem;
  align-content: start;
  min-height: 0;
}

.shop-catalog-panel-view.is-active {
  display: grid;
}

.shop-catalog-mega__sections {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding-right: 0.1rem;
}

.shop-catalog-mega__section {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

.shop-catalog-mega__group-title {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--shop-color-ink);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
}

.shop-catalog-mega__group-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--shop-radius-sm);
  background: rgba(255, 122, 0, 0.08);
  color: var(--shop-color-accent);
}

.shop-catalog-mega__group-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.15rem;
  row-gap: 0.12rem;
  padding-left: 2.9rem;
}

.shop-catalog-mega__item {
  position: relative;
  min-width: 0;
}

.shop-catalog-mega__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  padding: 0.22rem 0;
  border-radius: 0;
  color: var(--shop-color-ink);
  text-decoration: none;
  position: relative;
}

.shop-catalog-mega__link:hover {
  background: transparent;
  color: var(--shop-color-accent);
}

.shop-catalog-mega__link-copy {
  overflow: hidden;
}

.shop-catalog-mega__link-copy strong,
.shop-catalog-mega__link-copy small {
  overflow-wrap: anywhere;
}

.shop-catalog-mega__flyout {
  position: absolute;
  top: 0;
  left: calc(100% + 12px);
  display: none;
  min-width: 260px;
  padding: 0.7rem;
  border-radius: var(--shop-radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shop-shadow-floating);
}

.shop-catalog-mega__flyout-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.4rem;
  align-items: start;
  padding: 0.42rem 0.48rem;
  border-radius: var(--shop-radius-sm);
  color: var(--shop-color-ink);
  text-decoration: none;
  background: transparent;
}

.shop-catalog-mega__flyout-item:hover {
  background: rgba(0, 25, 78, 0.035);
}

.shop-catalog-mega__group-links .shop-catalog-mega__link-copy strong,
.shop-catalog-mega__flyout-item .shop-catalog-mega__link-copy strong {
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.28;
}

.shop-catalog-mega__group-links .shop-catalog-mega__link-copy small,
.shop-catalog-mega__flyout-item .shop-catalog-mega__link-copy small {
  font-size: 0.78rem;
  line-height: 1.25;
}

.shop-category-page {
  display: grid;
  gap: 1.3rem;
  margin-top: 1rem;
}

.shop-category-page__header {
  display: grid;
  gap: 0.3rem;
}

.shop-category-page__eyebrow {
  margin: 0;
  color: var(--shop-color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-category-page__title {
  margin: 0;
  color: var(--shop-color-ink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.02;
}

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

.shop-category-page__child {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-md);
  background: #fff;
  color: var(--shop-color-ink);
  text-decoration: none;
  box-shadow: var(--shop-shadow-subtle);
}

.shop-category-page__child:hover {
  border-color: rgba(255, 122, 0, 0.2);
  color: var(--shop-color-accent);
}

.shop-category-page__layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 1.3rem;
}

.shop-recently-viewed {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-md);
  background: #fff;
  box-shadow: var(--shop-shadow-subtle);
}

.shop-recently-viewed__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.shop-recently-viewed__eyebrow {
  margin: 0;
  color: var(--shop-color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-recently-viewed__items {
  min-width: 0;
}

.shop-recently-viewed__swiper {
  padding: 0;
  width: 100%;
  min-width: 0;
}

.shop-recently-viewed__swiper .swiper-wrapper {
  min-width: 0;
}

.shop-recently-viewed__slide {
  height: auto;
  width: 100% !important;
  min-width: 0;
}

.shop-recently-viewed__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.shop-recently-viewed__grid > * {
  min-width: 0;
}

.shop-recently-viewed--swiper .shop-product-card {
  border-radius: var(--shop-radius-md);
  border-color: rgba(0, 25, 78, 0.08);
  box-shadow: none;
}

.shop-recently-viewed--swiper .shop-product-card__media {
  aspect-ratio: 1.6 / 1;
  min-height: 148px;
  border-radius: var(--shop-radius-md) var(--shop-radius-md) 0 0;
}

.shop-recently-viewed--swiper .shop-product-card__favorite {
  top: 10px;
  right: 10px;
}

.shop-recently-viewed--swiper .shop-favorite-button {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}

.shop-recently-viewed--swiper .shop-product-card__badges {
  left: 10px;
  bottom: 10px;
  gap: 0.24rem;
}

.shop-recently-viewed--swiper .shop-product-card__badge {
  min-height: 20px;
  padding: 0.18rem 0.44rem;
  font-size: 0.6rem;
}

.shop-recently-viewed--swiper .shop-product-card__body {
  gap: 0.22rem;
  padding: 0.6rem 0.65rem 0.24rem;
}

.shop-recently-viewed--swiper .shop-product-card__name {
  font-size: 0.8rem;
  line-height: 1.22;
}

.shop-recently-viewed--swiper .shop-product-card__meta,
.shop-recently-viewed--swiper .shop-product-card__description {
  font-size: 0.66rem;
  line-height: 1.28;
}

.shop-recently-viewed--swiper .shop-product-card__description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-recently-viewed--swiper .shop-product-card__footer {
  padding: 0.16rem 0.22rem 0.22rem;
}

.shop-recently-viewed--swiper .shop-product-action,
.shop-recently-viewed--swiper .shop-quantity-picker {
  min-height: 30px;
  height: 30px;
  border-radius: var(--shop-radius-sm);
}

.shop-recently-viewed--swiper .shop-product-action {
  font-size: 0.7rem;
}

.shop-recently-viewed--swiper .shop-product-action__icon {
  height: 30px;
}

.shop-recently-viewed--swiper .shop-product-action__price {
  font-size: 0.72rem;
}

.shop-recently-viewed--swiper .shop-quantity-picker {
  grid-template-columns: 32px minmax(0, 1fr) 32px;
}

.shop-recently-viewed--swiper .shop-quantity-picker__button,
.shop-recently-viewed--swiper .shop-quantity-picker__content {
  height: 30px;
}

.shop-recently-viewed--swiper .shop-quantity-picker__button {
  width: 32px;
}

.shop-recently-viewed--swiper .shop-quantity-picker__value,
.shop-recently-viewed--swiper .shop-quantity-picker__value small,
.shop-recently-viewed--swiper .shop-quantity-picker__price {
  font-size: 0.66rem;
}

.shop-recently-viewed__progress {
  width: 100%;
  height: 3px;
  margin-top: 0.6rem;
  border-radius: 999px;
  background: rgba(0, 25, 78, 0.08);
  overflow: hidden;
}

.shop-recently-viewed__progress::after {
  content: "";
  display: block;
  width: var(--recently-viewed-progress, 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--shop-color-accent), #ffb067 72%, rgba(0, 25, 78, 0.35));
  transition: width 0.4s ease;
}

.shop-category-page__filters .shop-catalog-filters {
  position: sticky;
  top: 1rem;
}

.shop-category-page__results {
  display: grid;
  gap: 1rem;
}

.shop-catalog-filters__extra-groups {
  display: grid;
  gap: 0.7rem;
}

.shop-catalog-filters__section--nested {
  padding-bottom: 0;
  border-bottom: 0;
}

.shop-category-page--dns {
  gap: 1.1rem;
  margin-top: 0.4rem;
}

.shop-category-page--dns .shop-category-page__header--dns {
  gap: 0.9rem;
}

.shop-category-page__header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.shop-category-page__header-top .shop-breadcrumbs {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
}

.shop-category-page__title-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.1);
  border: 1px solid rgba(255, 122, 0, 0.14);
  color: var(--shop-color-accent);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.shop-category-page__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.shop-category-page__quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: rgba(0, 25, 78, 0.72);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.shop-category-page__quick-link small {
  color: rgba(0, 25, 78, 0.44);
}

.shop-category-page__layout--dns {
  grid-template-columns: minmax(250px, 286px) minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}

.shop-catalog-filters--dns {
  gap: 0.9rem;
  padding: 0.9rem;
  border-radius: var(--shop-radius-md);
  border-color: rgba(0, 25, 78, 0.08);
  background: #fff;
  box-shadow: var(--shop-shadow-subtle);
}

.shop-category-page--dns .shop-category-page__filters .shop-catalog-filters--dns {
  position: static;
  top: auto;
}

.shop-catalog-filters--dns .shop-catalog-filters__section {
  gap: 0.6rem;
  padding-bottom: 0.75rem;
}

.shop-catalog-filters--dns .shop-catalog-filters__title {
  font-size: 0.9rem;
}

.shop-catalog-filters--dns .shop-filter-options {
  gap: 0.5rem;
  max-height: 188px;
}

.shop-catalog-filters--dns .shop-filter-check {
  font-size: 0.84rem;
}

.shop-catalog-filters--dns .shop-filter-check small {
  color: rgba(0, 25, 78, 0.42);
}

.shop-catalog-filters__actions--dns {
  position: static;
  padding-top: 0.35rem;
  background: transparent;
}

.shop-category-page__results--dns {
  gap: 0.85rem;
}

.shop-category-toolbar-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-md);
  background: #fff;
  box-shadow: var(--shop-shadow-subtle);
}

.shop-category-toolbar-panel__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 1rem;
}

.shop-category-toolbar-panel__control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  min-width: min(100%, 420px);
  color: rgba(0, 25, 78, 0.56);
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: auto;
}

.shop-category-toolbar-panel__label {
  flex: 0 0 auto;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.shop-category-toolbar-panel__select {
  flex: 1 1 auto;
  min-width: 250px;
  min-height: var(--shop-control-height);
  padding: 0.7rem 1rem;
  border: 1px solid rgba(0, 25, 78, 0.07);
  border-radius: var(--shop-radius-sm);
  background: rgba(247, 248, 251, 0.9);
  color: var(--shop-color-ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.shop-category-toolbar-panel__chips {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  min-width: 0;
}

.shop-filter-chip--soft {
  background: rgba(255, 122, 0, 0.13);
  color: var(--shop-color-accent);
}

.shop-filter-chip--reset {
  background: rgba(0, 25, 78, 0.06);
  color: rgba(0, 25, 78, 0.6);
  text-decoration: none;
}

.shop-filter-chip--reset:hover {
  color: var(--shop-color-accent);
}

.shop-category-page__product-list {
  display: grid;
  gap: 0.9rem;
}

.shop-category-product-row {
  --shop-category-row-action-width: 192px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 244px;
  gap: 1.15rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 25, 78, 0.08);
  border-radius: var(--shop-radius-md);
  background: #fff;
  box-shadow: var(--shop-shadow-subtle);
}

.shop-category-product-row__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 168px;
  padding: 1rem;
  border-radius: var(--shop-radius-md);
  background: linear-gradient(180deg, #fafbfd, #f2f5fb);
  overflow: hidden;
}

.shop-category-product-row__media-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.shop-category-product-row__media img {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
}

.shop-category-product-row__content {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  padding-top: 0.15rem;
}

.shop-category-product-row__headline {
  display: grid;
  gap: 0.35rem;
}

.shop-category-product-row__title-link {
  color: inherit;
  text-decoration: none;
}

.shop-category-product-row__title {
  margin: 0;
  color: var(--shop-color-ink);
  font-size: 1rem;
  line-height: 1.35;
}

.shop-category-product-row__sku {
  margin: 0;
  color: rgba(0, 25, 78, 0.42);
  font-size: 0.76rem;
  line-height: 1.35;
}

.shop-category-product-row__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.shop-category-product-row__chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.18rem 0.58rem;
  border-radius: 999px;
  background: #f4f6fb;
  color: rgba(0, 25, 78, 0.62);
  font-size: 0.74rem;
  font-weight: 600;
}

.shop-category-product-row__chip--stock.is-in-stock {
  background: rgba(72, 173, 94, 0.12);
  color: #2b8b42;
}

.shop-category-product-row__chip--stock.is-out-of-stock {
  background: rgba(187, 33, 33, 0.1);
  color: #bc4444;
}

.shop-category-product-row__meta-line {
  margin: 0;
  color: rgba(0, 25, 78, 0.58);
  font-size: 0.84rem;
  line-height: 1.4;
}

.shop-category-product-row__aside {
  display: grid;
  gap: 0.6rem;
  align-content: center;
  justify-items: stretch;
  min-width: 0;
}

.shop-category-product-row__aside-meta {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.shop-category-product-row__actions {
  display: grid;
  grid-template-columns: 44px var(--shop-category-row-action-width);
  align-items: center;
  justify-content: end;
  gap: 0.55rem;
  width: auto;
  min-width: 0;
}

.shop-category-product-row__actions .shop-favorite-button {
  justify-self: start;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--shop-radius-md);
  background: #f7f8fb;
  position: relative;
  z-index: 1;
}

.shop-category-product-row__purchase {
  width: var(--shop-category-row-action-width);
  min-width: var(--shop-category-row-action-width);
}

.shop-category-product-row__actions .shop-product-action {
  justify-self: stretch;
  width: var(--shop-category-row-action-width);
  min-width: var(--shop-category-row-action-width);
  min-height: 44px;
  border-radius: var(--shop-radius-md);
  overflow: hidden;
}

.shop-category-product-row__actions .shop-quantity-picker {
  grid-column: 2;
  justify-self: stretch;
  width: var(--shop-category-row-action-width);
  min-width: var(--shop-category-row-action-width);
  min-height: 44px;
}

.shop-category-product-row__actions .shop-quantity-picker,
.shop-category-product-row__actions .shop-product-action {
  justify-self: stretch;
}

@media (max-width: 1180px) {
  .shop-hero-feature__panel {
    grid-template-columns: 1fr;
  }

  .shop-hero-feature__intro {
    max-width: none;
  }

  .shop-catalog-mega__group-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-category-page__children {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-category-page__layout--dns {
    grid-template-columns: 270px minmax(0, 1fr);
  }

  .shop-category-product-row {
    grid-template-columns: 150px minmax(0, 1fr) 200px;
    gap: 0.9rem;
  }
}

@media (max-width: 991px) {
  .shop-hero-feature__grid,
  .shop-recently-viewed__grid,
  .shop-catalog-overlay__content,
  .shop-category-page__layout {
    grid-template-columns: 1fr;
  }

  .shop-hero-feature {
    padding: 0.7rem;
    border-radius: var(--shop-radius-md);
  }

  .shop-catalog-overlay {
    position: static;
    padding: 0;
    margin-top: 0.75rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .shop-catalog-overlay.is-open {
    display: block;
  }

  .shop-catalog-overlay__panel {
    max-height: none;
  }

  .shop-catalog-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-catalog-mega__group-links {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .shop-catalog-mega__flyout {
    display: none !important;
  }

  .shop-category-page__filters .shop-catalog-filters {
    position: static;
  }

  .shop-category-toolbar-panel__controls {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .shop-category-toolbar-panel__control {
    margin-left: 0;
  }

  .shop-category-product-row {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .shop-category-product-row__aside {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-items: stretch;
  }

  .shop-category-product-row__aside-meta {
    grid-column: 1 / -1;
    justify-content: flex-start;
    text-align: left;
  }

  .shop-category-product-row__actions {
    justify-self: end;
    grid-template-columns: 44px var(--shop-category-row-action-width);
    max-width: 244px;
  }
}

@media (max-width: 767px) {
  .shop-hero-feature {
    padding: 0.65rem;
    border-radius: var(--shop-radius-md);
  }

  .shop-hero-feature__panel {
    gap: 0.55rem;
    min-height: 0;
  }

  .shop-hero-feature__intro {
    gap: 0.32rem;
    padding: 0.1rem 0;
  }

  .shop-hero-feature__title {
    font-size: 1.08rem;
  }

  .shop-hero-feature__description {
    font-size: 0.76rem;
  }

  .shop-hero-feature .shop-product-card__media {
    min-height: 128px;
  }

  .shop-recently-viewed--swiper .shop-product-card__media {
    min-height: 128px;
  }

  .shop-category-page__children,
  .shop-catalog-menu {
    grid-template-columns: 1fr;
  }

  .shop-catalog-mega__section {
    gap: 0.42rem;
  }

  .shop-catalog-overlay__panel {
    padding: 0.9rem;
    border-radius: 0 0 var(--shop-radius-md) var(--shop-radius-md);
    height: auto;
  }
  .shop-recently-viewed {
    padding: 1rem;
    border-radius: var(--shop-radius-md);
  }

  .shop-category-page__title-count {
    font-size: 0.84rem;
  }

  .shop-category-page__header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-category-page__quick-links {
    gap: 0.5rem;
  }

  .shop-category-page__quick-link {
    width: 100%;
    justify-content: space-between;
  }

  .shop-catalog-filters--dns {
    padding: 0.8rem;
    border-radius: var(--shop-radius-md);
  }

  .shop-category-toolbar-panel {
    display: grid;
    gap: 0.7rem;
    padding: 0.85rem;
    border-radius: var(--shop-radius-md);
  }

  .shop-category-toolbar-panel__control {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .shop-category-toolbar-panel__select {
    width: 100%;
    min-width: 0;
  }

  .shop-category-product-row {
    --shop-category-row-action-width: 192px;
    grid-template-columns: 1fr;
    padding: 0.85rem;
    border-radius: var(--shop-radius-md);
  }

  .shop-category-product-row__media {
    min-height: 136px;
  }

  .shop-category-product-row__aside {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    justify-items: end;
  }

  .shop-category-product-row__aside-meta {
    justify-content: flex-start;
    text-align: left;
  }

  .shop-category-product-row__actions {
    grid-template-columns: 44px var(--shop-category-row-action-width);
    width: auto;
    max-width: calc(44px + 0.55rem + var(--shop-category-row-action-width));
  }
}

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}
