/** Shopify CDN: Minification failed

Line 5960:0 Unexpected ".404__inner"
Line 5967:0 Unexpected ".404__code"
Line 5976:0 Unexpected ".404__title"
Line 5983:0 Unexpected ".404__body"
Line 5988:0 Unexpected ".404__actions"

**/
/*
 * 224 —  layout system (matches ./screens/*.html)
 */

.container {
  width: 100%;
  max-width: var(--container-max, 1280px);
  margin-inline: auto;
  padding-inline: var(--margin-mobile, 20px);
}

@media screen and (min-width: 990px) {
  .container {
    padding-inline: var(--margin-desktop, 64px);
  }
}

.section {
  padding-block: var(--section-gap, 80px);
}

/* ── Header ( nav) ─────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgba(194, 199, 204, 0.2);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
}

.header__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.header__logo .logo__img {
  display: block;
  width: auto;
  height: var(--logo-height-mobile, 32px);
  object-fit: contain;
}

@media screen and (min-width: 750px) {
  .header__logo .logo__img {
    height: var(--logo-height, 40px);
  }
}

.header__links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
  padding-inline: 24px;
}

@media screen and (min-width: 990px) {
  .header__links {
    display: flex;
  }
}

.header__link {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-secondary-m3, #46607d);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s var(--ease-brand),
    border-color 0.2s;
}

.header__link:hover {
  color: var(--c-primary-m3, #496171);
}

.header__link--active {
  color: var(--c-primary-m3, #496171);
  font-weight: 700;
  border-bottom-color: var(--c-primary-m3, #496171);
}

/* ── Catalog dropdown ─────────────────────────────────────── */
.header__catalog-dropdown {
  position: relative;
}

.header__catalog-trigger {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding-bottom: 4px;
}

.header__catalog-link {
  border-bottom: 2px solid transparent;
}

.header__catalog-chevron {
  font-size: 1.1em;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.2s var(--ease-brand);
}

.header__catalog-trigger[aria-expanded="true"] .header__catalog-chevron {
  transform: rotate(180deg);
}

.header__catalog-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  inset-inline-start: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(194, 199, 204, 0.45);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(70, 96, 125, 0.12);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  z-index: 200;
  opacity: 0;
  transform: translateX(-50%) translateY(-6px);
  transition:
    opacity 0.18s var(--ease-brand),
    transform 0.18s var(--ease-brand);
}

.header__catalog-menu--open {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.header__catalog-item {
  display: block;
  padding: 10px 20px;
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-secondary-m3, #46607d);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s,
    color 0.15s;
}

.header__catalog-item:hover,
.header__catalog-item--active {
  background: rgba(70, 96, 125, 0.06);
  color: var(--c-primary-m3, #496171);
}

/* ── Catalog drawer accordion ─────────────────────────────── */
.header__drawer-catalog-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.header__drawer-catalog-row .header__drawer-link {
  flex: 1;
}

.header__drawer-catalog-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--c-secondary-m3, #46607d);
}

.header__drawer-catalog-expand[aria-expanded="true"] .header__catalog-chevron {
  transform: rotate(180deg);
}

.header__drawer-catalog-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
}

.header__drawer-catalog-item {
  display: block;
  padding: 10px 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-secondary-m3, #46607d);
  text-decoration: none;
}

