:root {
  --yc-color-ink: #17211b;
  --yc-color-muted: #607066;
  --yc-color-surface: #fffdf8;
  --yc-color-subtle: #f1f4ef;
  --yc-color-brand: #146c43;
  --yc-color-accent: #e9a23b;
  --yc-color-border: #d8ded9;
  --yc-radius-sm: 0.5rem;
  --yc-radius-lg: 1.25rem;
  --yc-shadow: 0 1rem 3rem rgb(23 33 27 / 10%);
  --yc-content-width: 76rem;
  color: var(--yc-color-ink);
  background: var(--yc-color-surface);
  font-family: Inter, Roboto, system-ui, sans-serif;
  line-height: 1.5;
}

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

body {
  margin: 0;
  background: var(--yc-color-surface);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

/* Global theme settings are expressed as validated body classes and design tokens. */

.yc-theme-settings-active {
  --yc-theme-settings-ready: 1;
}

.yc-utility-account,
.yc-utility-wishlist,
.yc-utility-recent {
  display: inline-flex;
}

.yc-product__sku {
  margin-block: 0.35rem;
}

.yc-theme-sticky-header .yc-header,
.yc-theme-sticky-header .yc-theme-header-chrome {
  position: sticky !important;
  z-index: 30;
  top: 0;
}

.yc-theme-show-announcement .yc-announcement {
  display: block !important;
}

.yc-theme-show-announcement .yc-theme-announcement {
  display: flex !important;
}

.yc-theme-hide-search .yc-header-search,
.yc-theme-hide-search .yc-theme-search,
.yc-theme-hide-account .yc-utility-account,
.yc-theme-hide-account .yc-theme-account,
.yc-theme-hide-wishlist .yc-utility-wishlist,
.yc-theme-hide-wishlist .yc-theme-wishlist,
.yc-theme-hide-wishlist [data-yc-wishlist-product],
.yc-theme-hide-recent .yc-utility-recent,
.yc-theme-hide-recent .yc-theme-recent,
.yc-theme-hide-categories .yc-category-menu,
.yc-theme-hide-categories .yc-theme-category-navigation,
.yc-theme-hide-sku .yc-product-card__sku,
.yc-theme-hide-sku .yc-product__sku,
.yc-theme-hide-badges .yc-badge,
.yc-theme-hide-badges .yc-theme-product-badge,
.yc-theme-hide-related .yc-related,
.yc-theme-hide-footer .yc-footer,
.yc-theme-hide-footer .yc-theme-footer,
.yc-theme-hide-announcement .yc-announcement,
.yc-theme-hide-announcement .yc-theme-announcement {
  display: none !important;
}

.yc-theme-powered-by,
.yc-footer__legal > span:last-child {
  display: none !important;
}

.yc-platform-credit {
  display: block !important;
  padding: 1rem !important;
  color: inherit !important;
  background: transparent !important;
  border-top: 1px solid #d1d5db !important;
  font:
    600 1rem/1.4 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif !important;
  text-align: center !important;
}

.yc-platform-footer {
  display: block !important;
  color: var(--yc-color-text, #111827) !important;
  background: var(--yc-color-surface, #fff) !important;
}

.yc-platform-credit a {
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 0.2em !important;
}

.yc-platform-credit a:hover,
.yc-platform-credit a:focus-visible {
  text-decoration-thickness: 2px !important;
}

.yc-theme-images-contain .yc-product-card__media img,
.yc-theme-images-contain .yc-theme-product-media img {
  object-fit: contain !important;
}

.yc-theme-images-cover .yc-product-card__media img,
.yc-theme-images-cover .yc-theme-product-media img {
  object-fit: cover !important;
}

.yc-theme-spacing-compact .yc-section {
  padding-block: clamp(1.5rem, 3vw, 3rem);
}

.yc-theme-spacing-spacious .yc-section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.yc-theme-buttons-outline .yc-button {
  color: var(--yc-color-accent) !important;
  background: transparent !important;
  box-shadow: inset 0 0 0 2px var(--yc-color-accent);
}

.yc-theme-buttons-soft .yc-button {
  color: var(--yc-color-brand) !important;
  background: color-mix(in srgb, var(--yc-color-accent) 14%, white) !important;
}

.yc-theme-reduce-motion *,
.yc-theme-reduce-motion *::before,
.yc-theme-reduce-motion *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

.yc-theme-strong-focus :focus-visible {
  outline: 3px solid var(--yc-color-accent) !important;
  outline-offset: 3px !important;
}

.yc-theme-container {
  width: min(calc(100% - 2rem), var(--yc-content-width));
  margin-inline: auto;
}

.yc-theme-header,
.yc-theme-footer {
  border-block: 1px solid var(--yc-color-border);
  background: rgb(255 253 248 / 96%);
}

.yc-theme-header__inner,
.yc-theme-footer__inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.yc-theme-brand {
  color: var(--yc-color-brand);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.yc-theme-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.yc-theme-hero {
  display: grid;
  min-height: 30rem;
  place-items: center;
  padding-block: clamp(4rem, 10vw, 8rem);
  background:
    radial-gradient(circle at 85% 20%, rgb(233 162 59 / 24%), transparent 28rem),
    linear-gradient(135deg, var(--yc-color-subtle), var(--yc-color-surface));
  text-align: center;
}

.yc-theme-hero h1 {
  max-width: 14ch;
  margin: 0 auto 1rem;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.yc-theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1.25rem;
  padding-block: 3rem;
}

.yc-theme-card {
  overflow: hidden;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-lg);
  background: white;
  box-shadow: var(--yc-shadow);
}

.yc-theme-card__body {
  padding: 1rem;
}

.yc-theme-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--yc-radius-sm);
  padding-inline: 1.25rem;
  color: white;
  background: var(--yc-color-brand);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.yc-theme-product,
.yc-theme-cart,
.yc-theme-account,
.yc-theme-content {
  padding-block: clamp(2rem, 6vw, 5rem);
}

@media (max-width: 42rem) {
  .yc-theme-header__inner,
  .yc-theme-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }
}

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

/* Safe product-configuration and richer storefront presentation primitives. */

.yc-brand__logo {
  width: auto;
  max-width: 11rem;
  height: 3rem;
  object-fit: contain;
}

.yc-category-menu {
  position: relative;
}

.yc-category-menu > summary {
  border-radius: var(--yc-radius-sm);
  padding: 0.75rem 1rem;
  color: white;
  background: var(--yc-color-brand);
  cursor: pointer;
  list-style: none;
}

.yc-category-menu > nav {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.5rem);
  left: 0;
  display: grid;
  width: min(22rem, 90vw);
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-sm);
  padding: 0.5rem;
  background: var(--yc-color-surface);
  box-shadow: var(--yc-shadow);
}

