:root {
  --shop-bg: #ffffff;
  --shop-surface: #ffffff;
  --shop-footer: #f6f6f4;
  --shop-line: rgba(26, 26, 26, 0.12);
  --shop-line-strong: rgba(26, 26, 26, 0.22);
  --shop-text: #202020;
  --shop-muted: #6d6d6b;
  --shop-accent: #ff5b55;
  --shop-black: #2e2e2e;
}

html {
  min-height: 100%;
  font-size: 16px;
}

body.shop-shell {
  margin: 0;
  min-height: 100vh;
  background: var(--shop-bg);
  color: var(--shop-text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  color: inherit;
}

.shop-top-line {
  height: 7px;
  background: #2f2f2f;
}

.shop-site-frame {
  width: 100%;
  min-height: calc(100vh - 7px);
  background: var(--shop-surface);
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--shop-line);
}

.shop-search-open {
  overflow: hidden;
}

.shop-header-desktop,
.shop-header-mobile {
  width: 100%;
  min-height: 82px;
  padding: 0 28px;
}

.shop-header-desktop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.shop-header-side {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.shop-header-side-right {
  justify-content: flex-end;
}

.shop-app-cta,
.shop-footer-app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 16px;
  background: var(--shop-accent);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-primary-nav,
.shop-utility-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.shop-primary-nav a,
.shop-utility-nav a,
.shop-utility-link-button,
.shop-mobile-link-button {
  color: var(--shop-text);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.shop-utility-link-button,
.shop-mobile-link-button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.shop-cart-trigger.is-hidden {
  display: none;
}

.shop-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 52px;
    justify-self: center;
}

.shop-logo-image {
    display: block;
    width: 100%;
    max-width: 70px;
    height: auto;
}

.shop-logo-mark {
    display: inline-flex;
    align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 42px;
}

.shop-logo-mark span {
  display: block;
  width: 10px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #999997 0%, #666664 100%);
}

.shop-logo-mark span:nth-child(1) {
  height: 22px;
  transform: rotate(-28deg);
}

.shop-logo-mark span:nth-child(2) {
  height: 32px;
}

.shop-logo-mark span:nth-child(3) {
  height: 22px;
  transform: rotate(28deg);
}

.shop-header-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shop-mobile-icon-button,
.shop-mobile-link-button,
.shop-mobile-close {
  border: 0;
  background: transparent;
  padding: 0;
}

.shop-mobile-icon-button {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 34px;
}

.shop-mobile-icon-button span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--shop-text);
}

.shop-mobile-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shop-mobile-search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shop-mobile-search-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.shop-header-search-panel {
  display: none;
  align-items: center;
  min-height: 82px;
  padding: 0 28px;
  border-top: 1px solid var(--shop-line);
  background: rgba(255, 255, 255, 0.98);
}

.shop-search-open .shop-header-search-panel {
  display: flex;
}

.shop-header-search-form {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.shop-header-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #676767;
}

.shop-header-search-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.shop-header-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 19px;
  line-height: 1.4;
  color: var(--shop-text);
}

.shop-header-search-input::placeholder {
  color: #8d8d8d;
}

.shop-header-search-input:focus {
  outline: none;
}

.shop-header-search-input::-webkit-search-decoration,
.shop-header-search-input::-webkit-search-cancel-button,
.shop-header-search-input::-webkit-search-results-button,
.shop-header-search-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.shop-header-search-input::-ms-clear,
.shop-header-search-input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.shop-header-search-clear {
  border: 0;
  background: transparent;
  padding: 0;
  color: #7d7d7d;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.shop-search-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(17, 17, 17, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.shop-search-open .shop-search-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.shop-main {
  width: 100%;
  min-height: 60vh;
  background: #fff;
}

.shop-main-surface {
  width: 100%;
  min-height: 100%;
  background: #fff;
}

.shop-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 45;
}

.shop-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 84vw);
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  z-index: 50;
  padding: 0 24px 28px;
  display: flex;
  flex-direction: column;
}

.shop-cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 55;
}

.shop-cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 60;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--shop-line);
}

.shop-cart-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 0 28px;
  border-bottom: 1px solid var(--shop-line);
}

.shop-cart-sidebar-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.shop-cart-close {
  border: 0;
  background: transparent;
  color: var(--shop-text);
  font-size: 34px;
  line-height: 1;
}

.shop-cart-sidebar-content {
  flex: 1;
  min-height: 0;
  display: flex;
}

.shop-mobile-drawer-header {
  display: flex;
  justify-content: flex-start;
  min-height: 82px;
  align-items: center;
}

.shop-mobile-close {
  color: var(--shop-text);
  font-size: 34px;
  line-height: 1;
}

.shop-mobile-nav {
  display: flex;
  flex-direction: column;
}

.shop-mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border-bottom: 1px solid var(--shop-line);
  color: var(--shop-text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.shop-nav-open {
  overflow: hidden;
}

body.shop-cart-open {
  overflow: hidden;
}

body.shop-nav-open .shop-mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.shop-nav-open .shop-mobile-drawer {
  transform: translateX(0);
}

body.shop-cart-open .shop-cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.shop-cart-open .shop-cart-sidebar {
  transform: translateX(0);
}

.shop-footer {
  background: var(--shop-footer);
  border-top: 1px solid var(--shop-line);
  padding: 56px 42px 24px;
}

.shop-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 44px;
  align-items: start;
}