.header__drawer-catalog-item:hover {
  color: var(--c-primary-m3, #496171);
}

/* ── end Catalog ──────────────────────────────────────────── */

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 0;
  background: transparent;
  color: var(--c-secondary-m3, #46607d);
  cursor: pointer;
  text-decoration: none;
  transition:
    color 0.2s var(--ease-brand),
    transform 0.15s;
}

.header__icon-btn:hover {
  color: var(--c-primary-m3, #496171);
}

.header__icon-btn:active {
  transform: scale(0.95);
}

.header__icon-btn .material-symbols-outlined {
  font-size: 24px;
}

.header__cart-wrap {
  display: flex;
  align-items: center;
}

.header__cart-wrap .account-button,
.header__cart-wrap shopify-account {
  display: none !important;
}

.header__cart-wrap header-actions {
  display: flex;
  align-items: center;
}

.header__cart-wrap .header-actions__action,
.header__cart-wrap cart-drawer-component > button,
.header__cart-wrap a.action__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(194, 220, 255, 0.35);
  color: var(--c-secondary-m3, #46607d);
  text-decoration: none;
  border: 0;
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition:
    color 0.2s var(--ease-brand),
    background 0.2s;
}

.header__cart-wrap .header-actions__action:hover,
.header__cart-wrap cart-drawer-component > button:hover {
  color: var(--c-primary-m3, #496171);
}

.header__cart-wrap .header-actions__cart-icon > span:first-child,
.header__cart-wrap .header-actions__cart-icon > span.hidden {
  display: none !important;
}

@media screen and (min-width: 750px) {
  .header__cart-wrap .header-actions__cart-icon > span:first-child {
    display: inline !important;
  }
}

.header__cart-wrap .header-actions__cart-icon .svg-wrapper {
  display: none;
}

.header__cart-wrap .header-actions__cart-icon::before {
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  line-height: 1;
  content: "shopping_cart";
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.header__cart-wrap .cart-bubble {
  position: absolute;
  top: -4px;
  inset-inline-end: -4px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  aspect-ratio: 1;
  background: var(--c-red) !important;
  border-radius: 50%;
}

.header__cart-wrap .cart-bubble__background {
  background: var(--c-red) !important;
}

.header__cart-wrap .cart-bubble__text-count {
  color: #fff !important;
  font-size: 10px;
  font-weight: 700;
}

.header__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 0;
  background: transparent;
  color: var(--c-secondary-m3, #46607d);
  cursor: pointer;
}

@media screen and (min-width: 990px) {
  .header__menu-toggle {
    display: none;
  }
}

.header__drawer[hidden] {
  display: none;
}

.header__drawer:not([hidden]) {
  display: block;
}

.header__drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.header__drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.header__drawer-panel {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  padding: 24px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
}

.header__drawer-close {
  display: inline-flex;
  margin-inline-start: auto;
  margin-bottom: 24px;
  border: 0;
  background: transparent;
  color: var(--c-on-surface);
  cursor: pointer;
}

.header__drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__drawer-link {
  display: block;
  padding: 12px 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d);
  text-decoration: none;
}

body.header-drawer-open {
  overflow: hidden;
}

/* Legacy header overrides when default header is used */
header-component .header {
  background: #fff !important;
  border-bottom: 1px solid rgba(194, 199, 204, 0.35);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero-section {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: min(90vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-secondary-container, #c2dcff);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img,
.hero__bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__placeholder-svg {
  background: var(--c-secondary-container, #c2dcff);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.58),
    rgba(0, 0, 0, 0.36) 52%,
    rgba(0, 0, 0, 0.26)
  );
  z-index: 0;
  pointer-events: none;
}

.hero__bg::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: min(12%, 80px);
  height: 100%;
  background: linear-gradient(to right, rgba(194, 220, 255, 0.55), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 32px;
  align-items: center;
  padding-block: 48px;
}

@media screen and (min-width: 990px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    min-height: min(90vh, 900px);
    padding-block: 0;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__eyebrow {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary-m3, #496171);
  margin: 0;
}

.hero__title {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4.25vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--c-on-surface);
  margin: 0;
}

@media screen and (min-width: 990px) {
  .hero__title {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 18ch;
  }
}

.hero__title em,
.hero__title .accent {
  font-style: normal;
  color: var(--c-red);
}

.hero__title .hero__highlight {
  color: #fff;
  background: none;
}

.hero__body {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #b0b4b8;
  max-width: 28rem;
  margin: 0;
}

.hero__actions-wrap {
  position: relative;
  margin-top: 8px;
}

.hero__outline-mark {
  position: absolute;
  inset-inline-start: -8px;
  bottom: -24px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 0.85;
}

.hero__outline-num {
  display: block;
  font-family: var(--f-headline);
  font-weight: 900;
  font-size: clamp(5rem, 14vw, 9rem);
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
  text-stroke: 2px rgba(255, 255, 255, 0.85);
}

.hero__outline-tagline {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
  margin-inline-start: 12%;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

.hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__mark {
  display: none;
  justify-content: flex-end;
  align-items: center;
  opacity: 0.2;
  pointer-events: none;
  font-family: var(--f-headline);
  font-weight: 900;
  font-size: clamp(10rem, 22vw, 15rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--c-secondary-m3, #46607d);
}

@media screen and (min-width: 990px) {
  .hero__mark {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 20px;
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    transform 0.2s var(--ease-brand),
    filter 0.2s;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
  box-shadow: 0 10px 24px rgba(206, 8, 24, 0.2);
}

.btn--primary:hover {
  filter: brightness(1.08);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--c-secondary-m3, #46607d);
  border-color: var(--c-secondary-m3, #46607d);
}

.btn--secondary:hover {
  background: var(--c-secondary-m3, #46607d);
  color: #fff;
}

/* ── Section header ──────────────────────────────────────── */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--c-on-surface);
}

.section-head__rule {
  width: 64px;
  height: 4px;
  background: var(--c-red);
  margin-top: 8px;
}

.section-head__link {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-primary-m3, #496171);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s var(--ease-brand);
}

.section-head__link:hover {
  color: var(--c-red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.categories {
  padding-block: var(--section-gap, 80px);
}

/* ── Bento categories ( home) ──────────────────────── */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter, 24px);
}

@media screen and (min-width: 750px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 600px;
    height: auto;
  }

  .bento__tile--8 {
    grid-column: span 8;
  }

  .bento__tile--4 {
    grid-column: span 4;
  }
}

.bento__tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md, 16px);
  background: var(--c-surface-container-high, #eae7e7);
  min-height: 280px;
  text-decoration: none;
  color: inherit;
}

.bento__tile--link {
  cursor: pointer;
}

.bento__tile--link:focus-visible {
  outline: 2px solid var(--c-primary-m3, #496171);
  outline-offset: 3px;
}

.bento__media {
  position: absolute;
  inset: 0;
}

.bento__media img,
.bento__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-brand);
}

.bento__tile:hover .bento__media img {
  transform: scale(1.05);
}

.bento__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 55%);
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease-brand),
    background 0.3s var(--ease-brand);
}

.bento__tile:hover .bento__overlay {
  opacity: 0;
}

.bento__overlay--light {
  background: rgba(0, 0, 0, 0.2);
}

.bento__tile:hover .bento__overlay--light {
  background: rgba(0, 0, 0, 0.1);
}

.bento__overlay--navy {
  background: rgba(70, 96, 125, 0.3);
  mix-blend-mode: multiply;
}

.bento__tile:hover .bento__overlay--navy {
  opacity: 0.6;
}

.bento__content {
  position: absolute;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}

.bento__content--bottom {
  bottom: 32px;
  inset-inline-start: 32px;
  inset-inline-end: 32px;
}

@media screen and (max-width: 749px) {
  .bento__content--bottom {
    bottom: 24px;
    inset-inline-start: 24px;
    inset-inline-end: 24px;
  }
}

.bento__content--center {
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.bento__content h3 {
  font-family: var(--f-headline);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.3;
  margin: 0 0 8px;
}

.bento__subtitle {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  opacity: 0.85;
  margin: 0 0 16px;
}

.bento__content--center .bento__subtitle {
  margin-bottom: 8px;
}

.bento__badge {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  z-index: 2;
  background: var(--c-red);
  color: #fff;
  padding: 4px 16px;
  border-radius: 9999px;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.bento__btn {
  display: inline-block;
  margin-top: 4px;
  padding: 8px 24px;
  border-radius: 9999px;
  background: #fff;
  color: var(--c-on-surface);
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition:
    background 0.2s var(--ease-brand),
    color 0.2s var(--ease-brand);
}

.bento__tile:hover .bento__btn {
  background: var(--c-red);
  color: #fff;
}

.bento__btn--glass {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bento__tile:hover .bento__btn--glass {
  background: #fff;
  color: var(--c-on-surface);
  border-color: #fff;
}

.bento__text-link {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

/* ── Product grid ─────────────────────────────────────────── */
.products {
  background: #f6f3f2;
}

.products__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

@media screen and (min-width: 750px) {
  .products__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.products__header h2 {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--c-secondary-m3, #46607d);
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter, 24px);
}

@media screen and (min-width: 990px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  position: relative;
}

.product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 16px;
  transition: box-shadow 0.3s;
}

.product-card:hover .product-card__media {
  box-shadow: 0 20px 40px rgba(70, 96, 125, 0.08);
}

.product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__gallery {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-card__gallery .product-card__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.3s ease,
    transform 0.5s var(--ease-brand);
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.product-card__gallery .product-card__main-image[data-index="0"] {
  opacity: 1 !important;
  z-index: 2 !important;
}

.product-card__hover-zones {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 20 !important;
  cursor: pointer;
}

.product-card__hover-zone {
  flex: 1;
  height: 100%;
}

.product-card:hover .product-card__gallery .product-card__main-image {
  transform: scale(1.1);
}

.product-card__wishlist {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  color: var(--c-secondary-m3, #46607d);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s;
}

.product-card__wishlist:hover {
  color: var(--c-red);
}

.product-card__wishlist.is-active {
  color: var(--c-red);
  background: rgba(206, 8, 24, 0.12);
}

.product-card__wishlist.is-active .material-symbols-outlined {
  color: var(--c-red);
}

.product-card__wishlist .material-symbols-outlined {
  font-size: 1.25rem;
}

.product-card__quick {
  position: absolute;
  inset-inline-start: 16px;
  inset-inline-end: 16px;
  bottom: 16px;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.bento-card:hover .product-card__quick,
.product-card:hover .product-card__quick {
  opacity: 1;
  transform: translateY(0);
}

.product-card__quick-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: var(--c-on-surface);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.product-card__quick-btn .material-symbols-outlined {
  font-size: 1.125rem;
}

.product-card__quick-btn--disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.product-card__row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-inline: 8px;
}

.product-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
  color: var(--c-on-surface);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-secondary-m3);
  flex-shrink: 0;
}

.product-card__meta {
  font-size: 0.75rem;
  color: var(--c-on-surface-variant);
  padding-inline: 8px;
  margin-top: 4px;
}

/* ── Trust row ────────────────────────────────────────────── */
.trust {
  display: grid;
  gap: 32px;
  padding-top: var(--section-gap, 80px);
  margin-top: var(--section-gap, 80px);
  border-top: 1px solid rgba(194, 199, 204, 0.35);
}

@media screen and (min-width: 750px) {
  .trust {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-light-blue);
  color: var(--c-primary-m3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust__item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.trust__item p {
  font-size: 0.75rem;
  color: var(--c-on-surface-variant);
  margin: 0;
}

/* ── Brand story ──────────────────────────────────────────── */
.story-wrap {
  background: rgba(194, 220, 255, 0.2);
}

.story {
  overflow: hidden;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid rgba(194, 199, 204, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.story__grid {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 990px) {
  .story__grid {
    flex-direction: row;
  }
}

.story__copy {
  padding: 32px;
}

@media screen and (min-width: 990px) {
  .story__copy {
    width: 50%;
    padding: 64px;
  }
}

.story__eyebrow {
  color: var(--c-red);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}

.story__copy h2 {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 0 0 24px;
  line-height: 1.15;
}

.story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.story__stat-val {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: 2rem;
  color: var(--c-primary-m3);
}

.story__media {
  position: relative;
  min-height: 320px;
}

@media screen and (min-width: 990px) {
  .story__media {
    width: 50%;
    min-height: 400px;
  }
}

.story__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Journey (lifestyle split) ────────────────────────────── */
.journey__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media screen and (min-width: 990px) {
  .journey__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.journey__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.journey__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.journey__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-secondary-m3);
}

.journey__list .material-symbols-outlined {
  color: var(--c-red);
  font-size: 1.25rem;
}

.journey__heading {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--c-on-surface);
}

/* ── Homepage (index template) ───────────────────────────── */
.template-index #MainContent,
.template-index .content-for-layout {
  background: var(--c-surface, #fcf9f8);
}

.template-index .header-section:not([transparent]) header-component,
.template-index header-component .header {
  background: #fff !important;
}

.section-224-reviews.reviews .section-224-reviews__grid {
  display: grid;
  gap: var(--stack-lg, 32px);
}

@media screen and (min-width: 990px) {
  .section-224-reviews.reviews .section-224-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.material-symbols-outlined--fill {
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* ── Reviews () ─────────────────────────────────────── */
.section-224-reviews.reviews .section-224-reviews__header {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 48px;
}

.section-224-reviews.reviews .section-224-reviews__eyebrow,
.section-224-reviews.reviews .label-uppercase {
  display: none;
}

.section-224-reviews.reviews .section-224-reviews__heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.section-224-reviews.reviews .section-224-reviews__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 16px 0;
  color: var(--c-red);
  font-size: 1.25rem;
}

.section-224-reviews.reviews .section-224-reviews__subheading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-secondary-m3);
}

.section-224-reviews.reviews .section-224-reviews__aggregate {
  display: none;
}

.review-card-224.review-card {
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(194, 199, 204, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s;
}

.review-card-224.review-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.review-card-224.review-card .review-card-224__stars {
  display: none;
}

.review-card-224.review-card .review-card-224__quote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-on-surface-variant);
  margin: 0 0 24px;
}

.review-card-224.review-card .review-card-224__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card-224.review-card .review-card-224__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c2dcff;
  color: var(--c-primary-m3);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card-224.review-card .review-card-224__author {
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  display: block;
}

.review-card-224.review-card .review-card-224__detail {
  font-size: 0.75rem;
  color: var(--c-on-surface-variant);
}

/* ── Newsletter () ──────────────────────────────────── */
.section-224-newsletter.newsletter {
  background: transparent;
}

.section-224-newsletter.newsletter .section-224-newsletter__inner {
  max-width: var(--container-max, 1280px);
  margin-inline: auto;
  padding-inline: var(--margin-mobile, 20px);
}

@media screen and (min-width: 990px) {
  .section-224-newsletter.newsletter .section-224-newsletter__inner {
    padding-inline: var(--margin-desktop, 64px);
  }
}

.newsletter__card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--c-primary-m3, #496171);
  color: #fff;
  padding: 48px 32px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .newsletter__card {
    padding: 96px 64px;
  }
}

.newsletter__card::before,
.newsletter__card::after {
  content: "";
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
}

.newsletter__card::before {
  top: -96px;
  inset-inline-start: -96px;
  background: #fff;
}

.newsletter__card::after {
  bottom: -96px;
  inset-inline-end: -96px;
  background: var(--c-red);
}

.newsletter__card-inner {
  position: relative;
  z-index: 1;
}

.newsletter__card h2 {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 0 0 16px;
  color: #fff;
}

.newsletter__card .section-224-newsletter__eyebrow {
  display: none;
}

.newsletter__card .section-224-newsletter__subheading {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 36rem;
  margin: 0 auto 40px;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 28rem;
  margin-inline: auto;
}

@media screen and (min-width: 750px) {
  .newsletter__form {
    flex-direction: row;
  }
}

.newsletter__form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 16px 24px;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff;
  font-size: 1rem;
  box-shadow: none !important;
  transition:
    background 0.2s var(--ease-brand),
    border-color 0.2s var(--ease-brand);
}

.newsletter__form input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.2) !important;
  box-shadow: none !important;
  outline: none;
}

.newsletter__form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter__form button[type="submit"] {
  padding: 16px 40px;
  border-radius: 20px !important;
  background: var(--c-red);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.newsletter__disclaimer {
  margin-top: 24px;
  font-size: 0.75rem;
  opacity: 0.6;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.material-symbols-outlined--fill {
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* ── Collection / PLP ( filters + grid) ─────────────── */
.template-collection .main-collection,
.template-collection [class*="collection-wrapper"] {
  max-width: var(--container-max, 1280px);
  margin-inline: auto;
  padding-inline: var(--margin-mobile, 20px);
}

@media screen and (min-width: 990px) {
  .template-collection .main-collection,
  .template-collection [class*="collection-wrapper"] {
    padding-inline: var(--margin-desktop, 64px);
  }
}

.template-collection .product-grid [class*="product-card"],
.template-collection .product-grid .card {
  border-radius: 12px;
  overflow: hidden;
}

/* ── Product / PDP ( sticky buy box) ─────────────────── */
.template-product .product-information__grid {
  gap: var(--gutter, 24px);
}

@media screen and (min-width: 990px) {
  .template-product .product-details {
    position: sticky;
    top: 96px;
    align-self: start;
  }
}

.template-product [name="add"],
.template-product .product-form__submit {
  width: 100%;
  padding-block: 20px !important;
  border-radius: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.template-product .variant-option--buttons .variant-option__button-label {
  border-radius: 8px;
}

/* ── About page () ───────────────────────────────────── */
.template-page-about #MainContent,
.template-page-about .content-for-layout,
[data-template="page.about"] #MainContent,
[data-template="page.about"] .content-for-layout {
  background: var(--c-surface, #fcf9f8);
}

.template-page-about .shopify-section,
[data-template="page.about"] .shopify-section {
  margin: 0;
}

.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #c2dcff;
}

.about-hero__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-headline);
  font-weight: 900;
  font-size: clamp(8rem, 40vw, 28rem);
  letter-spacing: -0.06em;
  color: rgba(71, 97, 126, 0.12);
  pointer-events: none;
  user-select: none;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 56rem;
  padding-block: 48px;
}

.about-hero__title {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: clamp(3rem, 12vw, 7.5rem);
  line-height: 1;
  color: #47617e;
  margin: 0;
}

.about-hero__eyebrow {
  margin: 24px 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-secondary-m3, #46607d);
}

.about-story__grid {
  display: grid;
  gap: var(--section-gap, 80px);
  align-items: center;
}

@media screen and (min-width: 990px) {
  .about-story__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-story__copy {
  display: flex;
  flex-direction: column;
  gap: var(--stack-lg, 32px);
}

.about-story__heading {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--c-primary-m3, #496171);
  margin: 0;
}

.about-story__lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-on-surface-variant);
  margin: 0;
}

.about-story__body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-on-surface-variant);
  margin: 0;
}

.about-story__body p {
  margin: 0 0 16px;
}

.about-story__body p:last-child {
  margin-bottom: 0;
}

.about-story__handwriting {
  font-family: "Caveat", cursive;
  font-size: 2rem;
  color: var(--c-primary-m3, #496171);
  margin: 0;
  padding-top: 8px;
}

.about-story__media-wrap {
  position: relative;
}

.about-story__media {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: #f0edec;
}

.about-story__media img,
.about-story__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__quote-card {
  display: none;
  position: absolute;
  bottom: -32px;
  inset-inline-start: -32px;
  max-width: 240px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(194, 199, 204, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media screen and (min-width: 1200px) {
  .about-story__quote-card {
    display: block;
  }
}

.about-story__quote-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-secondary-m3);
  margin: 0 0 8px;
}

.about-story__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--c-on-surface-variant);
  margin: 0;
}

.about-values {
  background: #f6f3f2;
  padding-block: var(--section-gap, 80px);
}

.about-values__title {
  text-align: center;
  font-family: var(--f-headline);
  font-weight: 700;
  font-size: 2rem;
  color: var(--c-primary-m3);
  margin: 0 0 64px;
}

.about-values__grid {
  display: grid;
  gap: var(--gutter, 24px);
}

@media screen and (min-width: 990px) {
  .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-values__card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(194, 199, 204, 0.25);
  transition: border-color 0.3s;
}

.about-values__card:hover {
  border-color: rgba(73, 97, 113, 0.3);
}

.about-values__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d2ecff;
  color: var(--c-primary-m3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition:
    background 0.3s,
    color 0.3s;
}

.about-values__card:hover .about-values__icon {
  background: var(--c-primary-m3);
  color: #fff;
}

.about-values__icon .material-symbols-outlined {
  font-size: 2rem;
}

.about-values__card h3 {
  font-family: var(--f-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-primary-m3);
  margin: 0 0 16px;
}

.about-values__card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-on-surface-variant);
  margin: 0;
}

.about-life__header {
  margin-bottom: 48px;
}

.about-life__header h2 {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--c-primary-m3);
  margin: 0;
}

.about-life__header p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-on-surface-variant);
  max-width: 42rem;
  margin: 16px 0 0;
}

.about-life__grid {
  display: grid;
  gap: var(--gutter, 24px);
}

@media screen and (min-width: 990px) {
  .about-life__grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .about-life__tile--8 {
    grid-column: span 8;
  }

  .about-life__tile--4 {
    grid-column: span 4;
  }
}

.about-life__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f0edec;
  aspect-ratio: 16 / 9;
}

.about-life__tile--4 .about-life__media {
  aspect-ratio: 4 / 5;
}

.about-life__tile:nth-child(2) .about-life__media {
  background: var(--c-secondary-m3, #46607d);
}

.about-life__tile:nth-child(3) .about-life__media {
  aspect-ratio: 1;
  background: #d7ebff;
}

.about-life__tile:nth-child(4) .about-life__media {
  background: #e5e2e1;
}

.about-life__media img,
.about-life__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-brand);
}

.about-life__tile:hover .about-life__media img {
  transform: scale(1.05);
}

.about-life__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(73, 97, 113, 0.4), transparent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}

.about-life__tile:hover .about-life__caption {
  opacity: 1;
}