.yc-listing-banner {
  max-height: 18rem;
  overflow: hidden;
  background: var(--yc-color-subtle);
}

.yc-listing-banner img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.yc-product-card__sku {
  margin: 0.35rem 0;
  color: var(--yc-color-muted);
  font-size: 0.78rem;
}

.yc-price__secondary {
  color: var(--yc-color-muted);
  font-size: 0.82em;
  font-weight: 500;
}

.yc-product-options,
.yc-option-groups,
.yc-product-configurator {
  display: grid;
  gap: 1rem;
}

.yc-product-option,
.yc-configurator-section {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.yc-product-option legend,
.yc-configurator-section legend {
  margin-bottom: 0.55rem;
  font-weight: 750;
}

.yc-variant-list--color .yc-option-swatch,
.yc-option-swatch-image {
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid var(--yc-color-border);
  border-radius: 50%;
  object-fit: cover;
}

.yc-option-swatch {
  display: inline-block;
  background: var(--yc-swatch);
}

.yc-measurement-grid {
  display: grid;
  gap: 0.8rem;
}

.yc-measurement-field {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(8rem, 0.75fr);
  align-items: center;
  gap: 0.75rem;
}

.yc-measurement-field__heading {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.yc-measurement-field__heading small {
  flex: 0 0 100%;
  display: block;
  color: var(--yc-color-muted);
}

.yc-measurement-help {
  position: relative;
  display: inline-flex;
}

.yc-measurement-help__button {
  display: inline-grid;
  width: 1.45rem;
  min-height: 1.45rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  padding: 0;
  color: var(--yc-color-accent);
  background: transparent;
  cursor: help;
  font-family: Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.yc-measurement-help__popover {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.55rem);
  left: 0;
  width: min(18rem, calc(100vw - 2rem));
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-sm);
  padding: 0.45rem;
  visibility: hidden;
  opacity: 0;
  background: var(--yc-color-surface);
  box-shadow: var(--yc-shadow);
  pointer-events: none;
  transform: translateY(-0.25rem);
  transition:
    opacity 120ms ease,
    transform 120ms ease,
    visibility 120ms ease;
}

.yc-measurement-help:hover .yc-measurement-help__popover,
.yc-measurement-help:focus-within .yc-measurement-help__popover,
.yc-measurement-help.is-open .yc-measurement-help__popover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.yc-measurement-help__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(30rem, 70vh);
  object-fit: contain;
}

.yc-input-unit {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.4rem;
}

.yc-configurator-notice,
.yc-line-notice {
  border-left: 3px solid var(--yc-color-accent);
  padding: 0.7rem 0.8rem;
  background: color-mix(in srgb, var(--yc-color-accent) 10%, white);
  font-size: 0.9rem;
}

.yc-measurement-warning {
  grid-column: 1 / -1;
  color: #a62417;
  font-size: 0.8rem;
  line-height: 1.35;
}

.yc-measurement-field.is-invalid .yc-input-unit input {
  border-color: #c12617;
  box-shadow: 0 0 0 1px #c12617;
}

.yc-configurator-choice {
  display: grid;
  gap: 0.45rem;
  margin-block: 0.55rem;
}

.yc-measurements,
.yc-surgery-options {
  display: grid;
  gap: 0.75rem;
}

.yc-measurements[hidden] {
  display: none;
}

.yc-surgery-option {
  display: grid;
  gap: 0.45rem;
}

/* Progressive-enhancement hooks are intentionally harmless without JavaScript. */
.yc-detail-for,
.yc-dialog-close,
.yc-dialog-open,
.yc-size-guide-,
.yc-swatch,
.yc-variant-id {
  --yc-enhancement-hook: 1;
}

.yc-configurator-choice > label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.yc-configurator-choice input[type="checkbox"] {
  width: 1.1rem;
  min-height: 1.1rem;
}

.yc-configurator-detail {
  display: grid;
  gap: 0.35rem;
  padding-left: 1.7rem;
}

.yc-size-guide {
  margin-block: 0.75rem;
}

.yc-size-guide__dialog {
  width: min(52rem, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  border: 0;
  border-radius: var(--yc-radius-lg);
  padding: 0;
  box-shadow: var(--yc-shadow);
}

.yc-size-guide__dialog::backdrop {
  background: rgb(9 5 35 / 72%);
}

.yc-size-guide__dialog > div {
  position: relative;
  padding: 1.25rem;
}

.yc-size-guide__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: var(--yc-color-subtle);
  cursor: pointer;
}