.shop-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.shop-footer-title {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-footer-column a,
.shop-footer-column span {
  color: var(--shop-text);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-footer-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.shop-footer-logo {
  display: block;
  max-width: 100%;
  height: auto;
}

.shop-footer-logo-brand {
  width: min(240px, 100%);
}

.shop-footer-logo-paycell {
  width: min(200px, 100%);
}

.shop-footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 52px;
  color: var(--shop-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.shop-hero {
  padding: 48px 0 22px;
  background: #fff;
}

.shop-hero-panel {
  margin: 0 36px;
  padding: 40px;
  border: 1px solid var(--shop-line);
  background:
    linear-gradient(135deg, rgba(255, 91, 85, 0.98), rgba(113, 39, 32, 0.94)),
    #171717;
  color: #fff;
}

.shop-kicker {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.shop-hero-panel h1,
.shop-page-title,
.shop-section-head h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.shop-hero-panel h1 {
  max-width: 760px;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.02;
}

.shop-hero-panel p,
.shop-page-subtitle {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.75;
}

.shop-page-subtitle {
  color: var(--shop-muted);
}

.shop-search-form {
  margin: 0 0 36px;
  display: grid;
  gap: 10px;
}

.shop-search-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shop-muted);
}

.shop-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.shop-search-input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(25, 25, 25, 0.18);
  background: #fff;
  padding: 0 18px;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #111;
}

.shop-search-input:focus {
  outline: none;
  border-color: rgba(25, 25, 25, 0.48);
}

.shop-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--shop-line-strong);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-button-primary {
  background: #fff;
  color: #231f20;
}

.shop-button-secondary {
  background: transparent;
  color: var(--shop-text);
}

.shop-stat {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-button-ghost-light {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

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

.shop-home-hero-media {
  position: relative;
  min-height: calc(100vh - 89px);
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.44) 38%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, #0f0f10 0%, #232326 100%);
  overflow: hidden;
}

.shop-home-hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 62% 46%, rgba(255, 255, 255, 0.04), transparent 16%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  content: "";
}

.shop-home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.shop-home-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100vh - 89px);
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 64px 72px;
  color: #fff;
}

.shop-home-hero-content h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(42px, 7vw, 98px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.shop-home-hero-content p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-home-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.shop-home-hero-track {
  position: absolute;
  inset: 0;
}

.shop-home-hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.44) 38%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, #0f0f10 0%, #232326 100%);
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.shop-home-hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.shop-home-hero-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.shop-home-hero-control {
  position: absolute;
  top: 50%;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease;
}

.shop-home-hero-control:hover,
.shop-home-hero-control:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.48);
}


.shop-home-hero-control span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  line-height: 1;
  transform: translateY(-1px);
}
.shop-home-hero-control[data-shop-home-hero-prev] {
  left: 28px;
}

.shop-home-hero-control[data-shop-home-hero-next] {
  right: 28px;
}

.shop-home-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-home-section {
    padding: 58px 36px 24px;
}

.shop-home-editorial {
    padding: 0;
    margin-top: 50px;
}

.shop-home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--shop-line);
}

.shop-home-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.shop-home-section-copy {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--shop-muted);
  font-size: 14px;
  line-height: 1.75;
}

.shop-products-grid,
.shop-home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 24px;
  padding-top: 34px;
}

.shop-home-product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: transparent;
}