.about-cta-wrap {
  padding-bottom: var(--section-gap, 80px);
}

.about-cta {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--c-primary-m3, #496171);
  color: #fff;
  padding: 48px 32px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .about-cta {
    padding: 96px 64px;
  }
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

.about-cta__inner {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 0 0 16px;
  color: #fff;
}

.about-cta p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #cce6f9;
  max-width: 36rem;
  margin: 0 auto 40px;
}

.about-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 750px) {
  .about-cta__actions {
    flex-direction: row;
  }
}

.about-cta__btn-pill {
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-cta__btn-pill:hover {
  transform: scale(1.05);
}

.about-cta__btn-pill:active {
  transform: scale(0.95);
}

.about-cta__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.about-cta__btn-outline:hover {
  background: #fff;
  color: var(--c-primary-m3);
}

.about-cta__btn-outline--static {
  cursor: default;
  opacity: 0.95;
}

.about-cta__btn-outline--static:hover {
  background: transparent;
  color: #fff;
}

/* ──  footer ─────────────────────────────────────────── */
.footer-section {
  margin: 0;
}

.footer {
  width: 100%;
  background: #f6f3f2;
  border-top: 1px solid rgba(194, 199, 204, 0.35);
  border-radius: 12px 12px 0 0;
  color: var(--c-on-surface);
}

.footer__main {
  padding-block: var(--section-gap, 80px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media screen and (min-width: 990px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.footer__logo .logo__img {
  display: block;
  width: auto;
  height: var(--logo-height-mobile, 28px);
  object-fit: contain;
}

@media screen and (min-width: 750px) {
  .footer__logo .logo__img {
    height: var(--logo-height, 36px);
  }
}

.footer__logo:hover .logo__img {
  opacity: 0.85;
}

.header__logo .logo__text,
.footer__logo .logo__text {
  font-family: var(--f-headline);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.header__logo .logo__text {
  color: var(--c-on-surface, #1c1b1b);
}

.footer__logo .logo__text {
  color: var(--c-secondary-m3, #46607d);
}

.footer__logo:hover .logo__text {
  color: var(--c-red);
}

.footer__tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-on-surface-variant, #42474b);
  margin: 16px 0 0;
  max-width: 20rem;
}

.footer__social {
  margin-top: 0;
}

.footer__col--social .footer__social-links {
  margin-top: 0;
}

.footer__social-label {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-on-surface-variant, #42474b);
  margin: 0 0 12px;
}

.footer__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid
    color-mix(in srgb, var(--c-secondary-m3, #46607d) 35%, transparent);
  color: var(--c-secondary-m3, #46607d);
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.2s,
    background-color 0.2s;
}

.footer__social-link:hover {
  color: var(--c-red);
  border-color: color-mix(in srgb, var(--c-red) 45%, transparent);
  background-color: color-mix(in srgb, var(--c-red) 8%, transparent);
}

.footer__social-icon {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.footer__col-title {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-on-surface);
  margin: 0 0 16px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-on-surface-variant, #42474b);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--c-red);
}

.footer__bar {
  border-top: 1px solid rgba(194, 199, 204, 0.35);
}

.footer__bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 32px;
}

.footer__copyright {
  width: 100%;
  margin: 0;
  font-size: 1rem;
  text-align: center;
  color: var(--c-on-surface-variant, #42474b);
  opacity: 0.6;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-on-surface-variant, #42474b);
  opacity: 0.6;
}

.footer__localization-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer__localization select {
  appearance: none;
  border: none;
  background: transparent;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: inherit;
  opacity: 1;
  cursor: pointer;
  padding: 0;
}

.footer__localization select:hover {
  color: var(--c-red);
}

/* ── Product page ( PDP) ───────────────────────────── */
.template-product #MainContent,
.template-product .content-for-layout {
  background: var(--c-surface, #fcf9f8);
}

.pdp-section {
  background: var(--c-surface, #fcf9f8);
}

.pdp__inner {
  padding-block: var(--stack-lg, 32px) var(--section-gap, 80px);
}

.pdp__grid {
  display: grid;
  gap: var(--gutter, 24px);
  align-items: start;
}

@media screen and (min-width: 990px) {
  .pdp__grid {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }
}

.pdp__main-media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md, 16px);
  overflow: hidden;
  background: var(--c-surface-container, #f0edec);
}

.pdp__main-media img,
.pdp__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--stack-sm, 8px);
  margin-top: var(--stack-md, 16px);
}

.pdp__thumbs:empty {
  display: none;
}

.pdp__thumbs-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--stack-md, 16px);
  padding: 10px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(194, 199, 204, 0.55);
  background: rgba(255, 255, 255, 0.7);
  color: var(--c-secondary-m3, #46607d);
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  line-height: 1;
}

.pdp__thumbs-toggle:hover {
  border-color: rgba(73, 97, 113, 0.55);
  color: var(--c-primary-m3, #496171);
}

@media screen and (min-width: 990px) {
  .pdp__thumbs-toggle {
    display: none;
  }
}

.pdp__gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--c-black, #161616);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  transition:
    background 0.18s,
    box-shadow 0.18s;
  z-index: 2;
}

.pdp__gallery-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.pdp__gallery-arrow--prev {
  inset-inline-start: 14px;
}

.pdp__gallery-arrow--next {
  inset-inline-end: 14px;
}

.pdp__gallery-arrow .material-symbols-outlined {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
}

.pdp__gallery-arrow[hidden] {
  display: none;
}

.pdp__thumb {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm, 12px);
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  background: var(--c-surface-container, #f0edec);
  cursor: pointer;
  opacity: 0.6;
  transition:
    opacity 0.2s,
    border-color 0.2s;
}

.pdp__thumb:hover,
.pdp__thumb.is-active {
  opacity: 1;
}

.pdp__thumb.is-active {
  border-color: var(--c-primary-m3, #496171);
}

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

.pdp__details {
  display: flex;
  flex-direction: column;
  gap: var(--stack-lg, 32px);
}

@media screen and (min-width: 990px) {
  .pdp__details {
    position: sticky;
    top: 96px;
  }
}

.pdp__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(70, 96, 125, 0.6);
}

.pdp__breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.pdp__breadcrumbs a:hover {
  color: var(--c-primary-m3, #496171);
}

.pdp__breadcrumbs-current {
  color: var(--c-primary-m3, #496171);
}

.pdp__title-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp__title {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-on-surface);
  margin: 0;
}

.pdp__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.pdp__meta-pill,
.pdp__meta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 9999px;
  background: rgba(210, 236, 255, 0.35);
  color: var(--c-primary-m3, #496171);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.pdp__subtitle {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  color: var(--c-on-surface-variant, #42474b);
  font-size: 1rem;
  line-height: 1.75;
}

.pdp__price {
  font-family: var(--f-headline);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary-m3, #496171);
  margin: 0;
}

.pdp__price .price {
  font: inherit;
  color: inherit;
}

.pdp__form,
.pdp__buy-form {
  display: flex;
  flex-direction: column;
  gap: var(--stack-lg, 32px);
}

/* Override global variant styles inside  PDP */
.pdp .pdp__size-btn:has(input:checked) {
  background: rgba(210, 236, 255, 0.35) !important;
  border-color: var(--c-primary-m3, #496171) !important;
  color: var(--c-primary-m3, #496171) !important;
}

.pdp .pdp__swatches .variant-option__button-label:has(input:checked) {
  background: transparent !important;
  border: none !important;
  color: inherit !important;
}

.pdp__option {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp__option-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.pdp__option-label {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-secondary-m3, #46607d);
}

.pdp__option-value {
  color: var(--c-on-surface);
}

.pdp__size-guide {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-primary-m3, #496171);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pdp__size-guide:hover {
  color: var(--c-red);
}

.pdp__variant-picker {
  width: 100%;
}

.pdp__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.pdp__swatches .variant-option__button-label {
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
}

.pdp__swatches .swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.pdp__swatches input:checked + .swatch,
.pdp__swatches .variant-option__button-label:has(input:checked) {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px var(--c-primary-m3, #496171);
}

.pdp__sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border: none;
  padding: 0;
  margin: 0;
}

.pdp__size-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--c-outline-variant, #c2c7cc);
  border-radius: var(--radius-sm, 12px);
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
  background: transparent;
}

.pdp__size-btn:has(input:checked) {
  border: 2px solid var(--c-primary-m3, #496171);
  background: rgba(210, 236, 255, 0.35);
  color: var(--c-primary-m3, #496171);
}

.pdp__size-btn input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pdp__actions {
  display: flex;
  flex-direction: column;
  gap: var(--stack-md, 16px);
}

.pdp__atc {
  width: 100%;
  padding: 20px 24px;
  border: none;
  border-radius: var(--radius-lg, 20px);
  background: var(--c-red, #ce0818);
  color: #fff;
  font-family: var(--f-headline);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(206, 8, 24, 0.2);
  transition:
    transform 0.15s,
    background 0.2s;
}

.pdp__atc:hover:not(:disabled) {
  background: var(--c-dark-red, #6b000d);
}

.pdp__atc:active:not(:disabled) {
  transform: scale(0.98);
}

.pdp__atc:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pdp__trust {
  background: var(--c-surface-container-low, #f6f3f2);
  border-radius: var(--radius-md, 16px);
  padding: 16px;
}

.pdp__trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-secondary-m3, #46607d);
}

.pdp__trust-row .material-symbols-outlined {
  font-size: 1.25rem;
}

.pdp__trust-row--border {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(194, 199, 204, 0.35);
}

.pdp__description {
  padding-top: var(--stack-md, 16px);
  border-top: 1px solid rgba(194, 199, 204, 0.35);
}

.pdp__description p {
  font-size: 1.125rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--c-on-surface-variant, #42474b);
  margin: 0;
}

/* Wear it With bento */
.wear-with__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: var(--stack-lg, 32px);
}

.wear-with__title {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--c-on-surface);
}

.wear-with__sub {
  font-size: 1rem;
  color: var(--c-secondary-m3, #46607d);
  margin: 8px 0 0;
}

.wear-with__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-primary-m3, #496171);
  text-decoration: none;
  transition: gap 0.2s;
}

.wear-with__link:hover {
  gap: 12px;
}

.wear-with__bento {
  display: grid;
  gap: var(--gutter, 24px);
  min-height: 400px;
}

@media screen and (min-width: 990px) {
  .wear-with__bento {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    min-height: 700px;
  }

  .wear-with__card--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .wear-with__card--tall {
    grid-column: 4;
    grid-row: span 2;
  }

  .wear-with__card--small:nth-of-type(2) {
    grid-column: 3;
    grid-row: 1;
  }

  .wear-with__card--small:nth-of-type(3) {
    grid-column: 3;
    grid-row: 2;
  }
}

.wear-with__card {
  position: relative;
  border-radius: var(--radius-md, 16px);
  overflow: hidden;
  background: var(--c-surface-container, #f0edec);
  min-height: 200px;
}

.wear-with__card-media {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.wear-with__card-media img,
.wear-with__card-media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-brand);
}

.wear-with__card:hover .wear-with__card-media img {
  transform: scale(1.05);
}

.wear-with__card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--stack-lg, 32px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 55%);
  color: #fff;
  z-index: 1;
}

.wear-with__card--small .wear-with__card-overlay {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
  color: var(--c-on-surface);
  justify-content: flex-end;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-brand);
}

.wear-with__card--small:hover .wear-with__card-overlay {
  transform: translateY(0);
}

.wear-with__card-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 4px;
}

.wear-with__card-title {
  font-family: var(--f-headline);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.wear-with__card-title a {
  color: inherit;
  text-decoration: none;
}

.wear-with__card-price {
  font-family: var(--f-headline);
  font-size: 1.25rem;
  margin: 0 0 16px;
  opacity: 0.9;
}

.wear-with__quick-add {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 12px 32px;
  border-radius: 9999px;
  background: #fff;
  color: var(--c-secondary-m3, #46607d);
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.wear-with__quick-add:hover {
  background: var(--c-primary-m3, #496171);
  color: #fff;
}

/* ── Cart page () ───────────────────────────────────── */
.template-cart #MainContent,
.template-cart .content-for-layout {
  background: var(--c-surface, #fcf9f8);
}

.cart-section {
  background: var(--c-surface, #fcf9f8);
}

.cart__container {
  padding-block: var(--stack-lg, 32px) var(--section-gap, 80px);
}

.cart__toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--stack-lg, 32px);
}

.cart__heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.cart__title {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--c-on-surface);
}

.cart__count {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-on-surface-variant, #42474b);
}

.cart__continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d);
  text-decoration: none;
  transition: color 0.2s;
}

.cart__continue:hover {
  color: var(--c-primary-m3, #496171);
}

.cart__continue .material-symbols-outlined {
  font-size: 1.25rem;
}

.cart__layout {
  display: grid;
  gap: var(--gutter, 24px);
  align-items: start;
}

@media screen and (min-width: 990px) {
  .cart__layout {
    grid-template-columns: 1fr minmax(280px, 360px);
    gap: 32px;
  }
}

.cart__lines {
  display: flex;
  flex-direction: column;
  gap: var(--stack-md, 16px);
}

.cart__line {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  transition: border-color 0.15s ease;
}

.cart__line:hover {
  border-color: #ccc;
}

.cart__line.removing {
  overflow: hidden;
  animation: cart-remove 0.4s var(--ease-brand) forwards;
}

@keyframes cart-remove {
  to {
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border-width: 0;
  }
}

.cart__line-media {
  flex-shrink: 0;
  width: 96px;
}

@media screen and (min-width: 750px) {
  .cart__line-media {
    width: 120px;
  }
}

.cart__line-image {
  display: block;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
}

.cart__line-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart__line-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  gap: 12px;
  align-self: stretch;
}

.cart__line-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.cart__line-title {
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.cart__line-title a {
  color: #1a1a1a;
  text-decoration: none;
}

.cart__line-title a:hover {
  text-decoration: underline;
}

.cart__line-variant {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888;
  margin: 4px 0 0;
}

.cart__remove {
  flex-shrink: 0;
  padding: 0;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.cart__remove:hover {
  color: #1a1a1a;
  background: transparent !important;
}

.cart__line-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cart__qty .quantity-selector {
  display: inline-flex;
  align-items: center;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
  min-height: 36px;
  padding: 2px;
  box-shadow: none;
  transition: border-color 0.15s ease;
}

.cart__qty .quantity-selector:focus-within {
  border-color: #1a1a1a;
  box-shadow: none;
}

.cart__qty .quantity-selector button,
.cart__qty .quantity-selector button.button,
.cart__qty .quantity-selector button.button-unstyled {
  width: 32px;
  height: 32px;
  border: none !important;
  background: transparent !important;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background-color 0.15s ease;
}

.cart__qty .quantity-selector button .svg-wrapper {
  width: 14px;
  height: 14px;
}

.cart__qty .quantity-selector button .svg-wrapper svg {
  width: 100%;
  height: 100%;
}

.cart__qty .quantity-selector button:hover,
.cart__qty .quantity-selector button.button:hover,
.cart__qty .quantity-selector button.button-unstyled:hover {
  background: #eee !important;
  color: #1a1a1a !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.cart__qty .quantity-selector button:active {
  transform: none;
}

.cart__qty .quantity-selector button:focus-visible {
  outline: 2px solid rgba(26, 26, 26, 0.35);
  outline-offset: 1px;
}

.cart__qty .quantity-selector button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cart__qty .quantity-selector input {
  width: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #1a1a1a;
  -moz-appearance: textfield;
  padding: 0;
}

.cart__qty .quantity-selector input:focus {
  outline: none;
}

.cart__qty .quantity-selector input::-webkit-outer-spin-button,
.cart__qty .quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart__line-price {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.cart__summary {
  position: sticky;
  top: 96px;
}

.cart__summary-card {
  background: #fff;
  border: 1px solid rgba(194, 199, 204, 0.35);
  border-radius: var(--radius-md, 16px);
  padding: var(--stack-lg, 32px);
}

.cart__summary-card--drawer {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(194, 199, 204, 0.28);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, rgba(252, 249, 248, 0.98) 100%);
  box-shadow:
    0 -8px 32px rgba(28, 27, 27, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.cart__summary-head {
  display: block;
  padding: 16px 18px 14px;
  background: linear-gradient(
    180deg,
    rgba(194, 220, 255, 0.22) 0%,
    rgba(252, 249, 248, 0.45) 100%
  );
  border-bottom: 1px solid rgba(194, 199, 204, 0.26);
}

.cart__summary-head-copy {
  min-width: 0;
}

.cart__summary-title {
  font-family: var(--f-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-secondary-m3, #46607d);
  margin: 0;
  line-height: 1.2;
}

.cart__summary-card--drawer .cart__summary-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-primary-m3, #496171);
  letter-spacing: 0.01em;
}

.cart__summary-kicker {
  margin: 4px 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-on-surface-variant, #6a7075);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart__summary-rows {
  margin: 0;
  padding: 14px 18px 0;
}

.cart__summary-card--drawer .cart__summary-rows {
  padding-inline: 18px;
}

.cart__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
}

.cart__summary-row dt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-on-surface-variant, #42474b);
  font-weight: 500;
}

.cart__summary-row-icon {
  font-size: 18px;
  color: var(--c-primary-m3, #496171);
  opacity: 0.85;
}

.cart__summary-row--discount dd {
  color: var(--c-red, #ce0818);
}

.cart__summary-row dd {
  margin: 0;
  font-weight: 700;
  color: var(--c-secondary-m3, #46607d);
}

.cart__summary-link {
  color: var(--c-primary-m3, #496171);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart__summary-muted {
  color: var(--c-on-surface-variant, #42474b);
}

.cart__summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(194, 199, 204, 0.35);
  font-family: var(--f-headline);
  font-size: 1.125rem;
  font-weight: 700;
}

.cart__summary-total--drawer {
  margin: 12px 18px 0;
  padding: 14px 16px;
  border: 0;
  border-radius: 12px;
  background: rgba(194, 220, 255, 0.28);
}

.cart__summary-total-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-secondary-m3, #46607d);
  text-transform: none;
  letter-spacing: 0;
}

.cart__summary-total-value {
  font-family: var(--f-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-primary-m3, #496171);
}

.cart__summary-total--drawer .cart__summary-total-value {
  font-size: 1.375rem;
  color: var(--c-secondary-m3, #46607d);
}

.cart__checkout {
  margin-top: var(--stack-md, 16px);
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.cart__checkout--drawer {
  margin: 14px 18px 0;
  padding-bottom: 4px;
}

.cart__checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border: none;
  border-radius: 9999px;
  background: var(--c-red, #ce0818);
  color: #fff;
  font-family: var(--f-headline);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    filter 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(206, 8, 24, 0.28);
}

.cart__checkout-btn-label {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9375rem;
}

.cart__checkout-btn:hover:not(:disabled) {
  filter: brightness(1.08);
}

.cart__checkout-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.cart__checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cart__checkout-note {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-on-surface-variant, #42474b);
  margin: 12px 0 0;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.45;
}

.cart__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--stack-lg, 32px);
}

.cart__trust--drawer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 18px 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(194, 199, 204, 0.2);
}

.cart__trust-copy {
  min-width: 0;
}

.cart__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-sm, 12px);
}

.cart__trust--drawer .cart__trust-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 10px;
}

.cart__trust--drawer .cart__trust-item .material-symbols-outlined {
  font-size: 22px;
}

.cart__trust-item--secure {
  background: rgba(194, 220, 255, 0.35);
}

.cart__trust-item--secure .material-symbols-outlined {
  color: var(--c-primary-m3, #496171);
}

.cart__trust-item--guarantee {
  background: rgba(215, 235, 255, 0.5);
}

.cart__trust-item--guarantee .material-symbols-outlined {
  color: var(--c-tertiary, #356284);
}

.cart__trust-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d);
}

.cart__trust-sub {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--c-on-surface-variant, #42474b);
  line-height: 1.35;
}

.cart__trust--drawer .cart__trust-sub {
  font-size: 0.6875rem;
}

/* Free shipping progress */
.cart__shipping-bar {
  margin-bottom: var(--stack-lg, 32px);
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(194, 199, 204, 0.35);
  border-radius: var(--radius-md, 16px);
}

.cart__shipping-bar-text {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-on-surface-variant, #42474b);
  line-height: 1.45;
}

.cart__shipping-bar-text strong {
  color: var(--c-secondary-m3, #46607d);
  font-weight: 700;
}

.cart__shipping-bar-text--success {
  color: #2e7d32;
}

.cart__shipping-bar-text--success strong {
  color: #1b5e20;
}

.cart__shipping-bar-icon {
  font-size: 1.25rem;
  color: var(--c-primary-m3, #496171);
  flex-shrink: 0;
}

.cart__shipping-bar--unlocked .cart__shipping-bar-icon {
  color: #2e7d32;
}

.cart__shipping-bar-track {
  height: 6px;
  background: rgba(194, 199, 204, 0.35);
  border-radius: 999px;
  overflow: hidden;
}

.cart__shipping-bar-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--c-primary-m3, #496171),
    var(--c-secondary-m3, #46607d)
  );
  border-radius: 999px;
  transition: width 0.6s var(--ease-brand);
}

.cart__shipping-bar--unlocked .cart__shipping-bar-fill {
  background: linear-gradient(90deg, #43a047, #2e7d32);
}

/* Line item extras */
.cart__line-info {
  min-width: 0;
}

.cart__line-properties {
  margin: 6px 0 0;
  font-size: 0.8125rem;
  color: var(--c-on-surface-variant, #42474b);
}

.cart__line-property {
  display: flex;
  gap: 4px;
  margin: 0;
}

.cart__line-property dt {
  font-weight: 600;
}

.cart__line-property dd {
  margin: 0;
}

.cart__line-plan {
  margin: 4px 0 0;
  font-size: 0.8125rem;
  color: var(--c-primary-m3, #496171);
  font-weight: 600;
}

.cart__line-discounts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.cart__line-discount {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(206, 8, 24, 0.08);
  color: var(--c-red, #ce0818);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart__line-discount .material-symbols-outlined {
  font-size: 14px;
}

.cart__line-pricing {
  text-align: end;
}

.cart__line-compare {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-top: 4px;
}

.cart__line-compare s {
  font-size: 0.8125rem;
  color: var(--c-outline, #73787c);
  font-weight: 500;
}

.cart__line-unit {
  font-size: 0.75rem;
  color: var(--c-on-surface-variant, #42474b);
}

/* Summary page — simple */
.cart__summary {
  background: transparent !important;
}

.cart__summary-card--page,
.cart__summary-card--page .cart__summary-title,
.cart__summary-card--page .cart__summary-rows,
.cart__summary-card--page .cart__summary-row,
.cart__summary-card--page .cart__summary-row dt,
.cart__summary-card--page .cart__summary-row dd,
.cart__summary-card--page .cart__summary-total,
.cart__summary-card--page .cart__summary-total-label,
.cart__summary-card--page .cart__summary-total-value,
.cart__summary-card--page text-component.cart__summary-total-value {
  background: transparent !important;
  background-color: transparent !important;
}

.cart__summary-card--page {
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff !important;
  box-shadow: none;
}

.cart__summary-card--page .cart__summary-title {
  margin: 0 0 16px;
  padding: 0;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0;
}

.cart__summary-rows--page {
  padding: 0;
  margin: 0 0 12px;
}

.cart__summary-card--page .cart__summary-row {
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.cart__summary-card--page .cart__summary-row dt {
  font-weight: 400;
  color: #666;
}

.cart__summary-card--page .cart__summary-row dd {
  font-weight: 500;
  color: #1a1a1a;
}

.cart__summary-card--page .cart__summary-row--discount dd {
  color: #1a1a1a;
}

.cart__summary-card--page .cart__summary-muted {
  color: #888;
  font-weight: 400;
}

.cart__summary-card--page .cart__summary-link {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 400;
}

.cart__summary-total--page {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  background: transparent;
  font-family: var(--f-body);
}

.cart__summary-card--page .cart__summary-total-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: none;
}

.cart__summary-card--page .cart__summary-total-value {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.cart__checkout--page {
  margin-top: 16px;
}

.cart__summary-card--page .cart__checkout,
.cart__summary-card--page .cart__checkout--page {
  padding: 0;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.cart__summary-card--page .cart__checkout-btn {
  width: 100%;
  display: block;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  background: #1a1a1a !important;
  background-color: #1a1a1a !important;
  color: #fff !important;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none !important;
}

.cart__summary-card--page .cart__checkout-btn:hover:not(:disabled) {
  background: #333 !important;
  background-color: #333 !important;
  filter: none;
  transform: none;
  box-shadow: none !important;
}

.cart__summary-card--page .cart__checkout-btn:active:not(:disabled) {
  transform: none;
  background: #000 !important;
  background-color: #000 !important;
}

.cart__summary-card--page .cart__checkout-note {
  margin-top: 10px;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 400;
  color: #888 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  text-align: center;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none !important;
  transform: none !important;
}

.cart__summary-card--page .cart__actions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  gap: 6px;
}

.cart__summary-card--page .cart__action-details {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fafafa;
}

.cart__summary-card--page .cart__action-summary {
  padding: 10px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #444;
}

.cart__summary-card--page .cart__action-summary .material-symbols-outlined {
  display: none;
}

.cart__summary-card--page .cart__action-chevron {
  font-size: 18px;
  color: #888;
}

.cart__summary-card--page .cart__action-body {
  padding: 0 12px 12px;
}

.cart__summary-card--page .cart__action-textarea,
.cart__summary-card--page .cart__discount-input {
  border-color: #ddd;
  border-radius: 4px;
  background: #fff;
}

.cart__summary-card--page .cart__discount-btn {
  background: #1a1a1a;
  border-radius: 4px;
}

.cart__summary-card--page .cart__discount-btn:hover {
  background: #333;
  filter: none;
}

/* Cart actions (note + discount) — shared */
.cart__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(194, 199, 204, 0.25);
}

.cart__action-details {
  border: 1px solid rgba(194, 199, 204, 0.3);
  border-radius: 12px;
  background: var(--c-surface-container-low, #f6f3f2);
  overflow: hidden;
}

.cart__action-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d);
  list-style: none;
}

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

.cart__action-summary .material-symbols-outlined:first-child {
  font-size: 20px;
  color: var(--c-primary-m3, #496171);
}

.cart__action-chevron {
  margin-inline-start: auto;
  font-size: 20px;
  transition: transform 0.2s var(--ease-brand);
}

.cart__action-details[open] .cart__action-chevron {
  transform: rotate(180deg);
}

.cart__action-body {
  padding: 0 14px 14px;
}

.cart__action-textarea {
  width: 100%;
  min-height: 80px;
  padding: 10px 12px;
  border: 1px solid rgba(194, 199, 204, 0.45);
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 0.875rem;
  resize: vertical;
  background: #fff;
  color: var(--c-on-surface);
}

.cart__action-textarea:focus {
  outline: 2px solid rgba(73, 97, 113, 0.35);
  outline-offset: 1px;
}

.cart__discount-form {
  display: flex;
  gap: 8px;
}

.cart__discount-input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(194, 199, 204, 0.45);
  border-radius: 10px;
  font-size: 0.875rem;
  background: #fff;
}

.cart__discount-btn {
  flex-shrink: 0;
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  background: var(--c-secondary-m3, #46607d);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s;
}

.cart__discount-btn:hover {
  filter: brightness(1.08);
}

.cart__discount-error {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--c-red, #ce0818);
}

.cart__discount-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.cart__discount-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px 4px 10px;
  border-radius: 999px;
  background: rgba(73, 97, 113, 0.12);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d);
}

.cart__discount-remove {
  display: flex;
  padding: 2px;
  color: inherit;
  cursor: pointer;
  opacity: 0.7;
}

.cart__discount-remove:hover {
  opacity: 1;
}

.cart__discount-remove .material-symbols-outlined {
  font-size: 16px;
}

.cart__security-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 12px;
}

.cart__security-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-on-surface-variant, #42474b);
  opacity: 0.85;
}

.cart__security-badge .material-symbols-outlined {
  font-size: 16px;
}

/* Upsell */
.cart__upsell {
  padding-top: var(--stack-xl, 48px);
  margin-top: var(--stack-xl, 48px);
  border-top: 1px solid rgba(194, 199, 204, 0.25);
}

.cart__upsell-head {
  margin-bottom: var(--stack-md, 16px);
}

.cart__upsell-title {
  font-family: var(--f-headline);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--c-on-surface);
}

.cart__upsell-sub {
  margin: 0;
  font-size: 0.875rem;
  color: var(--c-on-surface-variant, #42474b);
}

.cart__upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter, 24px);
}

@media screen and (min-width: 750px) {
  .cart__upsell-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cart__upsell-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.cart__upsell-link {
  text-decoration: none;
  color: inherit;
  flex: 1;
}

.cart__upsell-media {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md, 16px);
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--c-surface-container-low, #f6f3f2);
  border: 1px solid rgba(194, 199, 204, 0.2);
}

.cart__upsell-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-brand);
}

.cart__upsell-card:hover .cart__upsell-media img {
  transform: scale(1.05);
}

.cart__upsell-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d);
  margin: 0 0 4px;
  line-height: 1.35;
}

.cart__upsell-price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-on-surface-variant, #42474b);
  margin: 0;
}

.cart__upsell-compare {
  margin-inline-end: 4px;
  font-weight: 500;
  opacity: 0.65;
}

.cart__upsell-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(73, 97, 113, 0.1);
  color: var(--c-secondary-m3, #46607d);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.cart__upsell-add:hover {
  background: rgba(73, 97, 113, 0.18);
}

.cart__upsell-add-form {
  margin: 8px 0 0;
}

/* Empty state */
.cart__empty {
  text-align: center;
  padding: 48px 24px 64px;
  max-width: 480px;
  margin: 0 auto;
}

.cart.cart--empty .cart__container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 160px);
}

.cart.cart--empty .cart__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  gap: 0;
}

.cart.cart--empty .cart__main {
  width: 100%;
}

.cart__empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(194, 220, 255, 0.35);
}

.cart__empty-icon .material-symbols-outlined {
  font-size: 44px;
  color: var(--c-primary-m3, #496171);
}

.cart__empty-heading {
  font-family: var(--f-headline);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--c-on-surface);
}

.cart__empty-text {
  font-size: 1rem;
  color: var(--c-on-surface-variant);
  margin: 0 0 28px;
  line-height: 1.55;
}

.cart__empty-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media screen and (min-width: 480px) {
  .cart__empty-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Mobile sticky checkout bar */
.cart__mobile-bar {
  display: block;
  position: fixed;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  z-index: 20;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(194, 199, 204, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px rgba(28, 27, 27, 0.08);
}

@media screen and (min-width: 990px) {
  .cart__mobile-bar {
    display: none;
  }
}

.cart__mobile-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart__mobile-bar-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-on-surface-variant, #42474b);
}

.cart__mobile-bar-value {
  font-family: var(--f-headline);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-primary-m3, #496171);
}

.cart__mobile-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  background: var(--c-red, #ce0818);
  color: #fff;
  font-family: var(--f-headline);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(206, 8, 24, 0.28);
  white-space: nowrap;
}

.cart__mobile-bar-btn .material-symbols-outlined {
  font-size: 18px;
}

.template-cart .cart-section {
  padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
}

@media screen and (min-width: 990px) {
  .template-cart .cart-section {
    padding-bottom: 0;
  }
}

/* ── Cart drawer () ──────────────────────────────────── */
.cart-drawer .cart-drawer__dialog {
  background: var(--c-surface, #fcf9f8);
  border-inline-start: 1px solid rgba(194, 199, 204, 0.35);
  box-shadow: -8px 0 40px rgba(28, 27, 27, 0.12);
}

@media screen and (min-width: 750px) {
  .cart-drawer .cart-drawer__dialog {
    width: min(28rem, 100vw);
    max-width: 100vw;
  }
}

.cart-drawer .cart-drawer__inner {
  background: var(--c-surface, #fcf9f8);
}

.cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(194, 199, 204, 0.25);
  background: #fff;
}

@media screen and (min-width: 750px) {
  .cart-drawer__header {
    padding: 24px 28px 20px;
  }
}

.cart-drawer__title-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.cart-drawer__title {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--c-primary-m3, #496171);
  margin: 0;
  line-height: 1.2;
}

.cart-drawer__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--c-secondary-m3, #46607d);
  transition:
    background 0.2s var(--ease-brand),
    color 0.2s;
}

.cart-drawer__close:hover {
  background: var(--c-light-blue, #d7ebff);
  color: var(--c-primary-m3, #496171);
}

.cart-drawer__close .material-symbols-outlined {
  font-size: 24px;
}

.cart-drawer .cart-drawer__content {
  --header-height: 72px;
  background: var(--c-surface, #fcf9f8);
}

.cart-drawer__continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 20px 0;
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-secondary-m3, #46607d);
  text-decoration: none;
  transition: color 0.2s;
}

.cart-drawer__continue:hover {
  color: var(--c-primary-m3, #496171);
}

.cart-drawer__continue .material-symbols-outlined {
  font-size: 20px;
}

@media screen and (min-width: 750px) {
  .cart-drawer__continue {
    margin: 20px 28px 0;
  }
}

.cart-drawer .cart-drawer__items {
  padding: 16px 20px;
  flex: 1 1 auto;
}

@media screen and (min-width: 750px) {
  .cart-drawer .cart-drawer__items {
    padding: 16px 28px;
  }
}

.cart-drawer .cart__lines {
  gap: 12px;
}

.cart-drawer .cart__line {
  flex-direction: row;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(194, 199, 204, 0.25);
}

.cart-drawer .cart__line:hover {
  border-color: rgba(73, 97, 113, 0.35);
}

.cart-drawer .cart__line-media {
  width: 88px;
  flex-shrink: 0;
}

.cart-drawer .cart__line-image {
  aspect-ratio: 1;
  border-radius: 8px;
}

.cart-drawer .cart__line-title {
  font-size: 1rem;
}

.cart-drawer .cart__line-variant {
  font-size: 0.6875rem;
}

.cart-drawer .cart__line-price {
  font-size: 1rem;
}

.cart-drawer .cart__remove .material-symbols-outlined {
  font-size: 22px;
}

.cart-drawer .cart-drawer__upsell {
  padding: 0 20px 16px;
}

@media screen and (min-width: 750px) {
  .cart-drawer .cart-drawer__upsell {
    padding: 0 28px 20px;
  }
}

.cart-drawer__upsell-title {
  font-family: var(--f-headline);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-primary-m3, #496171);
  margin: 0 0 12px;
}

.cart-drawer__upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cart-drawer__upsell-card {
  text-decoration: none;
  color: inherit;
}

.cart-drawer__upsell-media {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: var(--c-surface-container, #f0edec);
  border: 1px solid rgba(194, 199, 204, 0.2);
  margin-bottom: 8px;
}

.cart-drawer__upsell-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-brand);
}

.cart-drawer__upsell-card:hover .cart-drawer__upsell-media img {
  transform: scale(1.05);
}

.cart-drawer__upsell-name {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d);
}

.cart-drawer__upsell-price {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-on-surface-variant, #42474b);
  margin-top: 2px;
}

.cart-drawer .cart-drawer__summary-wrap {
  position: sticky;
  bottom: 0;
  z-index: 2;
  padding: 0 20px 20px;
  margin-top: auto;
  background: linear-gradient(
    to top,
    var(--c-surface, #fcf9f8) 85%,
    transparent
  );
  mask-image: none;
}

@media screen and (min-width: 750px) {
  .cart-drawer .cart-drawer__summary-wrap {
    padding: 0 28px 28px;
  }
}

.cart-drawer .cart-drawer__summary .cart__summary-card--drawer {
  padding: 0;
  border-radius: 16px;
}

.cart-drawer .cart-drawer__trust {
  gap: 8px;
}

.cart-drawer.cart-drawer--empty .cart-drawer__content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

.cart-drawer__empty {
  text-align: center;
  padding: 48px 24px;
}

.cart-drawer__empty-icon {
  font-size: 56px;
  color: var(--c-secondary-m3, #46607d);
  opacity: 0.45;
  margin-bottom: 16px;
}

.cart-drawer__empty-text {
  font-size: 1.125rem;
  color: var(--c-on-surface-variant, #42474b);
  margin: 0 0 24px;
}

.cart-drawer__empty-cta {
  display: inline-flex;
}

.cart-drawer .cart-drawer__heading .cart-bubble {
  display: none;
}

/* ── Collection page () ─────────────────────────────── */
.template-collection #MainContent,
.template-collection .content-for-layout {
  background: var(--c-surface, #fcf9f8);
}

.col-section {
  background: var(--c-surface, #fcf9f8);
  padding-block: var(--stack-lg, 32px) var(--section-gap, 80px);
}

.col__header {
  margin-bottom: var(--section-gap, 80px);
}

.col__title {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--c-on-surface);
}

.col__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-on-surface-variant, #42474b);
  max-width: 42rem;
  margin: 12px 0 0;
}

.col__layout {
  display: grid;
  gap: var(--gutter, 24px);
  align-items: start;
}

@media screen and (min-width: 990px) {
  .col__layout:has(.col__sidebar) {
    grid-template-columns: 256px 1fr;
  }
}

.col__sidebar {
  display: contents;
}

@media screen and (min-width: 990px) {
  .col__sidebar {
    display: block;
    position: sticky;
    top: 96px;
  }
}

.col__filters-toggle {
  display: flex;
  width: 100%;
  margin-bottom: 12px;
  grid-column: 1 / -1;
}

@media screen and (min-width: 990px) {
  .col__filters-toggle {
    display: none;
  }
}

.col__filters-panel {
  display: none;
}

.col__filters-panel.is-open {
  display: block;
  grid-column: 1 / -1;
  margin-bottom: 24px;
}

@media screen and (min-width: 990px) {
  .col__filters-panel {
    display: block;
  }

  .col__filters-panel.is-open {
    margin-bottom: 0;
  }
}

.col__filters-card {
  background: rgba(210, 236, 255, 0.35);
  border-radius: var(--radius-md, 16px);
  padding: var(--stack-md, 16px);
}

.col__filters-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.col__filters-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary-m3, #496171);
  margin: 0;
}

.col__clear-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-red);
  text-decoration: underline;
  cursor: pointer;
}

.col__filter-list .facets__panel {
  border: none;
  background: transparent;
}

.col__filter-list .facets__summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-on-surface);
}

.col__filter-list .facets__summary::-webkit-details-marker {
  display: none;
}

.col__filter-list .facets__summary::after {
  content: none;
}

.col__filter-list details[open] .facets__summary::after {
  transform: none;
}

.col__filter-list .facets__label {
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
}

.col__filter-list .facets__inputs {
  padding-bottom: 12px;
}

.col__filter-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--c-on-surface-variant);
  cursor: pointer;
  padding: 4px 0;
}