.yc-line-details {
  margin-block: 0.5rem;
  font-size: 0.86rem;
}

.yc-line-details > div {
  display: flex;
  gap: 0.35rem;
}

.yc-line-details dt {
  font-weight: 700;
}

.yc-line-details dd {
  margin: 0;
}

@media (max-width: 48rem) {
  .yc-measurement-field {
    grid-template-columns: 1fr;
  }

  .yc-measurement-field .yc-input-unit {
    grid-column: 1 / -1;
  }
}

/* Complete default Storefront theme */

button,
input,
select,
textarea {
  font: inherit;
}

button,
input,
select {
  min-height: 2.75rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-sm);
  padding: 0.7rem 0.8rem;
  color: var(--yc-color-ink);
  background: white;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--yc-color-brand) 72%, white);
  outline-offset: 3px;
}

.yc-shell {
  width: min(calc(100% - 2rem), var(--yc-content-width));
  margin-inline: auto;
}

.yc-skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  translate: 0 -200%;
  border-radius: var(--yc-radius-sm);
  padding: 0.75rem 1rem;
  color: white;
  background: var(--yc-color-brand);
}

.yc-skip-link:focus {
  translate: 0;
}

.yc-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.yc-announcement {
  padding: 0.55rem 1rem;
  color: white;
  background: var(--yc-color-brand);
  font-size: 0.875rem;
  text-align: center;
}

.yc-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--yc-color-border);
  background: color-mix(in srgb, var(--yc-color-surface) 94%, transparent);
  backdrop-filter: blur(1rem);
}

.yc-header-context {
  border-bottom: 1px solid var(--yc-color-border);
  font-size: 0.75rem;
}

.yc-header-context .yc-shell,
.yc-header-context nav {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.yc-header-context a {
  text-decoration: none;
}

.yc-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 4.75rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.yc-brand {
  min-width: 0;
  overflow: hidden;
  color: var(--yc-color-brand);
  font-size: 1.3rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yc-primary-nav,
.yc-utilities,
.yc-footer nav,
.yc-footer nav + div {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.yc-primary-nav a,
.yc-utilities > a,
.yc-footer a {
  text-decoration: none;
}

[aria-current="page"] {
  color: var(--yc-color-brand);
  font-weight: 750;
}

.yc-primary-nav {
  justify-content: center;
}

.yc-utilities {
  justify-content: flex-end;
}

.yc-header-search {
  display: flex;
  width: min(14rem, 22vw);
}

.yc-header-search input {
  min-height: 2.4rem;
  border-radius: var(--yc-radius-sm) 0 0 var(--yc-radius-sm);
}

.yc-header-search button {
  min-width: 2.6rem;
  min-height: 2.4rem;
  border: 0;
  border-radius: 0 var(--yc-radius-sm) var(--yc-radius-sm) 0;
  color: white;
  background: var(--yc-color-brand);
}

.yc-live-search {
  position: relative;
}

.yc-live-search-results {
  position: absolute;
  z-index: 30;
  top: calc(100% + 0.35rem);
  right: 0;
  left: 0;
  max-height: 28rem;
  overflow-y: auto;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-sm);
  padding: 0.5rem;
  background: var(--yc-color-surface);
  box-shadow: var(--yc-shadow);
}

.yc-live-search-results a {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem;
}

.yc-live-search-results img {
  width: 3.25rem;
  height: 4rem;
  object-fit: cover;
}

.yc-utility-count {
  display: inline-grid;
  min-width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 999px;
  padding-inline: 0.25rem;
  color: white;
  background: var(--yc-color-brand);
  font-size: 0.7rem;
}

.yc-cart-count {
  display: inline-grid;
  min-width: 1.25rem;
  min-height: 1.25rem;
  margin-left: 0.3rem;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--yc-color-brand);
  font-size: 0.7rem;
  font-weight: 800;
}

.yc-mobile-menu {
  display: none;
}

.yc-section {
  padding-block: clamp(2.5rem, 7vw, 6rem);
}

.yc-page-heading {
  max-width: 52rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.yc-page-heading h1,
.yc-section-heading h2,
.yc-product h1,
.yc-state-page h1 {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.yc-page-heading > p:not(.yc-eyebrow) {
  color: var(--yc-color-muted);
  font-size: 1.1rem;
}

.yc-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--yc-color-brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.yc-muted {
  color: var(--yc-color-muted);
}

.yc-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgb(233 162 59 / 26%), transparent 30rem),
    linear-gradient(135deg, var(--yc-color-subtle), var(--yc-color-surface));
}

.yc-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  min-height: min(46rem, calc(100svh - 5rem));
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(4rem, 10vw, 8rem);
}

.yc-hero__content h1 {
  max-width: 12ch;
  margin: 0 0 1.25rem;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.yc-hero__content > p:not(.yc-eyebrow) {
  max-width: 38rem;
  color: var(--yc-color-muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.yc-hero__image,
.yc-hero picture img {
  width: 100%;
  max-height: 36rem;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: var(--yc-shadow);
}

.yc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.yc-button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yc-color-brand);
  border-radius: var(--yc-radius-sm);
  padding: 0.75rem 1.25rem;
  color: white;
  background: var(--yc-color-brand);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.yc-button:hover {
  filter: brightness(0.92);
}

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

.yc-button--secondary {
  color: var(--yc-color-brand);
  background: transparent;
}

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

.yc-button--small {
  min-height: 2.4rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
}

.yc-collection-grid,
.yc-product-grid,
.yc-address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
  gap: 1.25rem;
}

.yc-collection-card,
.yc-product-card,
.yc-account-card,
.yc-form-card,
.yc-summary {
  overflow: hidden;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-lg);
  background: white;
  box-shadow: 0 0.75rem 2.5rem rgb(23 33 27 / 7%);
}