.shop-product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.shop-home-product-visual {
  position: relative;
  aspect-ratio: 0.86;
  overflow: hidden;
  background: linear-gradient(180deg, #f9f9f7 0%, #ecece7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-card-image-primary,
.shop-card-image-secondary {
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.shop-card-image-secondary {
  opacity: 0;
  transform: scale(1.02);
}

.shop-home-product-card:hover .shop-card-image-primary,
.shop-collection-product-card:hover .shop-card-image-primary {
  opacity: 0;
  transform: scale(1.02);
}

.shop-home-product-card:hover .shop-card-image-secondary,
.shop-collection-product-card:hover .shop-card-image-secondary {
  opacity: 1;
  transform: scale(1);
}

.shop-home-product-body {
  padding: 18px 2px 0;
  text-align: center;
}

.shop-home-product-body h3 {
  margin: 0;
  color: var(--shop-text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-home-product-price {
  margin-top: 8px;
  color: var(--shop-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.shop-home-product-price-sale {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.shop-product-price-old {
  color: var(--shop-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.shop-product-price-new {
  color: var(--shop-text);
  font-weight: 600;
}

.shop-product-detail-page {
  padding: 42px 36px 96px;
}

.shop-product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 44px;
  align-items: start;
  max-width: 1480px;
  margin: 0 auto;
}

.shop-product-detail-gallery {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.shop-product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.shop-product-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  padding: 0;
  border: 1px solid transparent;
  background: #f6f6f3;
  aspect-ratio: 0.84;
  cursor: pointer;
  transition: border-color 0.22s ease, opacity 0.22s ease;
}

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

.shop-product-thumb.is-active {
  border-color: var(--shop-text);
}

.shop-product-thumb:not(.is-active) {
  opacity: 0.78;
}

.shop-product-thumb span,
.shop-product-main-placeholder {
  color: var(--shop-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-product-main-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 760px;
  padding: 36px;
  background: #fbfbf8;
}

.shop-product-main-image {
  width: 100%;
  max-height: 688px;
  object-fit: contain;
  object-position: center;
}

.shop-product-main-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 688px;
}

.shop-product-info {
  position: sticky;
  top: 118px;
}

.shop-product-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.shop-product-color-text {
  margin-top: 12px;
  color: var(--shop-text);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-product-price {
  margin-top: 18px;
  color: var(--shop-text);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.shop-product-price-sale {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-product-price-sale .shop-product-price-old {
  font-size: 16px;
  font-weight: 400;
}

.shop-product-option-group {
  margin-top: 28px;
}

.shop-product-option-label {
  margin-bottom: 12px;
  color: var(--shop-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-product-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-product-option-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 68px;
  padding: 0 14px;
  border: 1px solid var(--shop-line);
  background: #fff;
  color: var(--shop-text);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.shop-product-option-button.is-active {
  border-color: var(--shop-text);
}

.shop-product-option-button.is-unavailable,
.shop-product-option-button:disabled {
  color: rgba(32, 32, 32, 0.35);
  opacity: 0.6;
}

.shop-product-option-button:disabled {
  cursor: not-allowed;
}

.shop-product-add-to-cart {
  width: 100%;
  margin-top: 32px;
  min-height: 50px;
  border: 1px solid #2f2f2f;
  background: #2f2f2f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.shop-product-add-to-cart:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.shop-product-cart-message {
  min-height: 18px;
  margin-top: 10px;
  color: var(--shop-muted);
  font-size: 12px;
  line-height: 1.5;
}

.shop-product-accordion {
  margin-top: 34px;
  border-top: 1px solid var(--shop-line);
}

.shop-product-accordion-item {
  border-bottom: 1px solid var(--shop-line);
}

.shop-product-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--shop-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: left;
  text-transform: uppercase;
}

.shop-product-accordion-icon {
  color: var(--shop-muted);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.22s ease;
}

.shop-product-accordion-content {
  display: none;
  padding: 0 0 18px;
  color: var(--shop-muted);
  font-size: 13px;
  line-height: 1.75;
}

.shop-product-accordion-item.is-open .shop-product-accordion-content {
  display: block;
}

.shop-product-accordion-content > :first-child {
  margin-top: 0;
}

.shop-product-accordion-content > :last-child {
  margin-bottom: 0;
}

.shop-product-detail-html-section {
  margin-top: 56px;
  border-top: 1px solid var(--shop-line);
  padding-top: 34px;
}

.shop-product-detail-html-content {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--shop-text);
  font-size: 14px;
  line-height: 1.8;
}

.shop-product-detail-html-content > :first-child {
  margin-top: 0;
}

.shop-product-detail-html-content > :last-child {
  margin-bottom: 0;
}

.shop-product-attributes-section {
  margin-top: 28px;
  border-top: 1px solid var(--shop-line);
  padding-top: 24px;
}

.shop-product-attributes-content {
  max-width: 1120px;
  margin: 0 auto;
}

.shop-product-attribute-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--shop-line);
}

.shop-product-attribute-key {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-product-attribute-value {
  font-size: 14px;
  line-height: 1.8;
  color: var(--shop-text);
}

.shop-cart-panel {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
}

.shop-cart-empty {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 28px;
  text-align: center;
}

.shop-cart-empty p {
  margin: 0;
  color: var(--shop-muted);
  font-size: 14px;
  line-height: 1.7;
}

.shop-cart-items {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 16px 0 28px;
}

.shop-cart-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
}

.shop-cart-item + .shop-cart-item {
  border-top: 1px solid var(--shop-line);
}

.shop-cart-item-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  background: #f8f8f5;
  aspect-ratio: 0.88;
  overflow: hidden;
}

.shop-cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-cart-item-thumb span {
  color: var(--shop-muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-cart-item-title {
  color: var(--shop-text);
  font-size: 14px;
  line-height: 1.55;
}

.shop-cart-item-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
  color: var(--shop-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-cart-item-price {
  margin-top: 8px;
  color: var(--shop-text);
  font-size: 14px;
}

.shop-cart-qty {
  display: inline-grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  min-width: 116px;
  margin-top: 12px;
  border: 1px solid var(--shop-line);
}

.shop-cart-qty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: var(--shop-text);
  font-size: 20px;
  line-height: 1;
}

.shop-cart-qty-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.shop-cart-qty-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-left: 1px solid var(--shop-line);
  border-right: 1px solid var(--shop-line);
  font-size: 13px;
}

.shop-cart-item-actions {
  min-width: 64px;
  padding-top: 6px;
}

.shop-cart-remove {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--shop-muted);
  font-size: 11px;
  text-decoration: underline;
}

.shop-cart-footer {
  padding: 18px 20px 20px 28px;
  border-top: 1px solid var(--shop-line);
  background: #fff;
}

.shop-cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--shop-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-cart-subtotal strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.shop-cart-shipping-note {
  margin-bottom: 16px;
  color: var(--shop-muted);
  font-size: 12px;
  line-height: 1.6;
}

.shop-cart-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  background: #2f2f2f;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.shop-cart-page-shell {
  padding: 38px 36px 88px;
}

.shop-cart-page-head {
  max-width: 1380px;
  margin: 0 auto 28px;
}

.shop-cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
  max-width: 1380px;
  margin: 0 auto;
}

.shop-cart-page-items {
  border-top: 1px solid var(--shop-line);
}

.shop-cart-page-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--shop-line);
}

.shop-cart-page-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f5;
  aspect-ratio: 0.88;
  overflow: hidden;
}

.shop-cart-page-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-cart-page-thumb span {
  color: var(--shop-muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-cart-page-copy h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.shop-cart-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  color: var(--shop-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-cart-page-price {
  margin-top: 10px;
  font-size: 15px;
}

.shop-cart-page-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.shop-cart-page-summary {
  position: sticky;
  top: 118px;
}

.shop-cart-page-summary-card {
  padding: 24px;
  border: 1px solid var(--shop-line);
  background: #fff;
}

.shop-checkout-shell {
  padding: 0;
}

.shop-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - 89px);
}

.shop-checkout-main {
  display: flex;
  justify-content: flex-end;
  padding: 42px 56px 72px 40px;
  overflow: auto;
}

.shop-checkout-summary {
  display: flex;
  justify-content: flex-start;
  min-height: calc(100vh - 89px);
  padding: 42px 40px 72px 56px;
  border-left: 1px solid var(--shop-line);
  background: #f8f8f6;
}

.shop-checkout-main-inner,
.shop-checkout-summary-inner {
  width: min(100%, 520px);
}

.shop-checkout-summary-inner {
  position: sticky;
  top: 131px;
  align-self: flex-start;
}

.shop-checkout-brand {
  margin-bottom: 24px;
}

.shop-logo-static {
  width: 78px;
  justify-self: flex-start;
}

.shop-checkout-steps {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  color: var(--shop-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-checkout-steps span {
  position: relative;
}

.shop-checkout-steps span:not(:last-child)::after {
  content: ">";
  margin-left: 18px;
}

.shop-checkout-steps .is-active {
  color: var(--shop-text);
}

.shop-checkout-section + .shop-checkout-section {
  margin-top: 34px;
}

.shop-checkout-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.shop-checkout-section-head h1,
.shop-checkout-section-head h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.shop-checkout-alert {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid var(--shop-line);
  font-size: 13px;
  line-height: 1.6;
}

.shop-checkout-alert-error {
  background: #fff3f2;
  color: #8d3b34;
  border-color: rgba(141, 59, 52, 0.18);
}

.shop-checkout-alert-success {
  background: #f2f8f2;
  color: #2f5c35;
  border-color: rgba(47, 92, 53, 0.18);
}

.shop-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shop-checkout-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-checkout-field span {
  color: var(--shop-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-checkout-field input,
.shop-checkout-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--shop-line);
  background: #fff;
  color: var(--shop-text);
  font: inherit;
}

.shop-checkout-field select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--shop-line);
  background: #fff;
  color: var(--shop-text);
  font: inherit;
}

.shop-checkout-field textarea {
  min-height: 110px;
  resize: vertical;
}

.shop-checkout-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.shop-checkout-contact-card,
.shop-checkout-empty-note {
  padding: 16px 18px;
  border: 1px solid var(--shop-line);
  background: #fff;
  color: var(--shop-muted);
  font-size: 14px;
  line-height: 1.7;
}

.shop-payment-trust-note {
  margin-top: 16px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(47, 47, 47, 0.12);
  background: #faf9f6;
  color: var(--shop-muted);
  font-size: 13px;
  line-height: 1.7;
}

.shop-payment-note-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}

.shop-payment-note-stack .shop-payment-trust-note {
  margin: 0;
}

.shop-payment-fineprint {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  line-height: 1.6;
}

.shop-payment-context {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.shop-payment-context-title {
  color: var(--shop-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-payment-context .shop-checkout-contact-card + .shop-checkout-contact-card {
  margin-top: 0;
}

.shop-payment-form-error {
  margin-bottom: 0;
}

.shop-payment-field {
  gap: 6px;
}

.shop-payment-input-shell {
  position: relative;
}

.shop-payment-input-shell input {
  padding-right: 88px;
}

.shop-payment-card-type {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--shop-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.shop-payment-field-help,
.shop-payment-field-error {
  display: block;
  min-height: 18px;
  font-size: 12px;
  line-height: 1.5;
}

.shop-payment-field-help {
  color: var(--shop-muted);
}

.shop-payment-field-error {
  color: #8d3b34;
}

.shop-checkout-contact-card + .shop-checkout-contact-card {
  margin-top: 14px;
}

.shop-checkout-address-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-checkout-address-card {
  padding: 18px;
  border: 1px solid var(--shop-line);
  background: #fff;
}

.shop-checkout-address-card.is-selected {
  border-color: var(--shop-text);
  box-shadow: inset 0 0 0 1px var(--shop-text);
}

.shop-checkout-address-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.shop-checkout-address-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-checkout-address-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid var(--shop-text);
  color: var(--shop-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-checkout-address-card-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.shop-checkout-address-selected-note {
  color: var(--shop-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-checkout-address-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--shop-muted);
  font-size: 14px;
  line-height: 1.6;
}

.shop-checkout-address-copy strong {
  color: var(--shop-text);
  font-size: 14px;
  font-weight: 600;
}

.shop-checkout-address-form-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--shop-line);
  background: #faf9f6;
}

.shop-checkout-address-form-panel .shop-checkout-section-head {
  margin-bottom: 16px;
}

.shop-checkout-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.shop-complete-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shop-complete-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: var(--shop-text);
}

.shop-complete-summary-grid {
  padding: 20px 0 6px;
  border-top: 1px solid var(--shop-line);
  border-bottom: 1px solid var(--shop-line);
}

.shop-complete-items-section {
  margin-top: 4px;
}

.shop-complete-actions {
  align-items: stretch;
  flex-direction: column;
}

.shop-complete-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--shop-line);
  color: var(--shop-text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.shop-complete-secondary-link:hover {
  border-color: var(--shop-text);
}

.shop-checkout-back,
.shop-checkout-text-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--shop-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-checkout-back:hover,
.shop-checkout-back:focus,
.shop-checkout-back:visited,
.shop-checkout-text-button:hover,
.shop-checkout-text-button:focus,
.shop-checkout-text-button:visited {
  color: var(--shop-muted);
  text-decoration: none;
}

.shop-checkout-text-button.is-danger {
  color: #8d3b34;
}

.shop-checkout-text-button.is-danger:hover,
.shop-checkout-text-button.is-danger:focus,
.shop-checkout-text-button.is-danger:visited {
  color: #8d3b34;
}

.shop-checkout-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid #2f2f2f;
  background: #2f2f2f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-checkout-primary:hover,
.shop-checkout-primary:focus,
.shop-checkout-primary:visited {
  color: #fff;
  text-decoration: none;
}

.shop-checkout-primary.is-disabled {
  border-color: var(--shop-line);
  background: #c8c8c4;
  color: #fff;
  pointer-events: none;
  cursor: wait;
}

.shop-account-shell {
  padding: 42px 36px 72px;
}

.shop-account-auth-card,
.shop-account-page {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.shop-account-auth-card {
  max-width: 620px;
}

.shop-account-auth-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-account-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.shop-account-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.shop-account-nav-link,
.shop-account-nav-button {
  color: var(--shop-text);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.shop-account-nav-link.is-active,
.shop-account-nav-button:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.shop-account-logout-form {
  margin: 0;
}

.shop-account-nav-button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.shop-account-order-list,
.shop-account-order-items,
.shop-account-status-log-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shop-account-order-card,
.shop-account-detail-section,
.shop-account-status-log-item {
  border: 1px solid var(--shop-line);
  background: #fff;
}

.shop-account-order-card {
  display: block;
  padding: 18px;
  text-decoration: none;
  color: var(--shop-text);
}

.shop-account-order-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.shop-account-order-card-top span,
.shop-account-label {
  color: var(--shop-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-account-order-card-grid,
.shop-account-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shop-account-order-card-grid strong,
.shop-account-summary-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

.shop-account-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 28px;
}

.shop-account-detail-main,
.shop-account-detail-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shop-account-detail-section {
  padding: 20px;
}

.shop-account-order-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--shop-line);
}

.shop-account-order-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.shop-account-order-item-visual {
  width: 88px;
  height: 106px;
  background: #f5f4f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-account-order-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-account-order-item-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--shop-muted);
  font-size: 14px;
}

.shop-account-order-item-copy strong,
.shop-account-order-item-total {
  color: var(--shop-text);
}

.shop-account-order-item-total {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.shop-account-status-log-item {
  padding: 16px 18px;
}

.shop-account-status-log-item strong {
  display: block;
  margin-bottom: 6px;
}

.shop-account-status-log-item span {
  color: var(--shop-muted);
  font-size: 12px;
}

.shop-account-status-log-item p {
  margin: 10px 0 0;
  color: var(--shop-muted);
  line-height: 1.6;
}

.shop-checkout-summary-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.shop-checkout-summary-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shop-checkout-summary-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.shop-checkout-summary-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--shop-line);
  aspect-ratio: 0.88;
  overflow: hidden;
}

.shop-checkout-summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-checkout-summary-thumb span:not(.shop-checkout-summary-qty) {
  color: var(--shop-muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-checkout-summary-qty {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #151515;
  color: #fff;
  font-size: 10px;
  line-height: 22px;
  text-align: center;
}

.shop-checkout-summary-thumb .shop-checkout-summary-qty {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.shop-checkout-summary-title {
  color: var(--shop-text);
  font-size: 14px;
  line-height: 1.5;
}

.shop-checkout-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  color: var(--shop-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-checkout-summary-price {
  font-size: 14px;
  white-space: nowrap;
}

.shop-checkout-summary-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--shop-line);
}

.shop-checkout-discount {
  padding: 18px 0;
  border-top: 1px solid var(--shop-line);
}

.shop-checkout-discount-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-checkout-discount-form label,
.shop-checkout-discount-applied span {
  color: var(--shop-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-checkout-discount-form > div,
.shop-checkout-discount-applied {
  display: flex;
  gap: 8px;
}

.shop-checkout-discount-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--shop-line);
  border-radius: 0;
  padding: 11px 12px;
  background: #fff;
  color: var(--shop-text);
  font: inherit;
  text-transform: uppercase;
}

.shop-checkout-discount-form button,
.shop-checkout-discount-applied button {
  border: 1px solid var(--shop-text);
  border-radius: 0;
  padding: 0 14px;
  background: var(--shop-text);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-checkout-discount-applied {
  align-items: center;
  justify-content: space-between;
}

.shop-checkout-discount-applied > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.shop-checkout-discount-applied strong {
  overflow-wrap: anywhere;
}

.shop-checkout-summary-discount-row {
  color: #207a4c;
}

.shop-checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--shop-text);
  font-size: 13px;
}

.shop-checkout-summary-total {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
}

.shop-checkout-summary-note {
  margin: 0;
  color: var(--shop-muted);
  font-size: 14px;
  line-height: 1.8;
}

.shop-home-editorial-media {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 14, 9, 0.72) 0%, rgba(17, 14, 9, 0.28) 44%, rgba(17, 14, 9, 0.52) 100%),
    linear-gradient(180deg, #d4ad72 0%, #8e5d35 48%, #4a2d1f 100%);
}

.shop-home-editorial-media::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 233, 199, 0.68), transparent 18%),
    radial-gradient(circle at 36% 58%, rgba(68, 37, 18, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.24));
  content: "";
}

.shop-home-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.shop-home-editorial-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 700px;
  max-width: 720px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 34px;
  color: #fff;
}

.shop-home-editorial-content h2 {
  margin: 0;
  font-size: clamp(58px, 8vw, 110px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.shop-home-editorial-content p {
  max-width: 580px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-home-editorial-content .shop-button {
  align-self: flex-start;
  margin-top: 22px;
  background: #fff;
  color: #171717;
}

.shop-home-collection-block {
  padding-top: 36px;
}

.shop-section {
  padding: 24px 0 68px;
}

.shop-section-tight {
  padding-top: 40px;
}

.shop-legal-shell {
  padding: 56px 36px 92px;
}

.shop-legal-inner {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--shop-line);
  background: #fff;
}

.shop-legal-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--shop-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-legal-inner h1 {
  margin: 0 0 22px;
  color: var(--shop-text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.shop-legal-content {
  color: var(--shop-text);
  font-size: 15px;
  line-height: 1.8;
}

.shop-legal-content h2 {
  margin: 28px 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-legal-content p,
.shop-legal-content ul {
  margin: 0 0 16px;
}

.shop-legal-content ul {
  padding-left: 20px;
}

.shop-legal-content a {
  color: var(--shop-text);
  text-underline-offset: 3px;
}

.shop-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 36px 24px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 0 36px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--shop-line);
}

.shop-card-visual {
  height: 260px;
  background: linear-gradient(180deg, #93857a 0%, #6b6158 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card-placeholder {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.shop-card-type {
  margin-bottom: 10px;
  color: var(--shop-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.shop-card p {
  margin: 0;
  color: var(--shop-muted);
  font-size: 14px;
  line-height: 1.7;
}

.shop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 22px;
}

.shop-price {
  color: var(--shop-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-stock {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-stock-ok {
  background: #eef7ee;
  color: #325c32;
}

.shop-stock-empty {
  background: #fceeed;
  color: #9b2d25;
}

.shop-empty {
  margin: 0 36px;
  padding: 30px 24px;
  border: 1px dashed var(--shop-line-strong);
  color: var(--shop-muted);
  text-align: center;
}

.shop-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 34px 36px 0;
  padding-top: 22px;
  border-top: 1px solid var(--shop-line);
}

.shop-pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--shop-line);
  color: var(--shop-text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.shop-pagination-link:hover {
  border-color: var(--shop-text);
  color: var(--shop-text);
}

.shop-pagination-link.is-active {
  background: var(--shop-text);
  border-color: var(--shop-text);
  color: #fff;
}

.shop-pagination-link.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.shop-pagination-link-nav {
  min-width: 106px;
}

.shop-collection-section {
  padding-top: 0;
}

.shop-collection-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin: 0 36px 24px;
  padding: 28px 32px;
  border: 1px solid var(--shop-line);
  background:
    linear-gradient(135deg, rgba(246, 246, 244, 0.98), rgba(235, 235, 231, 0.98)),
    #f8f8f6;
}

.shop-collection-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.shop-collection-copy p {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--shop-muted);
  font-size: 15px;
  line-height: 1.75;
}

.shop-collection-banner-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  min-width: 220px;
}

.shop-collection-banner-meta span,
.shop-collection-banner-meta strong {
  display: block;
}

.shop-collection-banner-meta span {
  color: var(--shop-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-collection-banner-meta strong {
  color: var(--shop-text);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: right;
  word-break: break-word;
}

.shop-collection-actions {
  margin-top: 22px;
}

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

.shop-collection-hero-media {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(28, 28, 28, 0.62), rgba(14, 14, 14, 0.5)),
    linear-gradient(180deg, #5e6763 0%, #2a2a2a 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.shop-collection-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.24) 0%, rgba(10, 10, 10, 0.44) 100%);
}

.shop-collection-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  color: #fff;
}

.shop-collection-hero-content h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.shop-collection-hero-content p {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 58px;
  border-top: 1px solid var(--shop-line);
  border-bottom: 1px solid var(--shop-line);
}

.shop-collection-toolbar-left,
.shop-collection-toolbar-right {
  display: flex;
  align-items: center;
}

.shop-collection-toolbar-right {
  min-width: 150px;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-left: 1px solid var(--shop-line);
  color: var(--shop-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-toolbar-icon {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 4px;
  min-width: 56px;
  min-height: 58px;
  padding: 0;
  place-content: center;
  border: 0;
  border-right: 1px solid var(--shop-line);
  background: transparent;
}

.shop-toolbar-icon span {
  width: 6px;
  height: 6px;
  background: #c9c9c4;
}

.shop-toolbar-icon-active span {
  background: #3c3c3a;
}

.shop-toolbar-caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.shop-collection-content {
  padding: 44px 0 80px;
}

.shop-collection-layout {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: 0 36px;
}

.shop-collection-sidebar {
  position: sticky;
  top: 118px;
}


.shop-collection-filter-toggle {
  display: none;
}

.shop-collection-filter-toggle-icon {
  color: var(--shop-muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.shop-collection-filter-toggle-icon::before {
  content: "+";
}

.shop-collection-sidebar.is-open .shop-collection-filter-toggle-icon::before {
  content: "-";
}
.shop-filter-stack {
  display: flex;
  flex-direction: column;
}

.shop-filter-group {
  border-bottom: 1px solid var(--shop-line);
  padding: 0 0 12px;
}

.shop-filter-group + .shop-filter-group {
  margin-top: 10px;
}

.shop-filter-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  list-style: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.shop-filter-plus {
  color: var(--shop-muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.shop-filter-plus::before {
  content: "+";
}

.shop-filter-group[open] .shop-filter-plus {
  transform: none;
}

.shop-filter-group[open] .shop-filter-plus::before {
  content: "-";
}

.shop-filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 8px;
}

.shop-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--shop-muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-filter-option input {
  margin: 0;
  accent-color: var(--shop-text);
}

.shop-filter-actions-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
}

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

.shop-collection-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.shop-collection-results-head h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.shop-active-filter-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-active-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: #f3f1ec;
  color: var(--shop-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-collection-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.shop-collection-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
}

.shop-collection-product-visual {
  position: relative;
  aspect-ratio: 0.88;
  background: linear-gradient(180deg, #f7f7f5 0%, #ecece8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-collection-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 8px 0;
}

.shop-collection-product-body h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.shop-collection-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.shop-collection-product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  background: #f5f5f2;
  color: var(--shop-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-empty-tight {
  margin: 0;
}

@media (max-width: 1399px) {
  .shop-primary-nav,
  .shop-utility-nav {
    gap: 20px;
  }

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

  .shop-product-detail-shell {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 34px;
  }

  .shop-product-main-visual {
    min-height: 640px;
  }

  .shop-product-main-image,
  .shop-product-main-placeholder {
    max-height: 580px;
    height: 580px;
  }
}

@media (max-width: 1199px) {
  .shop-header-desktop {
    display: none;
  }

  .shop-header-mobile {
    display: flex;
  }

  .shop-header-search-panel {
    min-height: 78px;
  }

  .shop-header-search-form {
    gap: 14px;
  }

  .shop-header-search-input {
    font-size: 18px;
  }

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

  .shop-collection-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .shop-collection-sidebar {
    position: static;
  }

  .shop-home-hero-media,
  .shop-home-hero-content {
    min-height: 760px;
  }

  .shop-home-hero-content {
    padding: 52px 34px 56px;
  }

  .shop-home-section {
      padding-left: 24px;
      padding-right: 24px;
    }

  .shop-home-editorial {
      padding: 0;
    }

  .shop-product-detail-page {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .shop-product-detail-gallery {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .shop-product-info {
    position: static;
    max-width: 720px;
  }

  .shop-product-main-visual {
    min-height: 560px;
  }

  .shop-product-main-image,
  .shop-product-main-placeholder {
    max-height: 500px;
    height: 500px;
  }

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

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

  .shop-footer-column-connect {
    grid-column: span 2;
  }

  .shop-cart-sidebar {
    width: min(400px, 100vw);
  }

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

  .shop-cart-page-summary,
  .shop-checkout-summary {
    position: static;
  }

  .shop-checkout-summary {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--shop-line);
  }

  .shop-checkout-address-card-head {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-checkout-address-card-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .shop-hero-panel,
  .shop-section-head,
  .shop-collection-banner,
  .shop-grid,
  .shop-empty,
  .shop-pagination,
  .shop-legal-shell {
    margin-left: 18px;
    margin-right: 18px;
  }

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

  .shop-hero-panel {
    padding: 28px 22px;
  }

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

  .shop-pagination-link-nav {
    width: 100%;
  }

  .shop-legal-shell {
    padding: 28px 0 56px;
  }

  .shop-legal-inner {
    padding: 24px 18px;
  }

  .shop-home-hero-media,
  .shop-home-hero-content {
    min-height: 560px;
  }

  .shop-home-hero-content {
    padding: 34px 18px 38px;
  }

  .shop-home-hero-control {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }

  
.shop-home-hero-control span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  line-height: 1;
  transform: translateY(-1px);
}
.shop-home-hero-control[data-shop-home-hero-prev] {
    left: 12px;
  }

  .shop-home-hero-control[data-shop-home-hero-next] {
    right: 12px;
  }
  .shop-home-hero-meta {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-home-section {
      padding: 36px 18px 12px;
    }

  .shop-home-editorial {
      padding: 0;
    }

  .shop-account-shell {
    padding: 28px 18px 56px;
  }

  .shop-account-page-head {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-account-nav {
    justify-content: flex-start;
  }

  .shop-account-auth-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-account-order-card-grid,
  .shop-account-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-account-order-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .shop-account-order-item-visual {
    width: 72px;
    height: 88px;
  }

  .shop-account-order-item-total {
    grid-column: 2;
  }

  .shop-header-search-panel {
    padding: 0 18px;
  }

  .shop-header-search-form {
    gap: 12px;
  }

  .shop-header-search-icon svg {
    width: 22px;
    height: 22px;
  }

  .shop-header-search-input {
    font-size: 17px;
  }

  .shop-header-search-clear {
    font-size: 30px;
  }

  .shop-cart-sidebar {
    width: 100vw;
  }

  .shop-cart-sidebar-head {
    padding: 0 18px;
  }

  .shop-cart-items {
    padding-left: 18px;
    padding-right: 14px;
  }

  .shop-cart-item {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
  }

  .shop-cart-item-actions {
    grid-column: 2;
    padding-top: 0;
  }

  .shop-cart-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .shop-cart-page-shell {
    padding: 24px 18px 72px;
  }

  .shop-cart-page-layout {
    gap: 24px;
  }

  .shop-cart-page-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

  .shop-cart-page-controls {
    grid-column: 2;
    align-items: flex-start;
  }

  .shop-checkout-main,
  .shop-checkout-summary {
    padding: 24px 18px 32px;
  }

  .shop-checkout-main {
    justify-content: stretch;
  }

  .shop-checkout-summary {
    justify-content: stretch;
  }

  .shop-checkout-main-inner,
  .shop-checkout-summary-inner {
    width: 100%;
  }

  .shop-checkout-summary-inner {
    position: static;
  }

  .shop-checkout-section-head h1,
  .shop-checkout-section-head h2 {
    font-size: 24px;
  }

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

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

  .shop-checkout-address-card-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .shop-checkout-primary {
    width: 100%;
    min-width: 0;
  }

  .shop-payment-form .shop-checkout-primary {
    order: -1;
  }

  .shop-checkout-summary-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .shop-checkout-summary-price {
    grid-column: 2;
  }

  .shop-product-detail-page {
    padding: 24px 18px 72px;
  }

  .shop-product-detail-shell {
    gap: 28px;
  }

  .shop-product-detail-html-section {
    margin-top: 40px;
    padding-top: 26px;
  }

  .shop-product-attributes-content {
    max-width: 100%;
  }

  .shop-product-attribute-row {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
  }

  .shop-product-detail-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shop-product-thumbs {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    padding-top: 0;
    padding-bottom: 4px;
  }

  .shop-product-thumb {
    flex: 0 0 68px;
    width: 68px;
  }

  .shop-product-main-visual {
    min-height: 420px;
    padding: 22px;
  }

  .shop-product-main-image,
  .shop-product-main-placeholder {
    max-height: 376px;
    height: 376px;
  }

  .shop-product-title {
    font-size: 20px;
  }

  .shop-product-price {
    font-size: 20px;
  }

  .shop-product-option-list {
    gap: 8px;
  }

  .shop-product-option-button {
    min-width: 68px;
    padding: 0 14px;
  }

  .shop-products-grid,
  .shop-home-products-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .shop-home-editorial-media,
  .shop-home-editorial-content {
    min-height: 460px;
  }

  .shop-home-editorial-content {
    padding: 34px 20px;
  }

  .shop-collection-hero-media,
  .shop-collection-hero-content {
    min-height: 340px;
  }

  .shop-collection-toolbar-right {
    min-width: 116px;
    padding: 0 16px;
  }

  .shop-collection-layout {
    padding: 0 18px;
  }

  .shop-collection-filter-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid var(--shop-line);
    background: #fff;
    color: var(--shop-text);
    cursor: pointer;
    padding: 15px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .shop-collection-sidebar .shop-filter-stack {
    display: none;
    margin-top: 14px;
    border: 1px solid var(--shop-line);
    padding: 0 16px 16px;
  }

  .shop-collection-sidebar.is-open .shop-filter-stack {
    display: flex;
  }

  .shop-collection-products-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .shop-card-visual {
    height: 228px;
  }

  .shop-collection-banner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .shop-collection-banner-meta {
    align-items: flex-start;
    min-width: 0;
  }

  .shop-collection-banner-meta strong {
    text-align: left;
  }

  .shop-footer {
    padding: 42px 22px 22px;
  }

  .shop-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shop-footer-column,
  .shop-footer-column-connect {
    align-items: center;
  }

  .shop-footer-column-connect {
    grid-column: auto;
  }

  .shop-footer-logos {
    align-items: center;
  }

  .shop-footer-bottom {
    margin-top: 34px;
    text-align: center;
  }

  .shop-page-title {
    font-size: 32px;
  }

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

/* TASK-0045 storefront image safety */
.shop-home-product-visual {
  aspect-ratio: 4 / 5;
  max-height: 620px;
}

.shop-card-image-primary,
.shop-card-image-secondary,
.shop-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shop-product-thumb {
  aspect-ratio: 4 / 5;
  max-height: 150px;
  overflow: hidden;
}

.shop-product-thumb img,
.shop-account-order-item-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shop-product-main-visual {
  aspect-ratio: 4 / 5;
  min-height: 0;
  max-height: min(78vh, 820px);
  overflow: hidden;
}

.shop-product-main-image,
.shop-product-main-placeholder {
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.shop-product-main-image {
  display: block;
  object-fit: contain;
  object-position: center;
}

.shop-cart-item-thumb,
.shop-cart-page-thumb,
.shop-checkout-summary-thumb,
.shop-account-order-item-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.shop-cart-item-thumb img,
.shop-cart-page-thumb img,
.shop-checkout-summary-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.shop-home-hero-media {
  width: 100%;
  min-height: calc(100vh - 89px);
  max-height: none;
}

.shop-home-hero-content {
  min-height: calc(100vh - 89px);
}

.shop-home-hero-slide,
.shop-home-editorial-media,
.shop-collection-hero-media {
  background-position: center center;
  background-size: cover;
}

.shop-home-editorial-media,
.shop-home-editorial-content,
.shop-collection-hero-media,
.shop-collection-hero-content {
  min-height: clamp(420px, 50vw, 720px);
}

.shop-home-editorial-media,
.shop-collection-hero-media {
  width: 100%;
  max-height: none;
}

@media (max-width: 1199px) {
  .shop-home-hero-media,
  .shop-home-hero-content {
    min-height: 760px;
    max-height: none;
  }

  .shop-product-main-visual {
    max-height: 680px;
  }
}

@media (max-width: 767px) {
  .shop-home-product-visual {
    max-height: none;
  }

  .shop-product-main-visual {
    aspect-ratio: 4 / 5;
    max-height: 520px;
  }

  .shop-product-main-image,
  .shop-product-main-placeholder {
    height: 100%;
    max-height: 100%;
  }

  .shop-home-hero-media,
  .shop-home-hero-content {
    min-height: 560px;
  }

  .shop-home-editorial-media,
  .shop-home-editorial-content,
  .shop-collection-hero-media,
  .shop-collection-hero-content {
    min-height: clamp(320px, 92vw, 460px);
  }
}