.col__filter-list label:hover {
  color: var(--c-primary-m3);
}

.col__filter-list input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--c-primary-m3, #496171);
}

/* Collection / search filter inputs — rounded  fields */
.col-section {
  --filter-input-radius: var(--radius-sm, 12px);
  --filter-pill-radius: 8px;
}

.col__filters-card .field,
.col__filters-card .price-facet__field {
  position: relative;
  border-radius: var(--filter-input-radius);
}

.col__filters-card .field__input,
.col__filters-card .price-facet__input,
.col__filter-list input[type="text"],
.col__filter-list input[type="search"],
.col__filter-list input[type="number"],
.col__filter-list select {
  border-radius: var(--filter-input-radius) !important;
  border: 1px solid rgba(194, 199, 204, 0.5) !important;
  background: #fff !important;
  box-shadow: none !important;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--c-on-surface, #1c1b1b);
  transition:
    border-color 0.2s var(--ease-brand),
    box-shadow 0.2s var(--ease-brand),
    background-color 0.2s var(--ease-brand);
}

.col__filters-card .field__input:hover,
.col__filters-card .price-facet__input:hover,
.col__filter-list select:hover {
  background: #fff !important;
  border-color: rgba(73, 97, 113, 0.45) !important;
}

.col__filters-card .field__input:focus,
.col__filters-card .price-facet__input:focus,
.col__filter-list select:focus {
  outline: none !important;
  border-color: var(--c-primary-m3, #496171) !important;
  box-shadow: 0 0 0 3px rgba(194, 220, 255, 0.65) !important;
  background: #fff !important;
}

.col__filters-card .price-facet__inputs-wrapper {
  gap: 10px;
  padding: 0;
}

.col__filters-card .price-facet__field {
  flex: 1;
  min-width: 0;
}

.col__filters-card .price-facet__input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px 10px 2.75rem !important;
  text-align: start;
}