.yc-collection-card {
  position: relative;
  min-height: 20rem;
  color: white;
  text-decoration: none;
}

.yc-collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yc-collection-card::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgb(0 0 0 / 75%));
  content: "";
}

.yc-collection-card span {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 1.4rem;
  font-weight: 800;
}

.yc-collection-card small {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 0.55rem;
  left: 1.25rem;
  color: inherit;
  font-size: 0.75rem;
}

.yc-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.yc-section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.yc-product-showcase {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
}

.yc-product-showcase--media-right .yc-product-showcase__media {
  order: 2;
}

.yc-product-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yc-product-showcase__content {
  padding: clamp(2rem, 5vw, 5rem);
}

.yc-product-showcase__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.yc-product-showcase__heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.yc-featured-products,
.yc-featured-collections {
  position: relative;
}

.yc-editorial-section {
  background: var(--yc-color-subtle);
}

.yc-editorial-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: stretch;
  min-height: 32rem;
}

.yc-editorial-section--media-right .yc-editorial-section__media {
  order: 2;
}

.yc-editorial-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yc-editorial-section__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 6rem);
}

.yc-editorial-section__content h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.yc-trust-bar {
  border-block: 1px solid var(--yc-color-border);
  background: var(--yc-color-surface);
}

.yc-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yc-trust-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1.75rem;
}

.yc-trust-benefit + .yc-trust-benefit {
  border-left: 1px solid var(--yc-color-border);
}

.yc-trust-benefit h2,
.yc-trust-benefit p {
  margin: 0;
}

.yc-trust-benefit h2 {
  font-size: 0.95rem;
}

.yc-trust-benefit p {
  color: var(--yc-color-muted);
  font-size: 0.8rem;
}

.yc-trust-benefit__icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.yc-product-card {
  position: relative;
}

.yc-product-card__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--yc-color-subtle);
}

.yc-product-card__media--placeholder {
  aspect-ratio: 4 / 3;
  max-height: 18rem;
}

.yc-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 180ms ease;
}

.yc-product-card:hover img {
  scale: 1.025;
}

.yc-product-card__body {
  padding: 1rem;
}

.yc-product-card h2,
.yc-product-card h3 {
  margin: 0.6rem 0 0.35rem;
  font-size: 1.05rem;
}

.yc-product-card h2 a,
.yc-product-card h3 a {
  text-decoration: none;
}

.yc-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  color: var(--yc-color-brand);
  background: color-mix(in srgb, var(--yc-color-brand) 10%, white);
  font-size: 0.75rem;
  font-weight: 800;
}

.yc-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0.4rem 0;
}

.yc-price s {
  color: var(--yc-color-muted);
}

.yc-price strong {
  font-size: 1.1rem;
}

.yc-image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  place-content: center;
  justify-items: center;
  gap: 0.65rem;
  padding: 1.5rem;
  color: var(--yc-color-muted);
  background:
    linear-gradient(135deg, transparent 48%, rgb(23 33 27 / 8%) 49% 51%, transparent 52%),
    var(--yc-color-subtle);
  text-align: center;
}

.yc-image-placeholder--large {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--yc-radius-lg);
}

.yc-image-placeholder__mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--yc-color-border);
  border-radius: 999px;
  color: var(--yc-color-brand);
  background: var(--yc-color-surface);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.yc-image-placeholder__label {
  font-size: 0.9rem;
  font-weight: 700;
}

.yc-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0;
  color: var(--yc-color-muted);
  list-style: none;
}

.yc-breadcrumbs li:not(:last-child)::after {
  margin-left: 0.5rem;
  content: "/";
}