.col__filters-card .price-facet__label {
  border-radius: var(--filter-input-radius) 0 0 var(--filter-input-radius);
  pointer-events: none;
}

.col__filters-card .price-facet__separator {
  flex-shrink: 0;
  padding: 0 2px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-on-surface-variant, #42474b);
}

.col__filters-card .price-facet__highest-price {
  margin-top: 8px;
  padding: 0;
  font-size: 0.75rem;
  color: var(--c-on-surface-variant, #42474b);
}

/*  price filter — min/max dropdowns */
.col__filter-list .price-facet__selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  padding: 0;
}

.col__filter-list .price-facet__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.col__filter-list .price-facet__label {
  font-family: var(--f-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-on-surface-variant, #42474b);
}

.col__filter-list .price-facet__select {
  width: 100%;
  min-height: 44px;
  padding: 10px 36px 10px 12px !important;
  text-align: start;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%2346607d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 18px !important;
}

.col__filter-list .price-facet__range-hint {
  margin: 10px 0 0;
  padding: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--c-on-surface-variant, #42474b);
}

@media screen and (max-width: 749px) {
  .col__filter-list .price-facet__selects {
    grid-template-columns: 1fr;
  }
}

.col__filter-list .facets__pill-label {
  --pill-label-border-radius: var(--filter-pill-radius);
  border-radius: var(--filter-pill-radius) !important;
  min-height: 40px;
  background: #fff !important;
  box-shadow: inset 0 0 0 1px rgba(194, 199, 204, 0.5) !important;
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d) !important;
  transition:
    background-color 0.2s var(--ease-brand),
    color 0.2s var(--ease-brand),
    box-shadow 0.2s var(--ease-brand);
}

.col__filter-list .facets__pill-input:checked + .facets__pill-label {
  background: var(--c-primary-m3, #496171) !important;
  color: #fff !important;
  box-shadow: inset 0 0 0 1px var(--c-primary-m3, #496171) !important;
}

.col__filter-list .checkbox .icon-checkmark {
  border-radius: 6px;
  border-color: rgba(194, 199, 204, 0.65);
}

.col__filter-list .checkbox__input:checked + .checkbox__label .icon-checkmark {
  background-color: var(--c-primary-m3, #496171);
  border-color: var(--c-primary-m3, #496171);
  border-radius: 6px;
}

.col__filter-list .facets__panel-content,
.col__filter-list .facets__inputs-wrapper {
  border-radius: 0;
}

.col__sort-form {
  padding: 6px 12px 6px 14px;
  border-radius: var(--filter-input-radius);
  background: #fff;
  border: 1px solid rgba(194, 199, 204, 0.45);
}

.col__sort-select {
  border-radius: var(--filter-input-radius);
  padding: 6px 28px 6px 4px;
  min-height: 36px;
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%2346607d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat right 2px center;
  appearance: none;
  -webkit-appearance: none;
}

.col__sort-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(194, 220, 255, 0.65);
}

.col__toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  margin-bottom: var(--stack-lg, 32px);
  background: rgba(210, 236, 255, 0.2);
  border-radius: var(--radius-md, 16px);
}

@media screen and (min-width: 750px) {
  .col__toolbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.col__count {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d);
  margin: 0;
}

.col__sort-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.col__sort-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-on-surface-variant);
}

.col__sort-select {
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-primary-m3, #496171);
  cursor: pointer;
  padding: 0;
}

.col__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter, 24px);
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 990px) {
  .col__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.col__grid-item {
  list-style: none;
}

/* Collection product card */
.col-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md, 16px);
  background: var(--c-surface-container-high, #eae7e7);
  margin-bottom: 8px;
}

.col-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.col-card__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-brand);
}

.product-card:hover .col-card__image-link img {
  transform: scale(1.05);
}

.col-card__badge {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.col-card__badge--new {
  background: var(--c-red, #ce0818);
}

.col-card__badge--limited {
  background: var(--c-primary-m3, #496171);
}

.col-card__quick {
  position: absolute;
  inset-inline-start: 16px;
  inset-inline-end: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 9999px;
  background: #fff;
  color: var(--c-secondary-m3, #46607d);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.2s,
    color 0.2s;
  border: none;
  cursor: pointer;
}

.product-card:hover .col-card__quick {
  opacity: 1;
  transform: translateY(0);
}

.col-card__quick:hover {
  background: var(--c-secondary-m3, #46607d);
  color: #fff;
}

.col-card__quick-form {
  position: absolute;
  inset-inline-start: 16px;
  inset-inline-end: 16px;
  bottom: 16px;
  z-index: 2;
}

.col-card__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.col-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.col-card__title a {
  color: var(--c-on-surface);
  text-decoration: none;
  transition: color 0.2s;
}

.product-card:hover .col-card__title a {
  color: var(--c-primary-m3, #496171);
}

.col-card__meta {
  font-size: 0.75rem;
  color: var(--c-on-surface-variant, #42474b);
  margin: 0;
}

.col-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d);
  flex-shrink: 0;
}

.col__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: var(--section-gap, 80px);
}

.col__page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--c-outline-variant, #c2c7cc);
  color: var(--c-secondary-m3, #46607d);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.col__page-btn:hover {
  border-color: var(--c-primary-m3);
  color: var(--c-primary-m3);
}

.col__page-btn--disabled {
  opacity: 0.4;
  pointer-events: none;
}

.col__page-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
}

.col__page-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d);
  text-decoration: none;
  transition: background 0.2s;
}

.col__page-num:hover {
  background: rgba(210, 236, 255, 0.35);
}

.col__page-num--active {
  background: var(--c-primary-m3, #496171);
  color: #fff;
}

.col__page-ellipsis {
  color: var(--c-on-surface-variant);
  padding: 0 4px;
}

.col__empty {
  text-align: center;
  padding: 64px 24px;
}

.col__empty p {
  margin: 0 0 24px;
  color: var(--c-on-surface-variant);
}

/* ── Search modal () ─────────────────────────────────── */
.search-modal::backdrop,
.search-modal .dialog-modal::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

.search-modal .predictive-search__search-button,
.search-modal .predictive-search__close-modal-button {
  display: none !important;
}

.search-modal .search-modal__dialog {
  padding: 0;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .search-modal .search-modal__dialog {
    width: min(32rem, 94vw);
    max-height: min(80dvh, 560px);
    margin-block-start: 10vh;
  }
}

@media screen and (max-width: 749px) {
  .search-modal .search-modal__dialog {
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
    border: none;
  }
}

.search-modal .search-modal__shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: inherit;
}

.search-modal .search-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.search-modal .search-modal__heading {
  margin: 0;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0;
  text-transform: none;
}

.search-modal .search-modal__close {
  padding: 4px 0;
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
}

.search-modal .search-modal__close:hover {
  color: #1a1a1a;
}

.search-modal .search-modal__search,
.search-modal .search-modal__form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  background: #fff;
}

.search-modal .search-modal__input-row {
  padding: 14px 16px 10px;
  border: 0;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
}

.search-modal .search-modal__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 4px 4px 4px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.search-modal .search-modal__input-wrap:focus-within {
  border-color: #1a1a1a;
  background: #fff;
  box-shadow: none;
  outline: none;
}

.search-modal .search-modal__input,
.search-modal .search-input,
.search-modal [class*="search"] input[type="search"],
.search-modal [class*="search"] input[type="text"] {
  flex: 1;
  min-width: 0;
  padding: 10px 0;
  border: 0 !important;
  border-bottom: 0 !important;
  background: transparent !important;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: #1a1a1a;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0;
}

.search-modal .search-modal__input:focus,
.search-modal .search-input:focus,
.search-modal [class*="search"] input[type="search"]:focus,
.search-modal [class*="search"] input[type="text"]:focus {
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.search-modal .search-modal__input::placeholder {
  color: #999;
}

.search-modal .search-modal__clear {
  flex-shrink: 0;
  padding: 0 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
}

.search-modal .search-modal__clear[hidden] {
  display: none;
}

.search-modal .search-modal__clear:hover {
  color: #1a1a1a;
}

.search-modal .search-modal__submit {
  flex-shrink: 0;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
}

.search-modal .search-modal__submit:hover {
  background: #333;
}

.search-modal .search-modal__quick {
  padding: 0 16px 12px;
}

.search-modal
  predictive-search-component:has([data-search-results])
  .search-modal__quick {
  display: none;
}

.search-modal .search-modal__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.search-modal .search-modal__quick-link {
  font-size: 0.8125rem;
  color: #666;
  text-decoration: none;
}

.search-modal .search-modal__quick-link:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

.search-modal .search-modal__results-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-top: 1px solid #eee;
}

.search-modal .search-modal__results {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.search-modal .predictive-search-results__products,
.search-modal .search-modal__featured {
  padding: 0 !important;
}

.search-modal .search-modal__section-head,
.search-modal .recently-viewed-wrapper .predictive-search-results__title,
.search-modal .predictive-search-results__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 12px 16px 8px;
  font-family: var(--f-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.search-modal .recently-viewed-wrapper {
  margin: 0;
  padding: 0;
  border: 0;
}

.search-modal .predictive-search-results__clear,
.search-modal .predictive-search-results__clear.button {
  flex-shrink: 0;
  margin-inline-start: auto;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  min-width: max-content;
  white-space: nowrap;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #888 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-transform: none;
  letter-spacing: 0;
  overflow: visible;
}

.search-modal .predictive-search-results__clear:hover,
.search-modal .predictive-search-results__clear.button:hover {
  background: transparent !important;
  color: #1a1a1a !important;
  box-shadow: none !important;
  transform: none !important;
}

.search-modal .recently-viewed-wrapper .predictive-search-results__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.search-modal
  #predictive-search-products:has(.recently-viewed-wrapper)
  > .search-modal__section-head,
.search-modal
  #predictive-search-products:has(.recently-viewed-wrapper)
  > .search-modal__product-grid {
  display: none;
}

/* Product lists — full-width rows */
.search-modal .search-modal__product-grid,
.search-modal .predictive-search-results__wrapper-products {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0 0 8px;
  grid-template-columns: unset;
}

.search-modal .search-modal__product-item,
.search-modal .predictive-search-results__card--product {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  list-style: none;
}

.search-modal .search-modal__product-item .col-card,
.search-modal .predictive-search-results__card--product .resource-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
  opacity: 1;
  animation: none;
  text-decoration: none;
}

.search-modal .search-modal__product-item:last-child .col-card,
.search-modal
  .predictive-search-results__card--product:last-child
  .resource-card {
  border-bottom: 0;
}

.search-modal .search-modal__product-item .col-card:hover,
.search-modal .predictive-search-results__card--product .resource-card:hover {
  background: #fafafa;
}

.search-modal .search-modal__product-item .col-card__media,
.search-modal .predictive-search-results__card--product .resource-card__media {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  --resource-card-aspect-ratio: 1;
}

.search-modal .search-modal__product-item .col-card__media img,
.search-modal .predictive-search-results__card--product .resource-card__image {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  aspect-ratio: 1;
}

.search-modal .search-modal__product-item .col-card__quick,
.search-modal .search-modal__product-item .col-card__badge {
  display: none;
}

.search-modal .search-modal__product-item .col-card__info,
.search-modal
  .predictive-search-results__card--product
  .resource-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 0;
}