.yc-product {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.yc-product__media {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: 0.75rem;
}

.yc-product__media img {
  width: 100%;
  border-radius: var(--yc-radius-lg);
}

.yc-product__description {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
}

.yc-product__primary-image {
  grid-column: 1 / -1;
}

.yc-product__details {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.yc-product__details h1 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.yc-product__title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.yc-wishlist-button {
  min-width: 2.75rem;
  border: 1px solid var(--yc-color-border);
  border-radius: 50%;
  color: var(--yc-color-brand);
  background: var(--yc-color-surface);
  cursor: pointer;
  font-size: 1.25rem;
}

.yc-wishlist-button--card {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.yc-product-gallery {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
}

.yc-product-gallery--single {
  grid-template-columns: minmax(0, 1fr);
}

.yc-product-gallery__thumbnails {
  display: grid;
  max-height: 100%;
  align-content: start;
  gap: 0.5rem;
  overflow-y: auto;
  scrollbar-width: thin;
}

.yc-product-gallery__thumbnails button,
.yc-product-gallery__slide {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.yc-product-gallery__thumbnails button[aria-selected="true"] {
  outline: 2px solid var(--yc-color-brand);
}

.yc-product-gallery__thumbnails img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.yc-product-gallery__viewport {
  display: grid;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  grid-template-rows: 100%;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: inline mandatory;
  background: var(--yc-color-surface);
}

.yc-product-gallery--portrait .yc-product-gallery__viewport {
  aspect-ratio: 4 / 5;
}

.yc-product-gallery--landscape .yc-product-gallery__viewport {
  aspect-ratio: 4 / 3;
}

.yc-product-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.yc-product-gallery__slide {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  height: 100%;
  place-items: center;
  scroll-snap-align: start;
  overflow: hidden;
}

.yc-product-gallery__slide picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.yc-product-gallery__slide > img {
  position: absolute;
  inset: 0;
}

.yc-product-gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.yc-product-gallery--single .yc-product-gallery__slide {
  cursor: zoom-in;
}

.yc-product-lightbox {
  position: fixed;
  z-index: 100;
  inset: 50% auto auto 50%;
  width: min(94vw, 76rem);
  height: min(94vh, 62rem);
  max-width: none;
  max-height: none;
  margin: 0;
  border: 0;
  overflow: hidden;
  padding: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 100vmax rgb(0 0 0 / 72%);
}

.yc-product-lightbox[hidden] {
  display: none;
}

.yc-product-lightbox::backdrop,
.yc-side-drawer::backdrop {
  background: rgb(0 0 0 / 72%);
}

.yc-product-lightbox > div {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.yc-product-lightbox img {
  position: absolute;
  top: 2rem;
  left: 3.5rem;
  display: block;
  width: calc(100% - 7rem);
  height: calc(100% - 4rem);
  max-width: calc(100% - 7rem);
  max-height: calc(100% - 4rem);
  object-fit: contain;
}

.yc-product-lightbox button {
  position: absolute;
  z-index: 2;
}

.yc-product-lightbox__close {
  top: 1rem;
  right: 1rem;
}

.yc-product-lightbox__previous {
  top: 50%;
  left: 1rem;
}

.yc-product-lightbox__next {
  top: 50%;
  right: 1rem;
}

.yc-side-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(100%, 31rem);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
}

.yc-side-drawer__panel {
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
}

.yc-side-drawer__body {
  overflow-y: auto;
  padding: 1rem;
}

.yc-category-tree,
.yc-category-tree ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.yc-richtext {
  max-width: 70ch;
}

.yc-richtext > :first-child {
  margin-top: 0;
}

.yc-richtext img {
  border-radius: var(--yc-radius-lg);
}

.yc-purchase-form,
.yc-form-card,
.yc-checkout-form {
  display: grid;
  gap: 1rem;
}

.yc-purchase-form {
  margin-top: 2rem;
}

.yc-purchase-form label,
.yc-form-card label,
.yc-checkout-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
}

.yc-purchase-form fieldset,
.yc-checkout-form fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.yc-purchase-form legend,
.yc-checkout-form legend {
  margin-bottom: 1rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.yc-variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.yc-variant-list label {
  position: relative;
}

.yc-variant-list input {
  position: absolute;
  opacity: 0;
}

.yc-variant-list span {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-sm);
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.yc-variant-list input:checked + span {
  border-color: var(--yc-color-brand);
  box-shadow: inset 0 0 0 1px var(--yc-color-brand);
}

.yc-variant-list .is-disabled {
  opacity: 0.45;
}

.yc-trust {
  color: var(--yc-color-muted);
  font-size: 0.9rem;
  text-align: center;
}

.yc-related {
  margin-top: clamp(4rem, 10vw, 8rem);
}

.yc-listing {
  display: grid;
  grid-template-columns: minmax(12rem, 16rem) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.yc-listing--full {
  grid-template-columns: minmax(0, 1fr);
}

.yc-listing__results {
  min-width: 0;
}

.yc-filters {
  position: sticky;
  top: 1.5rem;
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-lg);
  color: var(--yc-color-ink, var(--yc-color-text));
  background: var(--yc-color-surface);
}

.yc-filters__heading {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: color-mix(in srgb, var(--yc-color-subtle) 72%, var(--yc-color-surface));
}

.yc-filters h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.yc-filters__active-count,
.yc-filters__group-count {
  display: inline-grid;
  min-width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  padding-inline: 0.4rem;
  color: var(--yc-color-surface);
  background: var(--yc-color-brand);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.yc-filters details {
  border-top: 1px solid var(--yc-color-border);
  padding: 0;
}

.yc-filters summary {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.15rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 750;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.yc-filters summary::marker {
  color: var(--yc-color-muted);
  font-size: 0.7em;
}

.yc-filters summary:hover,
.yc-filters summary:focus-visible,
.yc-filters summary.is-active {
  color: var(--yc-color-brand);
  background: color-mix(in srgb, var(--yc-color-brand) 7%, transparent);
}

.yc-filters summary:focus-visible {
  outline: 2px solid var(--yc-color-brand);
  outline-offset: -2px;
}

.yc-filters__group-count {
  min-width: 1.35rem;
  height: 1.35rem;
  margin-left: auto;
  color: var(--yc-color-brand);
  background: color-mix(in srgb, var(--yc-color-brand) 14%, var(--yc-color-surface));
}

.yc-filters ul {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0 0.75rem 0.9rem;
  list-style: none;
}

.yc-filters li {
  min-width: 0;
}

.yc-filters li a {
  display: block;
  overflow: hidden;
  border-radius: var(--yc-radius-sm);
  padding: 0.55rem 0.7rem;
  color: var(--yc-color-muted);
  font-size: 0.9rem;
  line-height: 1.3;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yc-filters li a:hover,
.yc-filters li a:focus-visible {
  color: var(--yc-color-ink, var(--yc-color-text));
  background: var(--yc-color-subtle);
}

.yc-filters li a:focus-visible {
  outline: 2px solid var(--yc-color-brand);
  outline-offset: -2px;
}

.yc-filters li a.is-active {
  color: var(--yc-color-brand);
  background: color-mix(in srgb, var(--yc-color-brand) 11%, var(--yc-color-surface));
  box-shadow: inset 0.2rem 0 0 var(--yc-color-brand);
  font-weight: 750;
}

.yc-sort {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.yc-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  margin-top: 3rem;
  align-items: center;
}

.yc-pagination > :last-child {
  justify-self: end;
}

.yc-search-form {
  display: flex;
  max-width: 44rem;
  margin-bottom: 1.25rem;
  gap: 0.5rem;
}

.yc-search-page {
  min-width: 0;
}

.yc-results-summary {
  color: var(--yc-color-muted);
}

.yc-cart-layout,
.yc-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.yc-cart-lines {
  display: grid;
}

.yc-cart-line {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
  border-bottom: 1px solid var(--yc-color-border);
  padding-block: 1rem;
}

.yc-cart-line__image {
  display: block;
  width: 7rem;
  height: 8.75rem;
  overflow: hidden;
  border-radius: var(--yc-radius-sm);
}

.yc-cart-line__image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.yc-cart-line h3,
.yc-cart-line p {
  margin: 0 0 0.35rem;
}

.yc-cart-line__body {
  min-width: 0;
}

.yc-line-actions,
.yc-line-actions form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.65rem;
}

.yc-line-actions input {
  width: 4.5rem;
}

.yc-text-button {
  min-height: auto;
  border: 0;
  padding: 0;
  color: var(--yc-color-brand);
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
}

.yc-summary {
  position: sticky;
  top: 7rem;
  padding: 1.5rem;
}

.yc-summary h2 {
  margin-top: 0;
}

.yc-totals {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.yc-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.yc-totals dd {
  margin: 0;
  font-weight: 700;
}

.yc-totals__total {
  border-top: 1px solid var(--yc-color-border);
  padding-top: 1rem;
  font-size: 1.15rem;
}

.yc-text-link {
  display: block;
  margin-top: 1rem;
  text-align: center;
}

.yc-checkout-shell {
  background: linear-gradient(90deg, var(--yc-color-surface) 0 64%, var(--yc-color-subtle) 64%);
}

.yc-checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 46rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.yc-checkout-steps li {
  display: grid;
  gap: 0.45rem;
  color: var(--yc-color-muted);
  font-size: 0.85rem;
}

.yc-checkout-steps li::after {
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  height: 2px;
  margin-top: 0.85rem;
  background: var(--yc-color-border);
  content: "";
}

.yc-checkout-steps span {
  z-index: 1;
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  grid-row: 1;
  grid-column: 1;
  place-items: center;
  border-radius: 999px;
  background: var(--yc-color-border);
  font-weight: 800;
}

.yc-checkout-steps .is-current,
.yc-checkout-steps .is-complete {
  color: var(--yc-color-brand);
  font-weight: 800;
}

.yc-checkout-steps .is-current span,
.yc-checkout-steps .is-complete span,
.yc-checkout-steps .is-complete::after {
  color: white;
  background: var(--yc-color-brand);
}

.yc-checkout-form {
  padding: 1.5rem;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-lg);
  background: white;
}

.yc-checkout-actions {
  display: grid;
  gap: 0.75rem;
}

.yc-checkout-actions.has-back {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yc-delivery-options {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.yc-delivery-option {
  display: grid;
  align-items: start;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-sm);
  padding: 1rem;
  background: white;
  gap: 0.75rem;
}

label.yc-delivery-option {
  grid-template-columns: auto 1fr;
  cursor: pointer;
}

.yc-delivery-option:has(input:checked),
.yc-delivery-option.is-selected {
  border-color: var(--yc-color-brand);
  box-shadow: inset 0 0 0 1px var(--yc-color-brand);
}

.yc-delivery-option input {
  margin-top: 0.25rem;
}

.yc-delivery-option__content {
  display: grid;
  gap: 0.25rem;
}

.yc-delivery-option__heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.yc-delivery-option__price {
  white-space: nowrap;
}

.yc-destination-picker {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-lg);
  background: var(--yc-color-surface);
}

.yc-destination-modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 0.5rem;
}

.yc-destination-mode {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-sm);
  cursor: pointer;
}

.yc-destination-search {
  position: relative;
}

.yc-destination-results {
  position: absolute;
  z-index: 20;
  top: 100%;
  right: 0;
  left: 0;
  max-height: 18rem;
  overflow: auto;
  padding: 0.35rem;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-sm);
  background: var(--yc-color-surface);
  box-shadow: var(--yc-shadow);
}

.yc-destination-results button {
  display: grid;
  width: 100%;
  gap: 0.2rem;
  padding: 0.7rem;
  border: 0;
  border-radius: var(--yc-radius-sm);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.yc-destination-results button:hover,
.yc-destination-results button:focus-visible {
  background: var(--yc-color-subtle);
  outline: 2px solid var(--yc-color-brand);
}

.yc-destination-status {
  min-height: 1.5rem;
  color: var(--yc-color-muted);
}

.yc-destination-retry {
  justify-self: start;
}

.yc-delivery-option small {
  color: var(--yc-color-muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.yc-delivery-address {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.yc-delivery-address h3,
.yc-delivery-address p {
  margin: 0;
}

.yc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.yc-secure-slot {
  min-height: 8rem;
  border: 1px dashed var(--yc-color-border);
  border-radius: var(--yc-radius-sm);
  padding: 1rem;
  background: var(--yc-color-subtle);
}

.yc-payment-options {
  display: grid;
  gap: 0.75rem;
}

.yc-payment-option {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-sm);
  background: white;
  cursor: pointer;
}

.yc-payment-option:has(input:checked) {
  border-color: var(--yc-color-brand);
  box-shadow: inset 0 0 0 1px var(--yc-color-brand);
}

.yc-payment-option__mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 1.7rem;
  border-radius: 0.35rem;
  background: #162d25;
  color: white;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.yc-payment-option--stripe .yc-payment-option__mark {
  background: #635bff;
}

.yc-payment-option--paypal .yc-payment-option__mark {
  background: #003087;
  color: #ffc439;
}

.yc-payment-option--mypos .yc-payment-option__mark {
  background: #00a693;
  text-transform: lowercase;
}

.yc-payment-option__content {
  display: grid;
  gap: 0.2rem;
}

.yc-payment-option__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.yc-payment-option__content small {
  color: var(--yc-color-muted);
}

.yc-payment-option__test {
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: #fff1c2;
  color: #704d00;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.yc-account-auth {
  max-width: 35rem;
}

.yc-form-card {
  padding: clamp(1.25rem, 5vw, 2.5rem);
}

.yc-account-layout {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.yc-account-nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.8rem;
}

.yc-account-card {
  padding: 1.25rem;
}

.yc-account-heading,
.yc-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.yc-address-grid {
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.yc-account-card address {
  margin-bottom: 1rem;
  font-style: normal;
}

.yc-order-list {
  display: grid;
  gap: 0.75rem;
}

.yc-order-row {
  margin: 0;
}

.yc-order-row h2 {
  margin: 0;
  font-size: 1.1rem;
}

.yc-order-total {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  text-align: right;
}

.yc-content {
  max-width: 56rem;
}

.yc-state-page,
.yc-empty {
  display: grid;
  min-height: 28rem;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.yc-state-code {
  margin: 0;
  color: var(--yc-color-accent);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 0.8;
}

.yc-empty {
  min-height: 18rem;
  border: 1px dashed var(--yc-color-border);
  border-radius: var(--yc-radius-lg);
  padding: 2rem;
}

.yc-notice {
  margin-top: 1rem;
  border-left: 4px solid var(--yc-color-brand);
  padding: 0.8rem 1rem;
  background: var(--yc-color-subtle);
}

.yc-footer {
  border-top: 1px solid var(--yc-color-border);
  padding-top: clamp(3rem, 8vw, 6rem);
  background: var(--yc-color-subtle);
}

.yc-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.yc-footer__grid nav,
.yc-footer__grid > div:not(:first-child) {
  align-items: flex-start;
  flex-direction: column;
}

.yc-footer__grid h2 {
  margin: 0;
  font-size: 0.9rem;
}

.yc-footer__brand p {
  color: var(--yc-color-muted);
}

.yc-footer__group ul,
.yc-footer__social ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.yc-footer__social {
  display: flex;
  flex-direction: row !important;
  gap: 1rem;
}

.yc-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  border-top: 1px solid var(--yc-color-border);
  padding-block: 1.25rem;
  color: var(--yc-color-muted);
  font-size: 0.85rem;
}

.yc-price-access-notice {
  border-block: 1px solid var(--yc-color-border);
  padding: 0.75rem 1rem;
  color: var(--yc-color-muted);
  background: var(--yc-color-subtle);
  text-align: center;
}

.yc-utility-registration {
  border: 1px solid var(--yc-color-brand);
  border-radius: var(--yc-radius-sm);
  padding: 0.65rem 0.9rem;
  text-decoration: none;
}

.yc-product-facts,
.yc-business-checkout dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.yc-product-facts dt,
.yc-business-checkout dt {
  color: var(--yc-color-muted);
  font-size: 0.75rem;
}

.yc-product-facts dd,
.yc-business-checkout dd {
  margin: 0.25rem 0 0;
}

.yc-product-price-access,
.yc-card-price-access,
.yc-product-support,
.yc-business-checkout__company,
.yc-business-checkout__delivery,
.yc-business-checkout__products,
.yc-business-summary {
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-md);
  padding: 1.25rem;
  background: var(--yc-color-surface);
}

.yc-product-price-access,
.yc-card-price-access {
  display: grid;
  gap: 0.75rem;
}
.yc-product-price-access p,
.yc-card-price-access p {
  margin: 0;
}

.yc-locked-product-configurator,
.yc-product-tabs,
.yc-product-lower,
.yc-business-checkout,
.yc-business-support {
  display: grid;
  gap: 1rem;
}

.yc-product__botanical {
  color: var(--yc-color-muted);
  font-style: italic;
}
.yc-delivery-window {
  display: grid;
  gap: 0.5rem;
}
.yc-delivery-window select {
  min-height: 2.75rem;
}
.yc-business-checkout__heading,
.yc-business-delivery-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.yc-business-delivery-option small {
  display: block;
  color: var(--yc-color-muted);
}
.yc-arrival-note,
.yc-business-reassurance {
  padding: 1rem;
  background: var(--yc-color-subtle);
}
.yc-business-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.yc-product-card__operations {
  display: grid;
  gap: 0.25rem;
  color: var(--yc-color-muted);
}

@media (max-width: 60rem) {
  .yc-header-context {
    display: none;
  }

  .yc-header__inner {
    position: relative;
    min-width: 0;
    min-height: 4.25rem;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .yc-primary-nav,
  .yc-utilities {
    display: none;
  }

  .yc-mobile-menu {
    display: block;
    grid-row: 1;
    grid-column: 2;
  }

  .yc-mobile-menu summary {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    border: 1px solid var(--yc-color-border);
    border-radius: var(--yc-radius-sm);
    padding: 0.6rem 0.8rem;
    background: var(--yc-color-surface);
    font-weight: 800;
    list-style: none;
    cursor: pointer;
  }

  .yc-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .yc-mobile-menu summary:hover,
  .yc-mobile-menu summary:focus-visible,
  .yc-mobile-menu[open] summary {
    border-color: var(--yc-color-brand);
    color: var(--yc-color-brand);
  }

  .yc-mobile-menu__panel {
    position: absolute;
    z-index: 45;
    top: 100%;
    right: 0;
    left: 0;
    max-height: min(32rem, calc(100svh - 4.25rem));
    overflow-y: auto;
    border: 1px solid var(--yc-color-border);
    border-radius: 0 0 var(--yc-radius-lg) var(--yc-radius-lg);
    padding: 1rem;
    background: var(--yc-color-surface);
    box-shadow: var(--yc-shadow);
  }

  .yc-mobile-menu__panel nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .yc-mobile-menu__panel nav + nav {
    margin-top: 0.75rem;
    border-top: 1px solid var(--yc-color-border);
    padding-top: 0.75rem;
  }

  .yc-mobile-menu__actions a {
    font-weight: 700;
  }

  .yc-mobile-menu__panel .yc-mobile-menu__context {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .yc-mobile-menu__context a {
    width: auto;
    color: var(--yc-color-muted);
    font-size: 0.85rem;
  }

  .yc-mobile-menu__panel a {
    width: 100%;
    border-radius: var(--yc-radius-sm);
    padding: 0.65rem 0.75rem;
    text-decoration: none;
  }

  .yc-mobile-menu__panel a:hover,
  .yc-mobile-menu__panel a:focus-visible,
  .yc-mobile-menu__panel a[aria-current="page"] {
    background: var(--yc-color-subtle);
  }

  .yc-hero__layout,
  .yc-product-showcase,
  .yc-editorial-section__layout,
  .yc-product,
  .yc-cart-layout,
  .yc-checkout-layout {
    grid-template-columns: 1fr;
  }

  .yc-product-showcase--media-right .yc-product-showcase__media {
    order: 0;
  }

  .yc-editorial-section--media-right .yc-editorial-section__media {
    order: 0;
  }

  .yc-trust-bar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yc-trust-benefit:nth-child(odd) {
    border-left: 0;
  }

  .yc-hero__layout {
    min-height: auto;
  }

  .yc-product__details,
  .yc-summary {
    position: static;
  }

  .yc-checkout-shell {
    background: var(--yc-color-surface);
  }

  .yc-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 42rem) {
  .yc-utilities > a:first-of-type {
    display: none;
  }

  .yc-hero__layout {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 3rem;
  }

  .yc-hero__content h1 {
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  .yc-listing,
  .yc-account-layout {
    grid-template-columns: 1fr;
  }

  .yc-filters {
    position: static;
    border: 1px solid var(--yc-color-border);
    border-radius: var(--yc-radius-lg);
    padding: 0;
  }

  .yc-product__media {
    display: grid;
    overflow: visible;
  }

  .yc-product-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .yc-product-gallery__thumbnails {
    display: flex;
    max-width: 100%;
    max-height: none;
    order: 2;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .yc-product-gallery__thumbnails button {
    width: 4.5rem;
    flex: 0 0 4.5rem;
  }

  .yc-product-gallery__viewport {
    order: 1;
  }

  .yc-cart-line {
    grid-template-columns: 5rem 1fr;
  }

  .yc-cart-line > strong {
    grid-column: 2;
  }

  .yc-cart-line__image {
    width: 5rem;
    height: 6.25rem;
  }

  .yc-checkout-steps {
    grid-template-columns: repeat(4, minmax(4rem, 1fr));
    overflow-x: auto;
  }

  .yc-checkout-actions.has-back {
    grid-template-columns: 1fr;
  }

  .yc-form-grid,
  .yc-footer__grid {
    grid-template-columns: 1fr;
  }

  .yc-trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .yc-trust-benefit + .yc-trust-benefit {
    border-top: 1px solid var(--yc-color-border);
    border-left: 0;
  }

  .yc-footer__legal,
  .yc-account-heading,
  .yc-order-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

.yc-comparison {
  display: grid;
  gap: var(--yc-space-lg);
}

.yc-comparison__action {
  align-self: end;
}

.yc-comparison__viewport {
  overflow-x: auto;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-lg);
}

.yc-comparison table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
  background: var(--yc-color-surface);
}

.yc-comparison th,
.yc-comparison td {
  padding: var(--yc-space-sm);
  border-right: 1px solid var(--yc-color-border);
  border-bottom: 1px solid var(--yc-color-border);
  text-align: left;
}

.yc-comparison-product {
  display: grid;
  gap: var(--yc-space-xs);
  cursor: pointer;
}

.yc-comparison-product__media {
  display: block;
  height: 8rem;
}

.yc-comparison-product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yc-guides {
  display: grid;
  gap: var(--yc-space-lg);
}

.yc-guides__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: var(--yc-space-md);
}

.yc-guide-card {
  overflow: hidden;
  border: 1px solid var(--yc-color-border);
  border-radius: var(--yc-radius-lg);
  background: var(--yc-color-surface);
}

.yc-guide-card__media {
  height: 11rem;
}

.yc-guide-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yc-guide-card__body {
  padding: var(--yc-space-md);
}

@media (prefers-contrast: more) {
  :root {
    --yc-color-border: #546259;
  }

  .yc-button,
  input,
  select,
  textarea {
    border-width: 2px;
  }
}

@media print {
  .yc-announcement,
  .yc-header,
  .yc-footer,
  .yc-account-nav,
  .yc-button,
  .yc-line-actions {
    display: none !important;
  }

  body {
    color: black;
    background: white;
  }
}