.search-modal .search-modal__product-item .col-card__title,
.search-modal .predictive-search-results__card--product .resource-card__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

.search-modal .search-modal__product-item .col-card__meta {
  display: none;
}

.search-modal .search-modal__product-item .col-card__price,
.search-modal .predictive-search-results__card--product .resource-card__price,
.search-modal .predictive-search-results__card--product .price {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666;
}

.search-modal .search-modal__no-products {
  padding: 32px 16px;
  text-align: center;
  font-size: 0.875rem;
  color: #888;
}

.search-modal .search-modal__no-products-icon {
  display: none;
}

.search-modal .search-modal__footer {
  display: none;
  padding: 10px 16px 16px;
  border-top: 1px solid #eee;
  background: #fff;
}

.search-modal
  predictive-search-component:has([data-search-results]):not(
    :has(.predictive-search-results__no-results)
  )
  .search-modal__footer {
  display: block;
}

.search-modal .search-modal__view-all {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.search-modal .search-modal__view-all:hover {
  background: #f5f5f5;
}

.search-modal .predictive-search-results__wrapper-queries {
  padding: 8px 16px 0;
}

.search-modal .predictive-search-results__pill {
  padding: 6px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fafafa;
  font-size: 0.8125rem;
  color: #1a1a1a;
}

.search-modal .predictive-search-results__pill:hover,
.search-modal
  .predictive-search-results__card--query:is(
    [aria-selected="true"],
    :focus-within
  )
  .predictive-search-results__pill {
  background: #eee;
  border-color: #ccc;
}

.search-modal .predictive-search-results__no-results {
  padding: 24px 16px;
  font-size: 0.875rem;
  color: #888;
  text-align: center;
}

.search-modal
  .predictive-search-form__content-wrapper:has([data-search-results])
  .search-modal__results {
  padding-block-end: 0;
}

.search-modal .dialog-modal[open].search-modal__dialog {
  animation: search-modal-in 220ms ease forwards;
}

@keyframes search-modal-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 749px) {
  @keyframes search-modal-in {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ── Search, pages, 404, collections index ───────────────── */
.template-search #MainContent,
.template-search .content-for-layout,
.page,
.collections-list {
  background: var(--c-surface, #fcf9f8);
}

.search__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  max-width: 36rem;
}

.search__input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 14px 18px;
  border-radius: var(--radius-md, 16px);
  border: 1px solid var(--c-outline-variant, #c2c7cc);
  font-size: 1rem;
  background: #fff;
  color: var(--c-on-surface);
}

.search__form .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page {
  padding-block: var(--stack-lg, 32px) var(--section-gap, 80px);
}

.page__title {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--c-on-surface);
}

.page__content,
.contact__intro {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-on-surface-variant);
  max-width: 42rem;
}

.page__content {
  max-width: 48rem;
}

.page__content h2,
.page__content h3 {
  font-family: var(--f-headline);
  color: var(--c-on-surface);
  margin-top: 2rem;
}

.404__inner {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
  padding-block: 48px;
}

.404__code {
  font-family: var(--f-headline);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: var(--c-primary-container, #d2ecff);
  margin: 0 0 8px;
}

.404__title {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 12px;
}

.404__body {
  color: var(--c-on-surface-variant);
  margin: 0 0 32px;
}

.404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Contact ( contact_us_224_apparel) ─────────────── */
.contact {
  background: var(--c-surface, #fcf9f8);
}

.contact__hero {
  padding-block: var(--section-gap, 80px);
}

.contact__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media screen and (min-width: 990px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.contact__main {
  display: flex;
  flex-direction: column;
  gap: var(--stack-lg, 32px);
}

.contact__title {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1;
  margin: 0 0 8px;
  color: var(--c-secondary-m3, #46607d);
  text-transform: none;
  letter-spacing: 0;
}

.contact__intro-block .contact__intro {
  margin: 0;
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media screen and (min-width: 750px) {
  .contact__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__card {
  padding: 24px;
  border-radius: var(--radius-md, 16px);
  border: 1px solid rgba(176, 202, 220, 0.35);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__card--sky {
  background: var(--c-light-blue, #d2ecff);
}

.contact__card--container {
  background: var(--c-light-blue, #d2ecff);
}

.contact__card-icon {
  font-size: 1.5rem;
  color: var(--c-primary-m3, #496171);
}

.contact__card-title {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
  color: var(--c-navy, #00203a);
}

.contact__card-email {
  font-size: 1rem;
  color: var(--c-secondary-m3, #46607d);
  opacity: 0.85;
  text-decoration: none;
  transition: color 0.2s var(--ease-brand);
}

.contact__card-email:hover {
  color: var(--c-red);
}

.contact__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.contact__social-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-secondary-m3, #46607d);
}

.contact__social-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--c-outline-variant, #c2c7cc);
}

.contact__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact__social-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-secondary-m3, #46607d);
  text-decoration: none;
  transition:
    color 0.25s var(--ease-brand),
    transform 0.25s var(--ease-brand);
}

.contact__social-link:hover {
  color: var(--c-red);
  transform: scale(1.05);
}

.contact__studio {
  position: relative;
  margin: 8px 0 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md, 16px);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.contact__studio-img,
.contact__studio-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact__studio-placeholder {
  background: var(--c-surface-container, #f0edec);
}

.contact__studio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 32, 58, 0.35), transparent 55%);
  pointer-events: none;
}

.contact__studio-caption {
  position: absolute;
  bottom: 24px;
  inset-inline-start: 24px;
  margin: 0;
  color: #fff;
  z-index: 1;
}

.contact__studio-title {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
}

.contact__studio-location {
  font-size: 0.75rem;
  font-weight: 700;
  margin: 4px 0 0;
  opacity: 0.85;
}

.contact__form-wrap {
  position: relative;
}

@media screen and (min-width: 990px) {
  .contact__form-wrap {
    position: sticky;
    top: 120px;
  }
}

.contact__form-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-md, 16px);
  border: 1px solid rgba(194, 199, 204, 0.35);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 750px) {
  .contact__form-card {
    padding: 48px;
  }
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__label {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-secondary-m3, #46607d);
  margin: 0;
}

.contact__form-card .contact__input,
.contact__form-card input.contact__input,
.contact__form-card select.contact__input,
.contact__form-card textarea.contact__input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm, 12px) !important;
  border: 1px solid rgba(194, 199, 204, 0.45) !important;
  font-size: 1rem;
  font-family: var(--f-body);
  background: #fff !important;
  color: var(--c-on-surface, #1c1b1b);
  box-shadow: none;
  transition:
    border-color 0.2s var(--ease-brand),
    box-shadow 0.2s var(--ease-brand),
    background-color 0.2s var(--ease-brand);
}

.contact__form-card .contact__input:hover {
  border-color: rgba(73, 97, 113, 0.45) !important;
  background: #fff !important;
}

.contact__form-card .contact__input:focus {
  outline: none !important;
  border-color: var(--c-primary-m3, #496171) !important;
  box-shadow: 0 0 0 3px rgba(194, 220, 255, 0.65) !important;
  background: #fff !important;
}

.contact__field:focus-within .contact__label {
  color: var(--c-primary-m3, #496171);
}

.contact__form-card .contact__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-inline-end: 40px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%2346607d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 18px !important;
}

.contact__form-card .contact__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.contact__submit {
  width: 100%;
  padding: 16px 24px;
  border-radius: 9999px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.contact__submit:hover {
  transform: scale(1.02);
}

.contact__response-note {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-on-surface-variant);
  margin: 0;
  padding-top: 4px;
}

.contact__alert {
  padding: 16px;
  border-radius: var(--radius-md, 16px);
  font-size: 0.875rem;
}

.contact__alert--error {
  background: #ffdad6;
  color: #93000a;
}

.contact__alert--success {
  background: rgba(210, 236, 255, 0.5);
  color: var(--c-primary-m3, #496171);
}

.contact__quick {
  background: var(--c-surface-container-low, #f6f3f2);
  padding-block: var(--section-gap, 80px);
}

.contact__quick-inner {
  text-align: center;
}

.contact__quick-title {
  font-family: var(--f-headline);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-secondary-m3, #46607d);
  margin: 0 0 var(--stack-lg, 32px);
}

.contact__quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter, 24px);
  text-align: start;
}

@media screen and (min-width: 750px) {
  .contact__quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact__quick-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-md, 16px);
  border: 1px solid rgba(194, 199, 204, 0.35);
  transition: transform 0.3s var(--ease-brand);
}

.contact__quick-card:hover {
  transform: translateY(-4px);
}

.contact__quick-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.contact__quick-icon {
  font-size: 2.25rem;
  color: var(--c-primary-m3, #496171);
  display: block;
  margin-bottom: 16px;
}

.contact__quick-card-title {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
  color: var(--c-on-surface);
}

.contact__quick-card-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--c-on-surface-variant);
  margin: 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter, 24px);
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 990px) {
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collections-grid__card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.collections-grid__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md, 16px);
  overflow: hidden;
  background: var(--c-surface-container-high, #eae7e7);
  margin-bottom: 12px;
}

.collections-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-brand);
}

.collections-grid__card:hover .collections-grid__media img {
  transform: scale(1.04);
}

.collections-grid__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--c-on-surface);
}

.collections-grid__count {
  font-size: 0.75rem;
  color: var(--c-on-surface-variant);
  margin: 0;
}

/* ── Auth layout ─────────────────────────────────────────── */
.auth-body {
  margin: 0;
  background: #fff;
}

.auth-main {
  min-height: 100vh;
  min-height: 100dvh;
}

/* ── Register ( create_account) ────────────────────── */
.register {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
}

@media screen and (min-width: 750px) {
  .register {
    flex-direction: row;
  }
}

.register__brand {
  display: none;
  position: relative;
  overflow: hidden;
  background: #c2dcff;
}

@media screen and (min-width: 750px) {
  .register__brand {
    display: block;
    flex: 1 1 50%;
    min-height: 100vh;
    min-height: 100dvh;
  }
}

.register__brand-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 10s var(--ease-brand);
}

.register__brand:hover .register__brand-photo {
  transform: scale(1);
}

.register__brand-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.register__brand-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-headline);
  font-weight: 900;
  font-size: clamp(10rem, 38vw, 32rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
  color: var(--c-red);
  opacity: 0.95;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.register__brand:has(.register__brand-photo) .register__brand-mark {
  opacity: 0.35;
}

.register__brand-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 48px 64px;
  color: #fff;
}

.register__brand-logo {
  font-family: var(--f-headline);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  margin: 0;
}

.register__brand-copy {
  max-width: 28rem;
}

.register__brand-headline {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  white-space: pre-line;
}

.register__brand-body {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.92;
}

.register__brand-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.register__established {
  display: flex;
  align-items: center;
  gap: 16px;
}

.register__established-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.register__established p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

.register__vertical-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-red);
  line-height: 1.1;
}

.register__vertical-tagline span {
  display: block;
}

.register__form-panel {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px var(--margin-mobile, 20px);
}

@media screen and (min-width: 750px) {
  .register__form-panel {
    padding: 48px var(--margin-desktop, 64px);
  }
}

.register__mobile-logo {
  display: block;
  align-self: flex-start;
  font-family: var(--f-headline);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--c-secondary-m3, #46607d);
  margin: 0 0 40px;
}

@media screen and (min-width: 750px) {
  .register__mobile-logo {
    display: none;
  }
}

.register__form-wrap {
  width: 100%;
  max-width: 440px;
}

.register__header {
  margin-bottom: var(--stack-lg, 32px);
}

.register__title {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-on-surface);
  margin: 0 0 8px;
}

.register__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-secondary-m3, #46607d);
  margin: 0;
}

.register__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register__name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.register__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.register__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-secondary-m3, #46607d);
  margin: 0;
}

.register__input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm, 12px);
  border: 1px solid rgba(194, 199, 204, 0.45);
  font-size: 1rem;
  font-family: var(--f-body);
  background: var(--c-surface-container-low, #f6f3f2);
  color: var(--c-on-surface);
  transition:
    border-color 0.2s var(--ease-brand),
    box-shadow 0.2s var(--ease-brand);
}

.register__input:focus {
  outline: none;
  border-color: var(--c-primary-m3, #496171);
  box-shadow: 0 0 0 2px rgba(73, 97, 113, 0.12);
}

.register__field:focus-within .register__label {
  color: var(--c-primary-m3, #496171);
}

.register__password-wrap {
  position: relative;
}

.register__input--password {
  padding-inline-end: 48px;
}

.register__password-toggle {
  position: absolute;
  inset-inline-end: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 4px;
  color: rgba(70, 96, 125, 0.65);
  cursor: pointer;
  line-height: 0;
  transition: color 0.2s var(--ease-brand);
}

.register__password-toggle:hover {
  color: var(--c-secondary-m3, #46607d);
}

.register__password-toggle .material-symbols-outlined {
  font-size: 20px;
}

.register__password-hint {
  font-size: 11px;
  font-style: italic;
  color: rgba(70, 96, 125, 0.65);
  margin: 0;
}

.register__marketing {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 4px;
}

.register__checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--c-red);
  border-radius: 4px;
}

.register__marketing-label {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--c-on-surface-variant);
  cursor: pointer;
  margin: 0;
}

.register__submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.875rem;
}

.register__alert {
  padding: 14px 16px;
  border-radius: var(--radius-sm, 12px);
  font-size: 0.875rem;
}

.register__alert--error {
  background: #ffdad6;
  color: #93000a;
}

.register__footer {
  margin-top: var(--stack-lg, 32px);
  padding-top: 24px;
  border-top: 1px solid rgba(194, 199, 204, 0.35);
}

.register__sign-in {
  text-align: center;
  font-size: 1rem;
  color: var(--c-on-surface-variant);
  margin: 0 0 16px;
}

.register__sign-in-link {
  font-weight: 700;
  color: var(--c-primary-m3, #496171);
  text-decoration: none;
  margin-inline-start: 4px;
  transition: color 0.2s var(--ease-brand);
}

.register__sign-in-link:hover {
  color: var(--c-red);
}

.register__legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  opacity: 0.65;
}

.register__legal a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-on-surface-variant);
  text-decoration: none;
  transition: opacity 0.2s;
}

.register__legal a:hover {
  opacity: 1;
}

/* ── Login ( login_224_apparel) ──────────────────────── */
.login {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
}

@media screen and (min-width: 750px) {
  .login {
    flex-direction: row;
  }
}

.login__visual {
  display: none;
  position: relative;
  overflow: hidden;
  background: var(--c-surface-container-low, #f6f3f2);
}

@media screen and (min-width: 750px) {
  .login__visual {
    display: block;
    flex: 1 1 50%;
    min-height: 100vh;
    min-height: 100dvh;
  }
}

@media screen and (min-width: 990px) {
  .login__visual {
    flex: 1 1 60%;
  }
}

.login__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: login-zoom 20s ease-in-out infinite alternate;
}

@keyframes login-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.login__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(70, 96, 125, 0.1);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.login__visual-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 48px;
  color: #fff;
}

.login__hero-headline {
  font-family: var(--f-headline);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 28rem;
  margin: 0;
}

.login__hero-card {
  max-width: 22rem;
  padding: 24px;
  border-radius: var(--radius-md, 16px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.login__hero-card-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.login__hero-card-body {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.login__panel {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px var(--margin-mobile, 20px);
  overflow-y: auto;
}

@media screen and (min-width: 750px) {
  .login__panel {
    padding: 64px;
  }
}

@media screen and (min-width: 990px) {
  .login__panel {
    flex: 1 1 40%;
  }
}

.login__panel-inner {
  width: 100%;
  max-width: 24rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login__brand {
  margin-bottom: 48px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .login__brand {
    text-align: start;
  }
}

.login__logo {
  display: block;
  width: auto;
  height: 64px;
  margin: 0 auto 32px;
  object-fit: contain;
}

@media screen and (min-width: 750px) {
  .login__logo {
    height: 80px;
    margin-inline: 0;
  }
}

.login__logo-text {
  font-family: var(--f-headline);
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  color: var(--c-red);
  margin: 0 0 32px;
}

.login__title {
  font-family: var(--f-headline);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--c-on-surface);
  margin: 0 0 8px;
}

.login__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-secondary-m3, #46607d);
  margin: 0;
}

.login__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.login__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.login__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-secondary-m3, #46607d);
  margin: 0;
}

.login__forgot {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-primary-m3, #496171);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s var(--ease-brand);
}

.login__forgot:hover {
  color: var(--c-red);
}

.login__input-wrap {
  position: relative;
}

.login__input-wrap:focus-within .login__input-icon {
  color: var(--c-primary-m3, #496171);
}

.login__input-icon {
  position: absolute;
  inset-inline-start: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--c-outline, #73787c);
  pointer-events: none;
  transition: color 0.2s var(--ease-brand);
}

.login__input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border-radius: var(--radius-sm, 12px);
  border: 1px solid rgba(194, 199, 204, 0.45);
  font-size: 1rem;
  font-family: var(--f-body);
  background: var(--c-surface-container-low, #f6f3f2);
  color: var(--c-on-surface);
  transition:
    box-shadow 0.2s var(--ease-brand),
    border-color 0.2s;
}

.login__input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(73, 97, 113, 0.2);
}

.login__input--password {
  padding-inline-end: 48px;
}

.login__password-toggle {
  position: absolute;
  inset-inline-end: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 4px;
  color: var(--c-outline, #73787c);
  cursor: pointer;
  line-height: 0;
  transition: color 0.2s var(--ease-brand);
}

.login__password-toggle:hover {
  color: var(--c-primary-m3, #496171);
}

.login__password-toggle .material-symbols-outlined {
  font-size: 20px;
}

.login__remember {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-block: 4px;
}

.login__checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--c-primary-m3, #496171);
  flex-shrink: 0;
}

.login__remember-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-secondary-m3, #46607d);
  cursor: pointer;
  margin: 0;
}

.login__submit {
  width: 100%;
  padding: 16px 24px;
  border-radius: 9999px;
}

.login__alert {
  padding: 14px 16px;
  border-radius: var(--radius-sm, 12px);
  font-size: 0.875rem;
}

.login__alert--error {
  background: #ffdad6;
  color: #93000a;
}

.login__divider {
  position: relative;
  margin: 40px 0;
  text-align: center;
}

.login__divider::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  top: 50%;
  height: 1px;
  background: rgba(194, 199, 204, 0.35);
}

.login__divider span {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-outline, #73787c);
}

.login__signup {
  text-align: center;
}

.login__signup-text {
  font-size: 1rem;
  color: var(--c-secondary-m3, #46607d);
  margin: 0 0 32px;
}

.login__signup-link {
  font-weight: 700;
  color: var(--c-on-surface);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--c-outline-variant, #c2c7cc);
  transition: color 0.2s var(--ease-brand);
}

.login__signup-link:hover {
  color: var(--c-red);
}

.login__footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gutter, 24px);
  padding-top: 32px;
  border-top: 1px solid rgba(194, 199, 204, 0.2);
}

.login__footer-nav a {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-outline, #73787c);
  text-decoration: none;
  transition: color 0.2s var(--ease-brand);
}

.login__footer-nav a:hover {
  color: var(--c-primary-m3, #496171);
}

.login__copyright {
  width: 100%;
  max-width: 24rem;
  margin: 48px auto 0;
  padding-top: 0;
  font-size: 0.75rem;
  color: var(--c-outline-variant, #c2c7cc);
  text-align: center;
}

/* ── Senior PDP Enhancements ─────────────────────────────── */

.pdp__vendor {
  color: var(--c-red);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

.pdp__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pdp__tax-note {
  font-size: 0.75rem;
  color: var(--c-on-surface-variant);
  opacity: 0.7;
}

.pdp__inventory {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(206, 8, 24, 0.05);
  border-radius: 8px;
  color: var(--c-red);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 12px;
}

.scarcity-pulse .material-symbols-outlined {
  animation: boltPulse 2s infinite;
}

@keyframes boltPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Zoom effect */
.pdp__zoom-container {
  position: relative;
  cursor: zoom-in;
}

.pdp__zoom-lens {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.1) inset;
}

.pdp__zoom-container:hover .pdp__zoom-lens {
  opacity: 1;
}

/* Enhanced Perks */
.pdp__perks {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.pdp__perk {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(194, 199, 204, 0.3);
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.pdp__perk:hover {
  border-color: var(--c-red);
  transform: translateX(4px);
}

.pdp__perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(210, 236, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary-m3);
}

.pdp__perk-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--c-on-surface);
}

.pdp__perk-text span {
  font-size: 0.75rem;
  color: var(--c-on-surface-variant);
}

/* Sticky ATC */
.pdp__sticky-atc {
  position: fixed;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(194, 199, 204, 0.3);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp__sticky-atc.is-visible {
  transform: translateY(0);
}

.pdp__sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pdp__sticky-info {
  display: flex;
  flex-direction: column;
}

.pdp__sticky-info strong {
  font-size: 0.875rem;
}

.pdp__sticky-info span {
  font-size: 0.75rem;
  color: var(--c-red);
  font-weight: 700;
}

.pdp__sticky-btn {
  background: var(--c-red);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
}

.pdp__info-tabs {
  margin-top: 32px;
  border-top: 1px solid rgba(194, 199, 204, 0.3);
}

.pdp__tabs-header {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  border-bottom: 1px solid rgba(194, 199, 204, 0.2);
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.pdp__tabs-header::-webkit-scrollbar {
  display: none;
}

.pdp__tab-btn {
  background: none;
  border: none;
  padding: 16px 0;
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-on-surface-variant);
  cursor: pointer;
  position: relative;
  transition:
    color 0.3s,
    transform 0.2s;
  white-space: nowrap;
}

.pdp__tab-btn:hover,
.pdp__tab-btn:focus-visible {
  color: var(--c-primary-m3);
}

.pdp__tab-btn:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 4px;
}

.pdp__tab-btn.is-active {
  color: var(--c-red);
}

.pdp__tab-btn.is-active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  inset-inline-start: 0;
  inset-inline-end: 0;
  height: 2px;
  background: var(--c-red);
}

.pdp__tab-content {
  display: none;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--c-on-surface-variant);
  animation: fadeIn 0.4s ease both;
}

.pdp__tab-content.is-active {
  display: block;
}

.pdp__tab-content ul {
  padding-inline-start: 20px;
  margin: 0;
}

.pdp__tab-content p {
  margin-bottom: 12px;
}

.pdp__social-share {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(194, 199, 204, 0.2);
}

.pdp__share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--c-surface-container-low, #f7f6f4);
  border: 1px solid rgba(194, 199, 204, 0.65);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-primary-m3);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.pdp__share-btn:hover {
  background: rgba(210, 236, 255, 0.18);
  transform: translateY(-1px);
}

.pdp__share-btn:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 4px;
}

.pdp__share-btn .material-symbols-outlined {
  font-size: 1.25rem;
}

.pdp__features {
  margin-top: 24px;
  padding: 16px;
  background: var(--c-surface-container-low, #f6f3f2);
  border-radius: 8px;
}

.pdp__features h6 {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--c-primary-m3);
}

.pdp__features ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pdp__features li {
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp__features li::before {
  content: "•";
  color: var(--c-red);
  font-weight: 900;
}

.pdp__swatches .variant-option__button-label {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.pdp__swatches .variant-option__button-label:hover {
  transform: translateY(-1px);
}

.pdp__swatches .variant-option__button-label:has(input:focus-visible) {
  border-color: var(--c-red);
}

.pdp__swatches
  .variant-option__button-label:has(input[data-option-available="false"]) {
  opacity: 0.55;
  cursor: not-allowed;
}

.pdp__swatches input:checked + .swatch,
.pdp__swatches .variant-option__button-label:has(input:checked) {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px var(--c-primary-m3, #496171);
}

.pdp__size-btn {
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.15s ease;
}

.pdp__size-btn:hover {
  background: rgba(210, 236, 255, 0.18);
}

.pdp__size-btn:has(input:focus-visible) {
  outline: 2px solid var(--c-red);
  outline-offset: 2px;
}

.pdp__size-btn:has(input:checked) {
  transform: scale(1.02);
}
