/** Shopify CDN: Minification failed

Line 1567:14 Unexpected "{"
Line 1567:23 Expected ":"
Line 1567:30 Unexpected "{"
Line 1576:14 Unexpected "{"
Line 1576:23 Expected ":"
Line 1579:14 Unexpected "{"
Line 1579:23 Expected ":"
Line 1580:14 Unexpected "{"
Line 1580:23 Expected ":"

**/
/* 1. FONT REGISTRATION */

@font-face {
  font-family: "Messina Sans";
  src: url("MessinaSansCondensedWeb-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Messina Sans";
  src: url("MessinaSansCondensedWeb-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* 2. BASE RESET & TYPOGRAPHY */

:root {
  /* Typography */
  --font-body: "Messina Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: "Messina Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;

  /* Simplified Font Scale */
  --text-h1: 16px;
  --text-h2: 14px;
  --text-body: 12px;
  --text-note: 10px;
  --text-tag: 8px;

  --line-height-body: 1.5;
  --line-height-tight: 1.2;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;

  /* Layout */
  --gutter-mobile: 16px;
  --gutter-tablet: 24px;
  --gutter-desktop: 24px; 
  --page-max-width: 100%; 

  /* Controls */
  --control-height: 48px; 
  --control-padding-x: 12px;
  --button-padding-x: 20px;
  --button-stack-gap: 12px;
  --control-border-width: 1px;
  --control-radius: 0px;

  /* Colors */
  --bg-color: #ffffff;
  --text-color: #000000;

  /* Motion */
  --duration-short: 100ms;
  --duration-default: 200ms;
  --duration-long: 500ms;

  /* Header / drawer helpers */
  --us-slide-panel-w: 420px;
  --us-slide-header-h: 0px;
  --us-offcanvas-w: 420px;
}

html {
  height: 100%;
  box-sizing: border-box;
}

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

/* Force Global Default Typography */
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: var(--text-body); /* Enforces 12px */
  font-weight: var(--font-weight-regular); /* Enforces 400 */
  font-style: normal;
  line-height: var(--line-height-body);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Forces the main content area to grow and fill empty space */
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
}

/* Force Form Elements to Inherit the 12px Regular Default */
input, 
textarea, 
select, 
button,
.field__input,
.select__select {
  font-family: inherit;
  font-size: inherit; 
  font-weight: inherit; 
  letter-spacing: inherit;
}

/* FIX: PREVENT BLUE LINKS GLOBALLY */
a, a:link, a:visited {
  color: inherit;
  text-decoration: none;
}

.no-js:not(html) { display: none !important; }
html.no-js .no-js:not(html) { display: block !important; }
.no-js-inline { display: none !important; }
html.no-js .no-js-inline { display: inline-block !important; }
html.no-js .no-js-hidden { display: none !important; }

.isolate {
  position: relative;
  z-index: 0;
}

.global-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--color-foreground), 0.5);
  border-radius: var(--media-radius);
}

.global-image-placeholder .image-placeholder { width: 80px; height: 80px; }
.global-image-placeholder .image-placeholder-lifestyle { width: auto; height: 85%; position: relative; z-index: 1; }
.global-image-placeholder .horizon { display: block !important; background: rgba(0, 0, 0, 0); width: 100%; height: 30%; position: absolute; left: 0; bottom: 0; z-index: 0; }

.drawer-close-button {
  appearance: none;
  border: 0;
  outline: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: none;
  cursor: pointer;
}

.drawer-close-button .icon { width: 1.3rem; height: 1.3rem; }

/* PAGE WIDTH (Consolidated) */

:is(.page-width, .page-width-narrow, .page-width-medium, .page-width-grid, .page-width-extra-narrow, .page-width-dt, .page-width-desktop, .page-width--narrow) {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
  box-sizing: border-box;
}

@media screen and (min-width: 750px) {
  :is(.page-width, .page-width-narrow, .page-width-medium, .page-width-grid, .page-width-extra-narrow, .page-width-dt, .page-width-desktop, .page-width--narrow) {
    padding-left: var(--gutter-tablet);
    padding-right: var(--gutter-tablet);
  }
}

@media screen and (min-width: 1025px) {
  :is(.page-width, .page-width-narrow, .page-width-medium, .page-width-grid, .page-width-extra-narrow, .page-width-dt, .page-width-desktop, .page-width--narrow) {
    padding-left: var(--gutter-desktop);
    padding-right: var(--gutter-desktop);
  }
}

:is(.site-header, .header-wrapper, .section-header, .shopify-section-group-header-group) .page-width { padding-left: inherit; padding-right: inherit; }

.section-border-width-normal {
  margin-left: var(--gutter-mobile);
  margin-right: var(--gutter-mobile);
}

@media screen and (min-width: 750px) { .section-border-width-normal { margin-left: var(--gutter-tablet); margin-right: var(--gutter-tablet); } }
@media screen and (min-width: 1025px) { .section-border-width-normal { margin-left: var(--gutter-desktop); margin-right: var(--gutter-desktop); } }

.element-margin-top { margin-top: var(--space-8); }
@media screen and (min-width: 750px) { .element-margin { margin-top: var(--space-9); } }

.grid-auto-flow { display: grid; grid-auto-flow: column; }
.page-margin, .shopify-challenge__container { margin: var(--space-9) auto; }
.rte-width { max-width: 82rem; margin: 0 auto var(--space-5); }
.list-unstyled { margin: 0; padding: 0; list-style: none; }

.hidden { display: none !important; }
.visually-hidden { position: absolute !important; overflow: hidden; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip: rect(0 0 0 0); word-wrap: normal !important; }
.visually-hidden--inline { margin: 0; height: 1em; }
.elem-hidden { display: none; }
.overflow-hidden { overflow: hidden; }
.bg-pane { display: block !important; }
.body-lock-scroll { overflow: hidden; }

.skip-to-content-link:focus { z-index: 99999999; position: inherit; overflow: auto; width: auto; height: auto; clip: auto; }
.full-width-link { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 2; }
::selection { background-color: rgba(var(--color-foreground), 0.2); }

/* TYPOGRAPHY */

body {
  font-size: var(--text-body);
}

.text-body, .text-std { 
  font-size: var(--text-body); 
  line-height: var(--line-height-body); 
  font-family: var(--font-body); 
  font-style: normal; 
  font-weight: var(--font-weight-regular); 
  letter-spacing: 0; 
}

:is(.text-note, .caption, .caption-note, .section-label) { 
  font-size: var(--text-note); 
  line-height: var(--line-height-body); 
}

:is(.text-tag, .text-micro) { 
  font-size: var(--text-tag); 
  line-height: var(--line-height-body); 
}

.text-weight-light { font-weight: var(--font-weight-regular) !important; }
.text-weight-std { font-weight: var(--font-weight-regular); }
:is(.text-weight-bold, .font-body-bold, b, strong) { font-weight: var(--font-weight-semibold) !important; }

.text-italic { font-style: italic; }
.text-underlined { text-decoration: underline; }
.text-fade-fifty { opacity: 0.5; }
.text-fade-sixty { opacity: 0.6; }
.text-fade-seventy { opacity: 0.7; }
.text-fade-eighty { opacity: 0.8; }
.text-fade-ninety { opacity: 0.9; }

/* HEADINGS */

:is(h1, .h1, h2, .h2) {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0;
  text-transform: none;
  color: inherit;
  line-height: var(--line-height-tight);
  word-break: break-word;
  margin: 0 0 var(--space-3) 0;
}

:is(h1, .h1) { font-size: var(--text-h1); }
:is(h2, .h2) { font-size: var(--text-h2); }

:is(.align-center h1, .align-center .h1, .align--center h1, .align--center .h1, .align--center .h0, .align--center .hxl, .align-center h2, .align--center h2, .align--center .h2, .align-center h3, .align-center .h3) { margin-left: 0; }

:is(.header-bar-inner, .header-nav-drawer, button, .button, .link--underlined, .product-form__input, div[role="button"], .shopify-challenge__button, .account-sub-navigation, .sub-footer-section button, .shopify-payment-button__more-options, .link--text, .product-title-body, .product-form__input .form__label) {
  font-family: var(--font-body) !important;
}

.dialog-title { font-family: var(--font-heading); font-weight: var(--font-weight-regular); text-transform: none; }
.text-family-heading { font-family: var(--font-heading) !important; font-style: normal !important; font-weight: var(--font-weight-regular) !important; text-transform: none; }
.text-family-accent { font-family: var(--font-body); font-style: normal; font-weight: var(--font-weight-regular); }

blockquote {
  font-style: normal;
  color: rgba(var(--color-foreground), 0.75);
  border-left: 0.2rem solid rgba(var(--color-foreground), 0.2);
  padding-left: var(--space-4);
}

@media screen and (min-width: 750px) { blockquote { padding-left: var(--space-5); } }

:is(.align-center, .text-center) { margin: 0 auto; text-align: center; }
.text-align-center { text-align: center; }
:is(.text-align-left, .align-left, .left) { text-align: left; }
:is(.text-align-right, .align-right, .right) { text-align: right; }
.center { text-align: center; }
.uppercase { text-transform: uppercase; }

/* COLOR SCHEMES */

.color-scheme-bg-body { background: var(--color-base-background); }
.color-scheme-fg-white { color: #ffffff; }
.color-scheme-bg-white { background: #ffffff; }
.color-scheme-fg-01 { color: var(--color-accent-one); }
.color-scheme-fg-02 { color: var(--color-accent-two); }
.color-scheme-fg-03 { color: var(--color-accent-three); }
.color-scheme-fg-04 { color: var(--color-accent-four); }
.colour-scheme-fg-body { color: var(--color-foreground); }
.color-scheme-bg-01 { background: var(--color-bg-one); }
.color-scheme-bg-02 { background: var(--color-bg-two); }
.color-scheme-bg-03 { background: var(--color-bg-three); }
.color-scheme-bg-04 { background: var(--color-bg-four); }

.light { opacity: 0.7; }

.color-scheme-fg-body .button-color-scheme--match-section .button--solid { background: rgba(var(--color-foreground), 1); }
.color-scheme-fg-01 .button-color-scheme--match-section .button--solid { background: var(--color-accent-one); }
.color-scheme-fg-02 .button-color-scheme--match-section .button--solid { background: var(--color-accent-two); }
.color-scheme-fg-03 .button-color-scheme--match-section .button--solid { background: var(--color-accent-three); }
.color-scheme-fg-04 .button-color-scheme--match-section .button--solid { background: var(--color-accent-four); }

.color-scheme-bg-body .button-color-scheme--match-section .button--solid { color: var(--color-base-background); }
.color-scheme-bg-01 .button-color-scheme--match-section .button--solid { color: var(--color-bg-one); }
.color-scheme-bg-02 .button-color-scheme--match-section .button--solid { color: var(--color-bg-two); }
.color-scheme-bg-03 .button-color-scheme--match-section .button--solid { color: var(--color-bg-three); }
.color-scheme-bg-04 .button-color-scheme--match-section .button--solid { color: var(--color-bg-four); }

.button-color-scheme--match-section .button--outline { color: inherit; border-color: inherit; }
.color-foreground { color: rgb(var(--color-foreground)); }

.customer .field input, .customer select, .field__input, .form__label, .select__select {
  font-size: 1.3rem; line-height: calc(1 + 0.5 / var(--font-body-scale)); letter-spacing: 0;
}

table:not([class]) { table-layout: fixed; border-collapse: collapse; font-size: 1.4rem; border-style: hidden; box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2); }
table:not([class]) td, table:not([class]) th { padding: 1em; border: 0.1rem solid rgba(var(--color-foreground), 0.2); }

@media screen and (max-width: 749px) { .small-hide { display: none !important; } }
@media screen and (min-width: 750px) and (max-width: 989px) { .medium-hide { display: none !important; } }
@media screen and (min-width: 990px) { .large-up-hide { display: none !important; } }

:is(a, ul, dl, div, section, article, p, h1, h2, h3, h4, h5, h6):empty { display: none; }

.link, .customer a {
  cursor: pointer; display: inline-block; border: none; box-shadow: none;
  text-decoration: underline; text-underline-offset: 0.3rem; color: inherit;
  background-color: transparent; font-family: inherit;
}

.link--text { color: rgb(var(--color-foreground)); }
.link--text:hover { color: rgba(var(--color-foreground), 0.75); }
.link-with-icon { display: inline-flex; font-size: 1.4rem; font-weight: 600; text-decoration: none; margin-bottom: 4.5rem; white-space: nowrap; }
.link-with-icon .icon { width: 1.5rem; margin-left: 1rem; }
a:not([href]) { cursor: not-allowed; }

.circle-divider::after { content: "\2022"; margin: 0 1.3rem 0 1.5rem; }
.circle-divider:last-of-type::after { display: none; }

.full-unstyled-link { text-decoration: none; color: currentColor; display: block; }
.placeholder { background-color: rgba(var(--color-foreground), 0.04); color: rgba(var(--color-foreground), 0.55); fill: rgba(var(--color-foreground), 0.55); }

details > * { box-sizing: border-box; }
.break { word-break: break-word; }
.visibility-hidden { visibility: hidden; }

@media (prefers-reduced-motion) { .motion-reduce { transition: none !important; animation: none !important; } }

.underlined-link, .customer a { color: inherit; text-underline-offset: 0.3rem; text-decoration-thickness: 1px; }
.underlined-link:hover, .customer a:hover { color: inherit; text-decoration-thickness: 1px; }
.icon-arrow { width: 1.5rem; }

/* BASE DETAILS SUMMARY */

summary { cursor: pointer; list-style: none; position: relative; }
summary .icon-caret { position: absolute; height: 0.8rem; width: 0.8rem; right: 1.5rem; top: calc(50% - 0.4rem); }
summary::-webkit-details-marker { display: none; }

.disclosure-has-popup { position: relative; }
.disclosure-has-popup[open] > summary::before {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 2; display: block; cursor: default; content: " "; background: transparent;
}
.disclosure-has-popup > summary::before { display: none; }
.disclosure-has-popup[open] > summary + * { z-index: 200; }
@media screen and (min-width: 750px) { .disclosure-has-popup[open] > summary + *, .facets .disclosure-has-popup[open] > summary + * { z-index: 200; } }

/* BASE FOCUS */

*:focus { outline: 0; box-shadow: none; }
*:focus-visible, .focused, .no-js *:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 1) !important;
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.no-js *:focus:not(:focus-visible) { outline: 0; box-shadow: none; }
.focus-inset:focus-visible, .focused.focus-inset, .no-js .focus-inset:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5); outline-offset: -0.2rem; box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}
.no-js .focus-inset:focus:not(:focus-visible) { outline: 0; box-shadow: none; }
.focus-none { box-shadow: none !important; outline: 0 !important; }
.focus-offset:focus-visible, .focus-offset.focused, .no-js .focus-offset:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5); outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}
.no-js .focus-offset:focus:not(:focus-visible) { outline: 0; box-shadow: none; }

/* GRID */

.grid { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 40px; /* Big JJJJound-style gap */
  margin-bottom: 2rem; 
  padding: 0; 
  list-style: none; 
}
.grid:last-child { margin-bottom: 0; }
.grid__item { flex: 1 1 0; min-width: 0; max-width: 100%; }

/* Mobile gets a slightly tighter gap so images don't get too microscopic */
@media screen and (max-width: 749px) {
  .grid { gap: 16px; } 
  .grid--2-col-mobile .grid__item { width: calc(50% - 8px); max-width: calc(50% - 8px); min-width: 0; }
  .grid--1-col-mobile .grid__item { width: 100%; max-width: 100%; }
}

.grid--gapless.grid { gap: 0; }
.grid--1-col .grid__item { width: 100%; max-width: 100%; min-width: 100%; }

.grid-std { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 16px; /* Mobile gap */
  list-style-type: none; 
  margin: 0; 
  padding: 0; 
}
.grid-mobile-1-column { grid-template-columns: repeat(1, 1fr); }
.grid-std li, .grid-std .grid__item { width: 100%; max-width: none; min-width: 0; }

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

/* Forces 4 columns on desktop with the large 40px gap to shrink the images */
@media screen and (min-width: 950px) {
  .grid-std { grid-template-columns: repeat(4, 1fr); gap: 40px; }
  .grid-desktop-2-column { grid-template-columns: repeat(2, 1fr); }
  .grid-desktop-3-column { grid-template-columns: repeat(3, 1fr); }
}

/* 4:5 MEDIA AND IMAGES */

.media {
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 125%; /* 4:5 Aspect Ratio */
}

.media--background-shade { background-color: rgba(0, 0, 0, 0.06); }
.media--filter-darken { filter: brightness(0.98); }
.media--transparent { background-color: transparent; }

.media > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Contains image to 4:5 boundaries */
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media--square { padding-bottom: 100%; }
.media--portrait { padding-bottom: 125%; }
.media--landscape { padding-bottom: 66.6%; }
.media--cropped { padding-bottom: 56%; }
.media--16-9 { padding-bottom: 56.25%; }
.media--circle { padding-bottom: 100%; border-radius: 50%; }

.media.media--hover-effect > img + img { opacity: 0; }

@media screen and (min-width: 990px) {
  .media--cropped { padding-bottom: 63%; }
}

deferred-media { display: block; }

/* 1. RESET ALL RAW BUTTONS TO TRANSPARENT (Fixes Header/Icons) */
button {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  box-shadow: none;
}

/* Ensure header buttons specifically are protected from overriding */
.hdr-st-item, 
.hdr-menu-button, 
.header-bar-inner button, 
.header-nav-drawer button, 
.cart-icon--bubble,
.cart-ui-circle .hdr-cart-count {
  background: transparent !important;
  color: inherit !important;
  border: none !important;
}

/* 2. STYLE ACTUAL UI BUTTONS WITH THE SOLID BLACK DESIGN */
.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded,
.shopify-payment-button__button {
  display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box;
  min-height: var(--control-height); height: var(--control-height); padding: 0 var(--button-padding-x);
  font-family: var(--font-body); font-size: var(--text-body); font-weight: var(--font-weight-semibold);
  line-height: 1; letter-spacing: 0; text-decoration: none; text-transform: none;
  border-radius: 0; border: 1px solid transparent; background: #000; color: #fff;
  cursor: pointer; appearance: none; -webkit-appearance: none; position: relative; box-shadow: none;
  transition: opacity var(--duration-default), background-color var(--duration-default), color var(--duration-default), border-color var(--duration-default);
}

.button:hover,
.shopify-challenge__button:hover,
.customer button:hover {
  opacity: 0.85;
}

/* FIX: STRETCH PDP "ADD TO CART" & CHECKOUT BUTTONS */
.product-form__submit,
.shopify-payment-button__button,
.product-form__buttons .button,
.cart__checkout-button {
  width: 100% !important;
  max-width: 100% !important;
}

/* Inputs */

:is(input, select, textarea, .field__input, .select__select, .customer .field input, .customer select) { font-family: var(--font-body); font-size: var(--text-body); box-sizing: border-box; }
:is(input, select, .field__input, .select__select, .customer .field input, .customer select) { min-height: var(--control-height); height: var(--control-height); padding-left: var(--control-padding-x); padding-right: var(--control-padding-x); border-radius: 0; }
textarea { height: auto; min-height: 120px; padding: 12px; }
:is(input:focus, select:focus, textarea:focus) { border-color: #000; }

/* Custom Select */

.us-select { position: relative; width: 100%; }
.us-select__button { width: 100%; min-height: var(--control-height); height: var(--control-height); box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; padding: 0 var(--control-padding-x); border: 1px solid #000; border-radius: 0; background: #fff; color: #000; font-size: var(--text-body); font-family: var(--font-body); font-weight: var(--font-weight-regular); }
.us-select__label { display: block; line-height: 1; }
.us-select__icon { display: flex; align-items: center; justify-content: center; margin-left: 12px; flex: 0 0 auto; }
.us-select__menu { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border: 1px solid #000; border-top: 0; max-height: 240px; overflow: auto; z-index: 20; }
.us-select.is-open .us-select__button { border-bottom: 0; }
.us-select__option { padding: 12px var(--control-padding-x); cursor: pointer; background: #fff; }
.us-select__option:hover { background: rgba(0,0,0,0.04); }
.us-select__option.is-disabled { opacity: 0.4; cursor: default; }

/* FORMS */

:is(.field__input, .select__select, .customer .field input, .customer select) { -webkit-appearance: none; appearance: none; background-color: rgb(var(--color-background)); color: rgb(var(--color-foreground)); font-size: 1.6rem; width: 100%; box-sizing: border-box; border-radius: var(--inputs-radius); height: 32px; min-height: calc(var(--inputs-border-width) * 2); min-width: calc(7rem + (var(--inputs-border-width) * 2)); position: relative; border: 1px solid black; font-family: var(--font-main); font-weight: 400; }
.field__input:focus { border: var(--inputs-border-width) solid rgba(var(--color-foreground), 1); }
.select__select { font-family: var(--font-main); font-style: normal; font-weight: 400; font-size: 1.2rem; color: rgba(var(--color-foreground), 1); }

:is(.field__input:focus-visible, .select__select:focus-visible, .customer .field input:focus-visible, .customer select:focus-visible, .localization-form__select:focus-visible.localization-form__select:after) { box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground)); outline: 0; border-radius: var(--inputs-radius); }
:is(.field__input:focus, .select__select:focus, .customer .field input:focus, .customer select:focus, .localization-form__select:focus.localization-form__select:after) { box-shadow: none; outline: 0; border-radius: var(--inputs-radius); }
.localization-form__select:focus { outline: 0; box-shadow: none; }

.text-area, .select { display: flex; position: relative; width: 100%; }
.select .icon-caret, .customer select + svg { height: 0.8rem; width: 0.8rem; pointer-events: none; position: absolute; top: calc(50% - 0.2rem); right: calc(var(--inputs-border-width) + 1.5rem); }
.select__select, .customer select { cursor: pointer; line-height: calc(1 + 0.6 / var(--font-body-scale)); padding: 0 calc(var(--inputs-border-width) + 3rem) 0 1.5rem; margin: var(--inputs-border-width); min-height: calc(var(--inputs-border-width) * 2); }

:is(input:focus, .field__input:focus) { outline: none !important; }
.field { position: relative; width: 100%; }
.customer .field { text-align: left; }
.field--with-error { flex-wrap: wrap; }
.field__input, .customer .field input { flex-grow: 1; text-align: left; padding: 1.5rem 1rem; }

.field__label, .customer .field label { position: relative; display: block; font-size: 12px; margin-bottom: 0.8rem; pointer-events: none; color: rgba(var(--color-foreground), 1); letter-spacing: 0; line-height: 1.5; font-family: var(--font-main); }
@media only screen and (min-width: 1025px) { .field__label, .customer .field label { font-size: 14px; } }

.field__input::-webkit-search-cancel-button, .customer .field input::-webkit-search-cancel-button { display: none; }
::placeholder, ::-ms-input-placeholder { color: inherit !important; opacity: 0.6; }
:is(input:focus::placeholder, textarea:focus::placeholder) { opacity: 0; }

.field__button { align-items: center; background-color: transparent; border: 0; color: currentColor; cursor: pointer; display: flex; height: 4.4rem; justify-content: center; overflow: hidden; padding: 0; position: absolute; right: 0; top: 0; width: 4.4rem; }
.field__button > svg { height: 2rem; width: 2rem; }
:is(.field__input:-webkit-autofill ~ .field__button, .field__input:-webkit-autofill ~ .field__label, .customer .field input:-webkit-autofill ~ label) { color: rgb(0, 0, 0); }

.text-area { min-height: 10rem; resize: none; padding: 1rem; }
input[type="checkbox"] { display: inline-block; width: auto; margin-right: 0.5rem; }

:is(input[type="text"], input[type="textarea"], input[type="tel"], input[type="email"], input[type="password"], .text-area) { font-family: var(--font-main) !important; font-style: normal; font-weight: 400; }
.form__label { display: block; margin-bottom: 0.6rem; font-family: var(--font-main); }
.form__message { align-items: center; display: flex; font-size: 1.4rem; line-height: 1; margin-top: 1rem; }
.form__message--large { font-size: 1.6rem; }
.customer .field .form__message { font-size: 1.4rem; text-align: left; }
:is(.form__message .icon, .customer .form__message svg) { flex-shrink: 0; height: 1.3rem; margin-right: 0.5rem; width: 1.3rem; }
:is(.form__message--large .icon, .customer .form__message svg) { height: 1.5rem; width: 1.5rem; margin-right: 1rem; }
.customer .field .form__message svg { align-self: start; }

.form-status { margin: 0; font-size: 1.6rem; }
.form-status-list { padding: 0; margin: 2rem 0 4rem; }
.form-status-list li { list-style-position: inside; }
.form-status-list .link::first-letter { text-transform: capitalize; }

/* component-quantity */

.quantity { color: rgba(var(--color-foreground)); position: relative; width: calc(14rem / var(--font-body-scale) + var(--inputs-border-width) * 2); display: flex; border-radius: var(--variant-pills-radius); min-height: calc((var(--inputs-border-width) * 2) + 4.5rem); border: var(--variant-pills-border-width) solid rgba(var(--color-foreground), var(--inputs-border-opacity)); }
.quantity__input { color: currentColor; font-size: 1.2rem; opacity: 0.85; text-align: center; background-color: transparent; border: 0; padding: 0 0.5rem; width: 100%; flex-grow: 1; -webkit-appearance: none; appearance: none; font-family: var(--font-main); }
.quantity__button { width: calc(4.5rem / var(--font-body-scale)); flex-shrink: 0; font-size: 1.8rem; border: 0; background-color: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgb(var(--color-foreground)); padding: 0; font-family: var(--font-main); font-weight: 600; }

.quantity__button:first-child { margin-left: calc(var(--inputs-border-width)); }
.quantity__button:last-child { margin-right: calc(var(--inputs-border-width)); }
.quantity__button svg { width: 1rem; pointer-events: none; }

:is(.quantity__button:focus-visible, .quantity__input:focus-visible, .quantity__button:focus, .quantity__input:focus) { background-color: rgb(var(--color-base-background)); z-index: 2; }
:is(.quantity__button:not(:focus-visible):not(.focused), .quantity__input:not(:focus-visible):not(.focused)) { box-shadow: inherit; background-color: inherit; }
:is(.quantity__input:-webkit-autofill, .quantity__input:-webkit-autofill:hover, .quantity__input:-webkit-autofill:active) { box-shadow: 0 0 0 10rem rgb(var(--color-base-background)) inset !important; -webkit-box-shadow: 0 0 0 10rem rgb(var(--color-base-background)) inset !important; }
:is(.quantity__input::-webkit-outer-spin-button, .quantity__input::-webkit-inner-spin-button) { -webkit-appearance: none; margin: 0; }
.quantity__input[type="number"] { -moz-appearance: textfield; }

.quantity__rules { margin-top: 1.2rem; position: relative; font-size: 1.2rem; }
.quantity__rules .caption { display: inline-block; margin-top: 0; margin-bottom: 0; }
.quantity__rules .divider + .divider::before { content: "\2022"; margin: 0 0.5rem; }
.quantity__rules-cart { position: relative; }

:is(product-info .loading-overlay:not(.hidden) ~ *, .quantity__rules-cart .loading-overlay:not(.hidden) ~ *) { visibility: hidden; }

/* component-modal */

.modal__toggle { list-style-type: none; }
.no-js details[open] .modal__toggle { position: absolute; z-index: 5; }
.modal__toggle-close { display: none; }
.no-js details[open] svg.modal__toggle-close { display: flex; z-index: 1; height: 1.7rem; width: 1.7rem; }
.modal__toggle-open { display: flex; }
.no-js details[open] .modal__toggle-open { display: none; }
.no-js .modal__close-button.link { display: none; }

.modal__close-button.link { display: flex; justify-content: center; align-items: center; padding: 0rem; height: 4.4rem; width: 4.4rem; background-color: transparent; }
.modal__close-button .icon { width: 1.7rem; height: 1.7rem; }
.modal__content { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--popup-background-color); z-index: 4; display: flex; justify-content: center; align-items: center; }
.media-modal { cursor: zoom-out; }
.media-modal .deferred-media { cursor: initial; }

/* component-cart-count-bubble */

.cart-count-bubble:empty { display: none; }

.section-header.shopify-section-group-header-group { z-index: 4; }
.shopify-section-header-sticky { position: sticky; top: 0; }
.shopify-section-header-hidden { top: 0; }
.shopify-section-header-hidden.menu-open { top: 0; }
.section-header.animate { transition: top 0.15s ease-out; }
.shopify-section-group-header-group { z-index: 4; }
.section-header ~ .shopify-section-group-header-group { z-index: initial; }

.no-js .predictive-search { display: none; }

details[open] .modal-overlay { display: block; }
details[open] .modal-overlay::after { position: absolute; content: ""; background-color: rgba(var(--color-foreground), 0.5); top: 100%; left: 0; right: 0; height: 100vh; }
.no-js details[open] > .header__icon--search { top: 1rem; right: 0.5rem; }

.overflow-hidden-mobile, .overflow-hidden-tablet { overflow: hidden; }
@media screen and (min-width: 750px) { .overflow-hidden-mobile { overflow: auto; } }
@media screen and (min-width: 990px) { .overflow-hidden-tablet { overflow: auto; } }

.badge { border: 0; border-radius: var(--badge-corner-radius); display: inline-block; font-size: 6px; letter-spacing: 0; line-height: 1; padding: 0.5rem 1.3rem 0.6rem 1.3rem; text-align: center; background-color: var(--badge-bg-color); color: var(--badge-txt-color); word-break: break-word; }
.ratio { display: flex; position: relative; align-items: stretch; }
.ratio::before { content: ""; width: 0; height: 0; }

.global-media-settings { border-radius: var(--media-radius); }
.global-product-card-media-settings { border-radius: var(--media-radius); background: var(--product-card-media-bg-col); }
:is(.global-media-settings img, .global-media-settings iframe, .global-media-settings model-viewer, .global-media-settings video) { border-radius: var(--media-radius); }

@supports not (inset: 10px) {
  .grid { margin-left: 0; }
  .grid__item { padding-left: 0; padding-bottom: 0; }
  .grid--gapless .grid__item { padding-left: 0; padding-bottom: 0; }
  .product-grid .grid__item { padding-bottom: 0; }
}

/* SECTIONS */

.section-container { position: relative; }
.section-header-std-padding { margin-bottom: 3rem; }
.section-heading--inline { margin-bottom: 4rem; }

@media only screen and (min-width: 1025px) { .section-header-std-padding { margin-bottom: 5rem; } }

.section-border { margin: 0; padding: 0; }
.section-border-color-dark { background-color: rgba(var(--color-foreground), 0.2); }
.section-border-color-light { background-color: rgba(255, 255, 255, 0.2); }

.section-button--position-top { margin-top: 2rem; margin-bottom: 2rem; }
.section-button--position-inline { margin-top: 2rem; }
.section-button--position-footer { margin-top: 3rem; }

.section-footer { margin-top: 3rem; box-sizing: border-box; }
.section-viewall-button { margin-top: 3rem; }

@media only screen and (min-width: 750px) { .section-viewall-button { margin-top: 4rem; } .section-footer { margin-top: 4rem; } }
@media only screen and (min-width: 1025px) { .section-heading--inline { margin-bottom: 6rem; } .section-button--position-inline { margin-top: 4rem; } .section-button--position-footer { margin-top: 4rem; } .section-footer { margin-top: 6rem; } }

.section-footer .button--outline { background: none !important; }

.button-color-scheme--inverse .button--filled { background-color: #000000; color: #ffffff; border: none; }
.button-color-scheme--inverse .button--outline { background: #ffffff; color: #000000; border: 1px solid #000000; }

.buttons-layout-stacked { display: flex; flex-direction: column; width: fit-content; row-gap: 12px; }
.align-center .buttons-layout-stacked { margin: 0 auto; }
.buttons-layout-stacked .button { margin: 0 auto; width: 100%; }

/* POLICY PAGES */

.shopify-policy__title { margin-bottom: 4rem; }
.shopify-policy__container { padding-top: 80px; padding-bottom: 60px; max-width: 750px; }
.shopify-policy__body { margin-bottom: 6rem; }

@media only screen and (min-width: 750px) { .shopify-policy__body { margin-bottom: 8rem; } }

.swatch-dot { width: 28px; height: 28px; border-radius: 50%; position: relative; overflow: hidden; border: 1px solid #ccc; box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.15); background-clip: padding-box; transition: box-shadow 0.3s ease; }
.swatch-glazed::before { content: ""; position: absolute; top: 2px; left: 2px; right: 2px; height: 40%; background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0)); border-top-left-radius: 50%; border-top-right-radius: 50%; pointer-events: none; z-index: 1; }
.cross-link-swatch-list.swatch-list-style-swatch_round { display: flex; flex-wrap: wrap; gap: 0 10px; }

@media screen and (max-width: 749px) {
  .product-media-component { position: relative; }
  .gallery-slider-thumbnails--mobile-bullets-bullets { position: absolute !important; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex !important; justify-content: center; width: 100%; padding: 0 20px; box-sizing: border-box; background: transparent !important; }
  .gallery-slider-thumbnails--mobile-bullets-bullets .dot { width: 6px; height: 6px; margin: 0 4px; border-radius: 50%; background-color: white; opacity: 0.9; }
}

/* HEADER AND DRAWER OVERRIDES */

:is(.section-header, .header, .header-wrapper) { padding: 0 !important; }
:is(.header-nav-drawer, .menu-drawer, .drawer) { width: min(var(--us-slide-panel-w), 92vw) !important; border-radius: 0 !important; box-shadow: none !important; }

/* FIX: DRAWER LINKS WERE BLUE */
.header-nav-drawer a, .menu-drawer a, .drawer a {
    color: var(--color-menu-dropdown-text, #000000) !important;
}

@media (min-width: 990px) {
  :is(.header__icon--menu, .header-menu-toggle, .header-nav-drawer-open) { display: none !important; }
  :is(.header__inline-menu, .header-nav) { display: block !important; }
  
  .header-nav-desktop-dd-panel {
    position: fixed !important; top: var(--us-slide-header-h) !important; left: 0 !important;
    width: min(var(--us-slide-panel-w), 92vw) !important; height: calc(100vh - var(--us-slide-header-h)) !important;
    background: var(--color-base-background) !important; transform: translateX(-100%) !important; transition: transform 220ms ease !important; z-index: 9999 !important;
  }
  header details[open] .header-nav-desktop-dd-panel { transform: translateX(0) !important; pointer-events: auto !important; }
}

@media (max-width: 989px) {
  :is(.menu-drawer, .header-nav-drawer, .drawer, .drawer__inner, .menu-drawer__inner-container, .menu-drawer__navigation, .drawer__header) {
    background: #fff !important; border: 0 !important; box-shadow: none !important; border-radius: 0 !important;
  }
  :is(.menu-drawer, .header-nav-drawer, .drawer) :is(img, hr, .divider) { display: none !important; }
  :is(.menu-drawer__menu, .menu-drawer__submenu, .drawer__content) { display: block !important; column-count: 1 !important; }
  :is(.menu-drawer a, .header-nav-drawer a, .drawer a) {
    font-size: 12px !important; text-decoration: none !important; padding: 10px 0 !important; font-family: var(--font-main) !important;
  }
}

/* PDP BULLETS */

[id^="MainProduct-"] :is(ul, ol) { margin-left: 0 !important; padding-left: 0 !important; list-style: inside disc !important; }
[id^="MainProduct-"] li { margin: 0 0 0.6rem 0 !important; line-height: 1.6; }

/* SHOPIFY FORMS */

[data-form-id] :is(input, textarea, select, button, [type="submit"]) {
  font-family: var(--font-main) !important; font-size: 12px !important; border-radius: 0 !important;
}
[data-form-id] :is(button, [type="submit"]) { font-weight: 600 !important; text-transform: none !important; }

/* GLOBAL EDGE SPACING SYSTEM */

:root {
  --main-edge-space-mobile: 100px;
  --main-edge-space-desktop: 120px;
}
/* =========================================================
   GLOBAL WIDTH: WIDE HEADER/FOOTER, NARROW CONTENT
   ========================================================= */

/* 1. Define the narrow width for all main page content */
:root {
  --page-content-max-width: 1320px; /* Updated to match your preferred collection width */
}
/* 2. Apply the narrow width ONLY to content inside the main body */
main .page-width,
main .page-width-narrow,
main .page-width-medium,
main .page-width-grid,
main .page-width-desktop,
main .page-width--narrow,
main .product-main-top-section { /* <--- Added product page wrapper */
  max-width: var(--page-content-max-width) !important;
  margin: 0 auto !important;
}

/* 3. Ensure Header and Footer bypass the narrow limit and stay 100% wide */
.shopify-section-group-header-group .page-width,
.shopify-section-group-footer-group .page-width,
.site-header .page-width,
footer .page-width {
  max-width: 100% !important;
}
main { padding: var(--main-edge-space-mobile) 0 !important; }
@media screen and (min-width: 1025px) { main { padding: var(--main-edge-space-desktop) 0 !important; } }

main > :first-child { margin-top: 0 !important; padding-top: 0 !important; }
main .shopify-section + .shopify-section { margin-top: 0 !important; }
:is(.site-footer, footer, .shopify-section-group-footer-group, .section-footer) { margin: 0 !important; padding: 0 !important; }

/* =========================================
   FIX: ELIMINATE ALL GREY BORDERS & LINES
   ========================================= */

/* 1. Kill actual line elements completely */
hr, 
.divider, 
.hr-dark, 
.hr-light, 
.menu-drawer__menu-divider,
.site-footer hr,
.market-list-current::after {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
}

/* 2. Strip borders off structural elements (Accordions, Headers, Footers) */
.accordion,
.accordion details,
.accordion summary,
.product__accordion,
.product__accordion summary,
.product__info-container .accordion,
.footer-block-linklist-column-expanding,
.footer-block-linklist-column-expanding:not(:last-child):not(:only-child),
.header-bar-inner-top,
.header-bar-inner.hovered .header-bar-inner-top {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* =========================================
   MOBILE HEADER RESCUE: VISIBILITY TOGGLES
   ========================================= */

/* --- MOBILE FIRST (Default State) --- */

/* 1. Hide desktop navigation links on mobile */
.hdr-nav-desktop {
  display: none !important;
}

/* 2. Hide text like "Account" so it doesn't crush the logo on mobile */
.hdr-st-item-dto {
  display: none !important;
}

@media only screen and (max-width: 1024px) {
  .header-bar--shopping-tools .cart-ui-word,
  .header-bar--shopping-tools .hdr-st-item-label,
  .header-bar--shopping-tools a > span:not(.hdr-cart-count) {
    display: none !important;
  }
}

/* 3. Force the burger menu to show up */
.hdr-menu-button {
  display: flex !important;
  align-items: center;
  width: 50px;
}

/* 4. Show mobile logo, hide desktop logo */
.header-desktop-logo { display: none !important; }
.header-mobile-logo { display: flex !important; }

/* --- DESKTOP (1025px and up) --- */
@media only screen and (min-width: 1025px) {
  
  .hdr-nav-desktop {
    display: block !important;
  }
  
  .hdr-st-item-dto {
    display: flex !important;
  }

  .hdr-menu-button {
    display: none !important;
  }

  .header-desktop-logo { display: flex !important; }
  .header-mobile-logo { display: none !important; }
}

/* =========================================
   RESCUE THE BURGER MENU LINES
   ========================================= */

.menu-line {
  display: block !important;
  width: 18px !important;
  border-top: 1.5px solid #000000 !important;
  background: transparent !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.menu-line:nth-child(2) {
  margin-top: 6px !important; 
}

.product {
  margin: 0;
}

.product.grid {
  gap: 0;
}

.product-block-hr-top, .product-block-hr-bottom {
  margin: 0;
  padding: 0;
}

.product--no-media {
  max-width: 60rem;
  margin: 0 auto;
}

.product-main-top-section {
  width: 100%;
}

.product-main-media-section, .product-main-info-section {
  width: 100%;
}

.product-main-info-section {
  position: relative;
  padding: 0 var(--page-margin-mobile) 2rem var(--page-margin-mobile);
}

.quick-add-view-product-button {
  display: none;
}

.text-line-clamp-three {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0 !important;
}

.product-text-clamp-toggle {
  background: none;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  outline: 0;
  padding: 0.6rem 0;
  margin: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: var(--font-body-family) !important;
  font-size: var(--font-body-base-size-mobile);
}

@media only screen and (min-width: 750px) {
  .product-text-clamp-toggle {
    font-size: var(--font-body-base-size-tablet);  
  }
}

@media only screen and (min-width: 1025px) {
  .product-text-clamp-toggle {
    font-size: var(--font-body-base-size-desktop);  
  }  
}

.product-text-clamp-toggle .open { display: none; }
.product-text-clamp-toggle.open .open { display: block; }
.product-text-clamp-toggle.open .closed { display: none; }
.product-text-clamp-toggle:focus-visible { outline: 2px solid; }

.description-indent p:first-child { text-indent: 4rem; }
@media only screen and (min-width: 750px) {
  .description-indent p:first-child { text-indent: 8rem; }  
}

.product-media-component {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-bottom: 0;
  font-size: 0;
}

.product__title__brand { margin-bottom: 10px !important; }
.product__title h1, .product__title h2 { margin-bottom: 0 !important;  }

.product-media--mobile-slider--desktop-grid, .product-media--mobile-slider--desktop-stack, .product-media--mobile-slider--desktop-slider {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  overflow-x: auto;
  flex: none;
  flex-flow: row nowrap;
  scroll-snap-type: x mandatory; 
  font-size: 0;
}

.product-media-image {
  scroll-snap-align: start;
  flex: none;
  width: 100%;
  min-width: 100%; 
}

/* Base Aspect Ratios */
.pmc-portrait-4x6 .product-media-image { aspect-ratio: 4 / 6; }
.pmc-portrait .product-media-image { aspect-ratio: 4 / 5; }
.pmc-square .product-media-image { aspect-ratio: 1 / 1; }
.pmc-landscape .product-media-image { aspect-ratio: 3 / 2; }
.pmc-landscape-16x9 .product-media-image { aspect-ratio: 16 / 9; }

.product-media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  max-height: 897px !important;
  background-color: white;
}

.product-media-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.media-scale--scale-down .product-media-image img, .media-scale--scale-down .product-media-image video {
  object-fit: scale-down !important;
}

@media screen and (min-width: 750px) {
  .product__column-sticky {
    display: block;
    position: sticky;
    top: 0rem;
    z-index: 2;
  }
  body:has(.header-bar--full) .product__column-sticky { top: var(--site-header-height-desktop); }
  body:has(.header-bar--full):has(.full-width-announcement-bar) .product__column-sticky { top: calc(var(--site-header-height-desktop) + 35px); }
}

@media only screen and (min-width: 950px) {
  .product-main-media-section-rounded-media .product-media-image img, .product-main-media-section-rounded-media .product-media-image video {
    border-radius: var(--media-radius);
  }

  .product-main-top-section { display: flex; }
  .product-main-media-section { width: 50%; }
  .product-main-info-section {
    width: 50%;
    padding: 0rem var(--page-margin-desktop) 3rem var(--page-margin-desktop);
  }
  body:has(.header-bar--page-margins) .product-main-info-section {
    padding: calc(var(--site-header-height-mobile) + 2rem) var(--page-margin-desktop) 0 var(--page-margin-desktop);
  }
  body:has(.header-announcement-bar):has(.header-bar--page-margins) .product-main-info-section {
    padding: calc(var(--site-header-height-mobile) + 5rem) var(--page-margin-desktop) 0 var(--page-margin-desktop);
  }
  .product-main-section-layout-wide .product-main-media-section { width: 60%; }
  .product-main-section-layout-wide .product-main-info-section { width: 40%; }
  .product-main-info-section.vertical-align-bottom {
    display: flex; align-items: flex-end; padding-bottom: 2rem;
  }

  /* REFACTORED DESKTOP GALLERY GRID WITH 20PX GAP */
  .product-media--mobile-slider--desktop-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5, 20px) !important;
  }
  .product-media--mobile-slider--desktop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5, 20px) !important;
  }
  
  .product-media--mobile-slider--desktop-grid .product-media-image, 
  .product-media--mobile-slider--desktop-stack .product-media-image {
    width: 100%;
    min-width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    height: auto;
  }
  
  .product-media-qty-1 .product-media--mobile-slider--desktop-grid .product-media-image,
  .grid-balance-true.grid-layout-odd .product-media--mobile-slider--desktop-grid .product-media-image:first-child {
    grid-column: 1 / span 2;
  }

  /* Hide thumbnails completely on desktop to match minimalist style */
  .gallery-slider-thumbnails { display: none !important; }

  /* Reset slider width so it’s full width when thumbnails are gone */
  .pmc-thumbnail-position--adjacent-left-normal .product-media--mobile-slider--desktop-slider,
  .pmc-thumbnail-position--adjacent-left-large  .product-media--mobile-slider--desktop-slider,
  .pmc-thumbnail-position--adjacent-right-normal .product-media--mobile-slider--desktop-slider,
  .pmc-thumbnail-position--adjacent-right-large  .product-media--mobile-slider--desktop-slider {
    width: 100% !important; margin-left: 0 !important; margin-right: 0 !important;
  }
}

@media only screen and (min-width: 1025px) {
  body:has(.header-bar--page-margins) .product__info-container {
    padding: calc(var(--site-header-height-desktop) + 4rem) 3rem 0 3rem;
  } 
  body:has(.header-announcement-bar):has(.header-bar--page-margins) .product__info-container {
    padding: calc(var(--site-header-height-desktop) + 7rem) 3rem 0 3rem;
  }
}

/* Dynamic checkout */
.shopify-payment-button__button {
  font-family: var(--font-accent-family) !important;
  text-transform: var(--buttons-text-case) !important;
  min-height: calc(32px + var(--buttons-padding));
  font-size: var(--buttons-font-size-mobile) !important;
  line-height: 1;
}
.shopify-payment-button .button-content {
  font-family: var(--font-accent-family) !important;
  text-transform: var(--buttons-text-case) !important;
  font-size: var(--buttons-font-size-mobile) !important;
  line-height: 1;  
}
.shopify-payment-button {
  font-family: var(--font-accent-family) !important;
  text-transform: var(--buttons-text-case) !important;  
}

.shopify-payment-button__button [role="button"].focused,
.no-js .shopify-payment-button__button [role="button"]:focus {
  outline: .2rem solid rgba(var(--color-foreground),.5) !important; outline-offset: 0.3rem; box-shadow: 0;
}
.shopify-payment-button__button [role="button"]:focus:not(:focus-visible) { outline: 0; box-shadow: none !important; }
.shopify-payment-button__button [role="button"]:focus-visible { outline: .2rem solid rgba(var(--color-foreground),.5) !important; box-shadow: 0; }

.shopify-payment-button__button--unbranded {
  background-color: rgba(var(--color-button-background), 1);
  color: rgb(var(--color-button-foreground));
  font-size: var(--buttons-font-size-mobile) !important;
  line-height: 1; letter-spacing: 0rem;
}
.shopify-payment-button__button--unbranded::selection { background-color: rgba(var(--color-button-text), 0.3); }
.shopify-payment-button__button--unbranded:hover,
.shopify-payment-button__button--unbranded:hover:not([disabled]) { background-color: rgba(var(--color-button-background), 0.5); }

.shopify-payment-button__more-options {
  margin: 1.2rem 0 1.2rem; font-size: var(--font-ui-size-mobile);
  text-decoration: underline; text-underline-offset: 0.3rem; text-transform: none; color: rgb(var(--color-foreground));
}
.shopify-payment-button__button + .shopify-payment-button__button--hidden { display: none; }
.shopify-payment-button .portable-wallet { min-height: calc(32px + var(--buttons-padding)) !important; }

@media only screen and (min-width: 1025px) {
  .shopify-payment-button__more-options { font-size: var(--font-ui-size-desktop); }
  .shopify-payment-button__button--unbranded, .shopify-payment-button .button-content, .shopify-payment-button__button {
    font-size: var(--buttons-font-size-desktop) !important;
  }
}

/* Product form */
.product-form { display: block; }
.product-form__error-message-wrapper:not([hidden]) {
  display: flex; align-items: center; font-size: 1.2rem; margin-top: 1rem; margin-bottom: 1rem;
}
@media only screen and (min-width: 1025px) { .product-form__error-message-wrapper:not([hidden]) { font-size: 1.3rem; }  }
.product-form__error-message-wrapper svg { flex-shrink: 0; width: 1.4rem; height: 1.4rem; margin-right: 0.8rem; }

/* Form Elements */
.product-form__input {
  flex: 0 0 100%; padding: 0; margin: 0; max-width: 100rem; min-width: fit-content; border: none; line-height: 1.0;
}
variant-radios, variant-selects { display: block; }

.product-form__input .form__label { padding-left: 0; line-height: 1.2; }
fieldset.product-form__input .form__label { display: block; margin-bottom: 1rem; }

.product-form__input input[type='radio'] { clip: rect(0, 0, 0, 0); overflow: hidden; position: absolute; height: 1px; width: 1px; }

.product-main-info-section .quantity { min-height: calc(32px + var(--buttons-padding)); }

/* Variant Pills */
.product-form__input input[type='radio'] + label {
  border: 1px solid rgba(var(--color-foreground),0.25); background-color: rgb(var(--color-background));
  color: rgba(var(--color-foreground)); border-radius: var(--variant-pills-radius);
  display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 0 0; margin-right: 4px;
  padding: 1rem 1.8rem; min-width: calc(32px + var(--buttons-padding)); height: calc(32px + var(--buttons-padding));
  font-size: var(--font-ui-size-mobile); line-height: 1; text-align: center;
  transition: border var(--duration-short) ease; cursor: pointer; position: relative; overflow: hidden;
}

.radio-options-wrapper { display: flex; align-items: flex-start; justify-content: flex-start; flex-wrap: wrap; column-gap: 8px; row-gap: 8px; }
.product-form__input .radio-options-wrapper input[type='radio'] + label { margin: 0; }

@media only screen and (min-width: 1025px) { .product-form__input input[type='radio'] + label { font-size: var(--font-ui-size-desktop); } }

.align-center .product-form__input .radio-options-wrapper { justify-content: center; }

.product-form__input input[type='radio'] + label:before {
  content: ''; position: absolute; top: calc(var(--variant-pills-border-width) * -1); right: calc(var(--variant-pills-border-width) * -1);
  bottom: calc(var(--variant-pills-border-width) * -1); left: calc(var(--variant-pills-border-width) * -1); z-index: -1;
  border-radius: var(--variant-pills-radius); box-shadow: none; outline: none; border: 0;
}
.product-form__input input[type='radio']:not(.disabled) + label:hover { border: 1px solid rgba(var(--color-foreground),1); }
.product-form__input input[type='radio']:checked + label { background-color: none; border: 1px solid rgba(var(--color-foreground),1); color: rgb(var(--color-foreground)); overflow: hidden; }
.product-form__input input[type='radio']:not(.disabled) + label > .visually-hidden { display: none; }

@media screen and (forced-colors: active) { .product-form__input input[type=radio]:checked + label { text-decoration: underline; } }
.product-form__input input[type='radio']:checked + label::selection { background-color: rgba(var(--color-background), 0.3); }

.product-form__input input[type='radio']:disabled + label, .product-form__input input[type='radio'].disabled + label {
  border-color: rgba(var(--color-foreground),0.2); color: rgba(var(--color-foreground), 0.5); text-decoration: none; overflow: hidden;
}
.product-form__input input[type='radio'].disabled + label:before {
  content: ""; width: 200%; max-width: 90px; height: 1px; background: rgba(var(--color-foreground), 0.2);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-45deg); z-index: 2;
  border: 0 !important; outline: 0 !important; border-radius: 0 !important; box-shadow: none !important;
}
.product-form__input input[type='radio'].disabled:checked + label:before {
  content: ""; width: 200%; max-width: 90px; height: 1px; background: rgba(var(--color-foreground), 0.2);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-45deg); z-index: 2; border-radius: 0 !important; box-shadow: none !important;
}
.product-form__input input[type='radio'].disabled:checked + label, .product-form__input input[type='radio']:disabled:checked + label { color: rgba(var(--color-foreground), 0.5); border: 1px solid rgba(var(--color-foreground),1); }
.product-form__input input[type='radio']:focus-visible + label { outline: 2px solid; }
.product-form__input input[type='radio'].focused + label, .no-js .shopify-payment-button__button [role="button"]:focus + label { outline: 2px solid; }
.no-js .product-form__input input[type='radio']:focus:not(:focus-visible) + label { box-shadow: none; }

.variant-picker-minimal .product-form__input input[type=radio]+label { border: 0 !important; padding: 1rem 0; margin-right: 2rem; min-width: 20px; text-transform: none; outline: 0; }
.align-center .variant-picker-minimal .product-form__input input[type=radio]+label { margin-left: 1rem; margin-right: 1rem; }
.variant-picker-minimal .product-form__input input[type='radio']:checked +label { text-decoration: underline; text-underline-offset: 3px; }
.variant-picker-minimal .product-form__input input[type='radio']:not(.disabled) + label:hover { background: none; }
.variant-picker-minimal .product-form__input input[type='radio'].disabled + label:before { content: none; width: 0; }
.variant-picker-minimal input[type='radio'].disabled + label { text-decoration: line-through !important; }

.product-form__input .select { max-width: none; }
.no-js .product-form__submit.button--secondary { --color-button: var(--color-base-accent-1); --color-button-text: var(--color-base-solid-button-labels); --alpha-button-background: 1; }

.product-form__submit[aria-disabled="true"] + .shopify-payment-button .shopify-payment-button__button[disabled],
.product-form__submit[disabled] + .shopify-payment-button .shopify-payment-button__button[disabled] { cursor: not-allowed; opacity: 0.5; }
@media screen and (forced-colors: active) { .product-form__submit[aria-disabled="true"] { color: Window; } }

/* Product info */
.product__info-container { display: block; padding-top: 2rem; }
.product__info-container .product-accordion { text-align: left !important;  }
.product__info-container iframe { max-width: 100%; }
a.product__text { display: block; text-decoration: none; color: rgba(var(--color-foreground), 0.75); }
.product__title { word-break: break-word; }
.product__title > a { display: none; }

/* FIX: PREVENT BLUE LINKS IN DESCRIPTION/ACCORDIONS */
.product__info-container a:not(.button):not(.product-popup-modal__button) {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FIX: REMOVE BORDERS FROM ACCORDIONS */
.product__accordion { border: none !important; }
.product__accordion summary { border: none !important; border-bottom: none !important; border-top: none !important; }
.product__accordion .accordion__content { padding: 1rem 0rem; border: none !important;}

.product .price .badge { margin-bottom: 0.5rem; }
.product .price dl { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.product .price--sold-out .price__badge-sold-out { background: transparent; color: rgb(var(--color-base-text)); border-color: transparent; }
.product .price--sold-out .price__badge-sale { display: none; }

.product-info-justify-center { margin: 0 auto; }
.product-info-justify-left { margin: 0; }
.product-info-justify-right { margin-left: auto; }

@media screen and (min-width: 750px) {
  .product__info-container { max-width: 100rem; }
  .product__info-container > *:first-child { margin-top: 0; }
}
@media screen and (min-width: 1025px) { .product__info-container { padding-top: 0; } }

.product--no-media .product__title, .product--no-media .product__text, .product--no-media noscript .product-form__input,
.product--no-media, .product--no-media .product__sku, .product--no-media shopify-payment-terms { text-align: center; }
.product__tax { text-align: center !important; }
.product--no-media .product__media-wrapper, .product--no-media .product__info-wrapper { padding: 0; }
.product--no-media noscript .product-form__input { max-width: 100%; }

.product--no-media fieldset.product-form__input, .product--no-media .product-form__quantity,
.product--no-media .product-form__input--dropdown, .product--no-media .product__view-details,
.product--no-media .product__pickup-availabilities, .product--no-media .product-form { display: flex; align-items: center; justify-content: center; text-align: center; }
.product--no-media .product-form { flex-direction: column; }
.product--no-media .product-form > .form { max-width: 30rem; width: 100%; }
.product--no-media .product-form__quantity, .product--no-media .product-form__input--dropdown { flex-direction: column; max-width: 100%; }
.product-form__quantity .form__label { margin-bottom: 1rem; }
.product-form__quantity-top .form__label { margin-bottom: 1.2rem; }
.product--no-media fieldset.product-form__input { flex-wrap: wrap; margin: 0 auto 2rem auto; }
.product--no-media .product__info-container > modal-opener { display: block; }
.product--no-media .product-popup-modal__button { padding-right: 0; padding-left: 0; }
.product--no-media .price { text-align: center; }

/* Product popup */
.product-popup-modal { box-sizing: border-box; opacity: 0; position: fixed; visibility: hidden; z-index: -1; margin: 0 auto; top: 0; left: 0; overflow: auto; width: 100%; background: rgba(0,0,0,var(--popup-bg-darkness)); height: 100%; transition: visibility 0s linear 300ms, opacity 300ms; }
.product-popup-modal[open] { opacity: 1; visibility: visible; z-index: 101; transition: visibility 0s linear 0ms, opacity 300ms; }
.modal-header { position: sticky; top: 0; height: 60px; background: var(--popup-background-color); display: flex; align-items: center; justify-content: flex-start; padding: 0 2rem; border-bottom: 1px solid rgba(var(--color-foreground),0.15); }
.modal-header.modal-header-align-center { justify-content: center; }
.product-popup-modal__opener { display: block; margin: 0.5rem 0; }
.product-popup-modal__button { font-size: var(--font-ui-size-mobile); font-family: var(--font-body-family) !important; padding-right: 0; padding-left: 0; min-height: 2.5rem; text-underline-offset: 0.3rem; text-decoration-thickness: 1px; transition: text-decoration-thickness var(--duration-short) ease; }
.product-popup-modal__button:hover { text-decoration-thickness: 1px; }
@media only screen and (min-width: 1025px) { .product-popup-modal__button { font-size: var(--font-ui-size-desktop); }  }

.product-popup-modal__content { border-radius: var(--popup-corner-radius); background-color: var(--popup-background-color); overflow: auto; height: 80%; margin: 0 auto; left: 50%; top: 50%; transform: translate(-50%,-50%); width: calc(100vw - var(--page-margin-mobile) - var(--page-margin-mobile)); position: absolute; padding: 0; border: var(--popup-border-width) solid rgba(var(--color-foreground),var(--popup-border-opacity)); box-shadow: 0px 0px var(--popup-shadow-blur-radius) calc(var(--popup-shadow-blur-radius) * 0.5) rgba(0,0,0,var(--popup-shadow-opacity)); }
.product-popup-modal__content.focused, .product-popup-modal__content:focus-visible { box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3), var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow), var(--popup-shadow-opacity)); }
.modal-header .product-popup-modal__toggle { order: 2; width: 50px; height: 60px; align-items: center; justify-content: flex-end; }
.modal-header .product-popup-modal__toggle .icon { width: 1.3rem; height: 1.3rem; }
.modal-header .h3 { padding-top: 0.6rem; }
@media screen and (min-width: 750px) { .product-popup-modal__content { padding-right: 1.5rem; width: 70%; max-width: 800px; padding: 0; } .product-media-modal__dialog .global-media-settings--no-shadow { overflow: visible !important; } }
@media screen and (min-width: 1450px) { .product-popup-modal__content { width: 60%; }  }
.product-popup-modal__content img { max-width: 100%; }
@media screen and (max-width: 749px) { .product-popup-modal__content table { display: block; max-width: fit-content; overflow-x: auto; white-space: nowrap; margin: 0; } .product-media-modal__dialog .global-media-settings, .product-media-modal__dialog .global-media-settings video, .product-media-modal__dialog .global-media-settings model-viewer, .product-media-modal__dialog .global-media-settings iframe, .product-media-modal__dialog .global-media-settings img { border: none; border-radius: 0; } }
.product-popup-modal__content-info { box-sizing: border-box; padding-top: 2rem; padding-bottom: 4rem; padding-left: 2rem; padding-right: 2rem; }
.product-popup-modal__content-info > * { height: auto; margin: 0 auto; max-width: 100%; width: 100%; }
.product-popup-modal__content-info h1, .product-popup-modal__content-info h3, .product-popup-modal__content-info h4 { margin-bottom: 20px !important; }
@media screen and (max-width: 749px) { .product-popup-modal__content-info > * { max-height: 100%; } }
.product-popup-modal__toggle { background: none; border: 0; border-radius: 50%; color: var(--buttons-bg-color); display: flex; align-items: center; justify-content: center; cursor: pointer; position: absolute; top: 0; right: 2rem; padding: 0; z-index: 2; width: 4.8rem; margin: 0 0 0 auto; }
.modal-header .product-popup-modal__toggle { padding: 1.2rem 0.2rem; }
.product-popup-modal__toggle:hover { color: var(--buttons-bg-color); }
.product-popup-modal__toggle .icon { height: auto; margin: 0; width: 2.2rem; }

.product__media-list .media > * { overflow: hidden; }
@media screen and (max-width: 749px) { .product__media-item { display: flex; align-items: center; } .product__modal-opener { width: 100%; } }
.product__modal-opener--image .product__media-zoom-none, .product__media-icon--none { display: none; }
.js .product__media { overflow: hidden !important; }
.product:not(.featured-product) .product__view-details { display: none; }
.product__view-details { display: block; text-decoration: none; }
.product__view-details:hover { text-decoration: underline; text-underline-offset: 0.3rem; }
.product__view-details .icon { width: 1.2rem; margin-left: 1.2rem; flex-shrink: 0; }

.product__inventory { display: flex; align-items: center; gap: 0.5rem; justify-content: flex-start; margin-bottom: 0 !important; }
.align-center .product__inventory { justify-content: center; }
.product__inventory span { text-align: center; box-sizing: border-box; }
.product--no-media .product__inventory { justify-content: center; }
.product__sku.visibility-hidden::after { content: "#"; }

/* Color Swatches */
.product-color-swatch-label { font-size: var(--font-ui-size-mobile); margin-top: 0.8rem; }
@media only screen and (min-width: 1025px) { .product-color-swatch-label { font-size: var(--font-ui-size-desktop); }  }
.variant-picker-colour-swatch { font-size: 0 !important; width: 24px; height: 24px !important; min-height: 24px !important; padding: 0 !important; background-color: none !important; top: 0; min-width: 10px !important; outline: 1px solid var(--color-base-background) !important; border: 3px solid var(--color-base-background) !important; }
.swatch-style-rectangle .variant-picker-colour-swatch { width: 36px; height: 16px !important; min-height: 16px !important; }
.swatch-style-rectangle input[type=radio]+label { border-radius: 0 !important; }
.product-form__input input { -webkit-appearance: none; appearance: none; }
.product-form__input input[type=radio]:checked+label .variant-picker-colour-swatch { background: none; background-color: none; -webkit-appearance: none !important; appearance: none; outline: none; border: 0; }
.swatch-style-round .variant-picker-colour-swatch { -webkit-border-radius: 100% !important; border-radius: 100% !important; }
.swatch-style-round .product-form__input input[type=radio]:checked+label .variant-picker-colour-swatch { -webkit-border-radius: 100% !important; border-radius: 100% !important; }
.option-color-picker-wrapper { display: inline-block; position: relative; }
.option-color-picker-wrapper input[type=radio]:checked+label { min-width: 10px; outline: 1px solid #333333 !important; }
@media not all and (min-width: 1025px) and (min-resolution: 0.001dpcm) { .option-color-picker-wrapper input[type=radio]:checked+label { outline: none !important; box-shadow: 0 0 0 1px #333333; }  }
.option-color-picker-wrapper input[type=radio]+label { position: relative; outline: 0; border: 0; top: 0; }
.option-color-picker-wrapper input[type=radio]+label:hover { outline: 0; border: 0;  }
.option-color-picker-wrapper input[type=radio]:checked+label { position: relative; border: 0; outline: 0; top: 0; }
.swatch-style-round .option-color-picker-wrapper input[type=radio]+label, .swatch-style-round .option-color-picker-wrapper input[type=radio]+label:hover, .swatch-style-round .option-color-picker-wrapper input[type=radio]:checked+label { -webkit-border-radius: 100%; border-radius: 100%;  }
.product-po-title { font-weight: 500; }

.main-product--badge { position: relative; box-sizing: border-box; padding: 0; width: 100%; z-index: 1; margin-bottom: 1rem; }
.main-product--badge > span { text-align: center; color: var(--badge-txt-color); background: var(--badge-bg-color); border-radius: var(--badge-corner-radius); border: var(--badge-border-width) solid rgba(var(--badge-border)); box-sizing: border-box; padding: 4px 8px; font-size: 1.0rem; text-transform: var(--badge-text-case); line-height: 1.0; margin-right: 2px; }
@media only screen and (min-width: 1025px) { .main-product--badge > span { font-size: 1.1rem; }  }
.align-center .main-product--badge > span { margin-left: 2px; margin-right: 1px; }
.align-right .main-product--badge > span { margin-left: 2px; margin-right: 0px; }

.product-form-payment-cards ul { list-style-type: none; display: flex; align-items: center; justify-content: center; padding: 0; }
.product-form-payment-cards li { margin-left: 1px; margin-right: 1px; }
.product-form-payment-cards .list-payment__item { padding: 0 0.3rem; }
.price-saving-badge { color: var(--color-price-sale); padding: 0rem; }

.product-custom-color-selector { margin: 0 auto; text-align: center; margin-top: 40px; }
.product-swatch-custom a { display: block; height: 100%; }
.product-swatch-custom { width: 24px; height: 24px; border-radius: 100%; font-size: 0; display: inline-block; margin-left: 1px; margin-right: 1px; vertical-align: top; border: 3px solid #ffffff; box-shadow: 0 0 0 1px #ffffff; line-height: 1; }
.custom-swatch-selected { box-shadow: 0 0 0 1px #666666;  }
.picker-swatch-white { background: #f2f2f2 !important; }
.product-swatch-custom .metafield-single_line_text_field-array { list-style-type: none; padding: 0; margin: 0; }
.product-swatch-custom-label { display: block !important; min-height: 30px; }
.product-swatch-custom .metafield-single_line_text_field, .product-swatch-custom-label .metafield-single_line_text_field { padding: 0; margin: 0; display: inline-block; vertical-align: top; }
.product-swatch-custom-label .metafield-single_line_text_field-array { list-style-type: none; padding: 0; margin: 0; }
.product-swatch-custom-label .metafield-single_line_text_field:nth-child(2)::before { content: "/ "; }
.product-swatch-custom-label { margin-top: 5px; font-size: 1.3rem;  }

.product-form__input .option-color-picker-wrapper input[type=radio] { width: 26px; height: 26px; top: -4px; left: -6px;  clip: auto; }
.product-form__input .option-color-picker-wrapper input[type=radio]:focus-visible { outline: 2px solid #000000 !important; }
.align-center .product-form__quantity .quantity { margin: 0 auto; }

.accordion-panel { text-align: left; }
.accordion-panel table:not([class]) { box-shadow: none !important; }
.accordion-panel table, .accordin-panel table:not([class]) td { border: 0 !important; }
.accordion-panel table { margin-top: 20px !important; margin-bottom: 10px !important; }
.accordion-panel td { vertical-align: top; border: 0 !important; padding: 0.4em 0 0.4em 0 !important; }
.accordion-panel img { max-width: 100% !important; }

.social-sharing-component { margin-top: 1rem; margin-bottom: 1rem; }
.social-sharing-component a { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; }
.product-share-component { padding-top: 2rem; }
.social-sharing-component .icon { width: 1.4rem; height: 1.4rem; }

.product-cross-links-list { display: flex; flex-wrap: wrap; row-gap: 2px; }
.align-center .product-cross-links-list { justify-content: center; }
.product-cross-link-item a { text-decoration: none; }
.product-cross-link-item { margin-right: 2px; }
.align-center .product-cross-link-item { margin-left: 4px; margin-right: 4px; }
.product-cross-link-thumbnail { position: relative; width: 30px; line-height: 0; border: 1px solid rgba(0, 0, 0, 1); }
.product-cross-link-thumbnail img { position: absolute; top: 0; left: 0; margin: 0; padding: 0;  width: 100%; height: 100%; object-fit: contain; }

.pcl-ratio-landscape .product-cross-link-thumbnail { width: 50px; height: 33px; }
.pcl-ratio-square .product-cross-link-thumbnail { width: 40px; height: 50px; }
.pcl-ratio-portrait .product-cross-link-thumbnail { width: 50px; height: 64px; }
.pcl-ratio-portrait-4x6 .product-cross-link-thumbnail { width: 50px; height: 80px; }
@media only screen and (min-width: 1025px) { .pcl-ratio-landscape .product-cross-link-thumbnail { width: 60px; height: 40px; }  }
.product-cross-link-thumbnail:hover { border: 1px solid rgba(var(--color-foreground),0.4); }
.cl-item-selected { border: 1px solid rgba(0, 0, 0, 1) !important; }
.cross-link-swatch-list { position: relative; margin: 0 !important; padding: 0; list-style-type: none; display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: flex-start; column-gap: 2px; row-gap: 2px; }
.align-center .cross-link-swatch-list { justify-content: center; }
.align-right .cross-link-swatch-list { justify-content: flex-end; }
.cross-link-swatch-list li { margin: 0; padding: 0; }
.cross-link-swatch-list a { margin: 0; padding: 0; text-decoration: none !important; display: block; }
.selected .swatch-dot { outline: 1px solid rgba(var(--color-foreground),0.9); }
.swatch-dot { outline: 1px solid rgba(var(--color-foreground),0.2); border: 2px solid var(--color-background); box-sizing: border-box; display: block !important; width: 24px; height: 24px; margin-bottom: 5px; position: relative; overflow: hidden; }
.secondary-swatch-color { display: block !important; width: 50%; height: 100%; position: absolute; left: 0; top: 0; }
.swatch-list-style-swatch_round .swatch-dot { border-radius: 100%; }
.swatch-list-style-swatch_rectangle .swatch-dot { height: 14px; width: 26px; }
.product-cross-link-heading { margin-bottom: 1rem; }
.product-breadcrumb-block a { text-decoration: none; }
.product-breadcrumb--divider { margin-left: 0.3rem; margin-right: 0.3rem; }
.product-breadcrumb--product-title { opacity: 0.6; }

.product-info-tabs .tab-menu { border-bottom: 0; overflow: scroll; white-space: nowrap;  -webkit-overflow-scrolling: touch; }
.product-info-tabs .tab-menu::-webkit-scrollbar { height: 0px; display: none }
.product-info-tabs .tab-menu-with-border { border-bottom: 1px solid rgba(var(--color-foreground),0.2); }
.product-info-tabs .tab-button { -webkit-appearance: none; appearance: none; outline: none; border: 0; color: inherit; background: none; padding: 0.5rem 0; font-family: var(--font-body-family) !important; font-style: var(--font-body-style) !important; font-size: var(--font-body-base-size-mobile); cursor: pointer; }
.tab-font-navigation { font-family: var(--font-accent-family) !important; font-style: var(--font-accent-style) !important; }
.product-info-tabs .tab-menu-with-border .tab-button { padding: 1.2rem 0; }
.product-info-tabs button { margin-right: 16px; }
.align-center .product-info-tabs button { margin-left: 6px; margin-right: 6px; }
.product-info-tabs .tab-style-underline button[role="tab"][aria-selected="true"] { border-bottom: 1px solid; }
.product-info-tabs .tab-style-opacity button[role="tab"][aria-selected="false"] { opacity: 0.65; }
.product-info-tabs .tab-style-opacity button[role="tab"][aria-selected="true"] { border-bottom: 0; opacity: 1; }
.product-info-tabs .tab-content { box-sizing: border-box; min-height: 50px; padding: 2rem 0 0 0; }
.product-info-tabs p { margin-top: 0; margin-bottom: 2rem; }
.product-info-tabs p:last-child { margin-bottom: 0; }
@media only screen and (max-width: 1025px) { .product-info-tabs .tab-button { font-size: var(--font-body-base-size-desktop); cursor: pointer; }  }

@media only screen and (max-width: 750px) {
  .sticky-buy-buttons .product-form { margin-bottom: 0; position: fixed; bottom: 0; background: var(--color-background); width: 100%; z-index: 2; left: 0; padding: var(--page-margin-mobile) var(--page-margin-mobile) 0 var(--page-margin-mobile); }
  .sticky-buy-buttons--border-true .product-form { border-top: 1px solid rgba(var(--color-foreground),0.15); }
  .sticky-buy-buttons .product-form__buttons { margin-top: 0; padding-bottom: 5px; }  
  .sticky-buy-buttons .product-form-payment-cards { display: none; }
}

/* Recipient form */
.recipient-form { --recipient-checkbox-margin-top: 0.64rem; display: block; position: relative; margin-bottom: 2.5rem; }
.recipient-form-field-label { margin: 0.6rem 0; }
.recipient-form-field-label--space-between { display: flex; justify-content: space-between; }
.recipient-checkbox { flex-grow: 1; font-size: 1.6rem; display: flex; word-break: break-word; align-items: flex-start; max-width: inherit; position: relative; cursor: pointer; }
.no-js .recipient-checkbox { display: none; }
.recipient-form > input[type='checkbox'] { position: absolute; width: 1.6rem; height: 1.6rem; margin: 0; top: 0; left: 0; z-index: -1; appearance: none; -webkit-appearance: none; }
.recipient-fields__field { margin: 0 0 2rem 0; }
.recipient-fields .field__label { white-space: nowrap; text-overflow: ellipsis; max-width: calc(100% - 3.5rem); overflow: hidden; }
.recipient-checkbox > svg { margin-top: 0.3rem; margin-right: 1.2rem; flex-shrink: 0; }
.recipient-form .icon-checkmark { visibility: hidden; position: absolute; left: -0.2rem; top: -0.2rem; z-index: 5; }
.recipient-form > input[type='checkbox']:checked + label .icon-checkmark { visibility: visible; }
.js .recipient-fields { display: none; }
.recipient-fields hr { margin: 1.6rem auto; }
.recipient-form .recipient-fields { display: block; animation: animateMenuOpen var(--duration-default) ease; }
.recipient-form > input[type='checkbox']:not(:checked, :disabled) ~ .recipient-fields, .recipient-email-label { display: none; }
.js .recipient-email-label.required, .no-js .recipient-email-label.optional { display: inline; }
.recipient-form ul { line-height: calc(1 + 0.6 / var(--font-body-scale)); padding-left: 4.4rem; text-align: left; }
.recipient-form ul a { display: inline; }
.recipient-form .error-message::first-letter { text-transform: capitalize; }

@media screen and (forced-colors: active) {
  .recipient-fields > hr { border-top: 0.1rem solid var(--color-base-background); }
  .recipient-checkbox > svg { background-color: inherit; border: 0.1rem solid var(--color-base-background); }
  .recipient-form > input[type='checkbox']:checked + label .icon-checkmark { border: none; }
}

/* US CUSTOM SELECT — BALENCIAGA-STYLE */
.us-select { position: relative; width: 100%; font: inherit; }
.us-select__native { position: absolute !important; inset: 0; opacity: 0; pointer-events: none; }

.us-select__button {
  height: calc(32px + var(--buttons-padding)); min-height: calc(32px + var(--buttons-padding));
  box-sizing: border-box; padding: 0 16px; border: 1px solid #000; border-radius: 0;
  background: #fff; display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left; margin: 0; color: #111; letter-spacing: .01em; cursor: pointer;
}
.us-select__button:hover { background: #ececec; }

.us-select__icon { margin-left: auto; padding-right: 12px; display: flex; align-items: center; }
.us-select__icon svg { width: 12px; height: 12px; transform: rotate(0deg); transition: transform .15s ease; }
.us-select.is-open .us-select__icon svg { transform: rotate(180deg); }

.us-select__menu {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 300;
  max-height: 320px; overflow: auto; border: 1px solid #000; background: #fff;
  border-top: 0; border-radius: 0; margin-top: 0; box-shadow: none; padding: 6px 0;
}
.us-select.is-open .us-select__button { border-bottom: 0; }

.us-select__option {
  padding: 12px 14px; line-height: 1.2; cursor: pointer; transition: background-color .12s ease;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #fff;
}
.us-select__option:hover { background: #f7f7f7; }
.us-select__option[aria-selected="true"] { background: #fff; font-weight: 600; }
.us-select__option.is-disabled { color: #9a9a9a; cursor: not-allowed; opacity: .7; }

.us-select__label { display: block; font-size: 12px; font-weight: 500; line-height: 1.4; padding: 8px 12px; margin: 0; text-align: left; }

/* === Green-gap controls === */
:root { --green-gap: 24px; }

/* ===== Scope to this product section ===== */
#MainProduct-{{ section.id }} {
  .product-variant-picker-block .product-form__input { margin: 0 !important; }
  .product-variant-picker-block fieldset.product-form__input + .product-form__input--dropdown { margin-top: 24px !important; }
  .product-form__input--dropdown { margin-bottom: 0 !important; }
  .product-form__buttons { margin-bottom: 0 !important; margin-top: 0 !important; }
  .klarna-placement, [data-klarna-placement], .shopify-payment-terms, .shopify-installments { margin-top: 12px !important; margin-bottom: 24px !important; }
}

.product-info-container .product-variant-picker-block.variant-picker-dropdown { margin-bottom: 0 !important; }
#MainProduct-{{ section.id }} .product-variant-picker-block { margin-bottom: 6px !important; }

/* If no Klarna/terms render, ensure the gap goes before Details/Tabs */
#MainProduct-{{ section.id }} .product-form__buttons + .accordion,
#MainProduct-{{ section.id }} .product-form__buttons + .product-info-tabs {
  margin-top: 24px !important;
}

/* ====== US Product Header Grid (Title + Price + Label) ====== */
.us-product-header-grid {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center !important;
}
.us-product-header-grid.us-product-header-grid--no-label { grid-template-columns: 1fr; }
.us-phg-title { display: flex; flex-direction: column; justify-content: center; }
.us-phg-label { grid-row: 1 / span 2; align-self: center; display: block; overflow: hidden; }
.us-phg-label-img { display: block; max-width: 140px; height: auto; object-fit: contain; aspect-ratio: 3/2;}
.us-phg-title .product__title { margin: 0 0 1.5rem 0 !important; line-height: 1.1; }
.us-phg-price { margin: 0 !important; }

@media (max-width: 749px) {
  .us-product-header-grid { grid-template-columns: 1fr minmax(96px, 140px); column-gap: 12px; row-gap: 8px; }
  .us-phg-title .product__title { line-height: 1.15; }
}
@media (min-width: 1025px) {
  .us-product-header-grid { grid-template-columns: 1fr minmax(160px, 260px); column-gap: 18px; row-gap: 10px; }
}

/* =========================================
   PATCH: STRETCH PDP BUTTONS 100% WIDTH
   ========================================= */

.product-form__buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.product-form__submit,
.product-form__buttons .button,
.product-form__buttons .shopify-payment-button,
.product-form__buttons .shopify-payment-button__button {
  width: 100% !important;
  max-width: none !important;
}

.product-form__input--dropdown .us-select,
.product-form__input--dropdown .us-select__button {
  width: 100%;
}

.product-form__input--dropdown {
  margin-bottom: 0;
}

/* =========================================
   PATCH: REMOVE BORDERS FROM ACCORDIONS
   ========================================= */

.product__accordion { border: none !important; }
.product__accordion summary { border: none !important; border-bottom: none !important; border-top: none !important; }

/* =========================================
   PATCH: FIX BLUE LINKS IN PDP TEXT
   ========================================= */

.product__info-container a:not(.button):not(.product-popup-modal__button) {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================
   1. FIX: REMOVE BULLETS FROM CUSTOM DROPDOWN
   ========================================= */
.us-select__menu,
.us-select__menu ul,
.us-select__menu li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.us-select__menu li::marker {
  content: none !important;
  display: none !important;
}

/* =========================================
   2. FIX: 40% SHORTER BUTTONS & DROPDOWNS (32px)
   ========================================= */
/* Target all buttons, select triggers, and dynamic checkout */
.button,
.shopify-challenge__button,
.customer button,
.shopify-payment-button__button,
.shopify-payment-button .portable-wallet,
.product-form__submit,
.us-select__button {
  min-height: 32px !important;
  height: 32px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: inline-flex;
  align-items: center;
}

/* Target variant size boxes (XS, S, M, etc.) to match */
.product-form__input input[type='radio'] + label {
  min-height: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  padding: 0 12px !important;
}

/* =========================================
   3. FIX: CONSISTENT SPACING (DROPDOWN -> BUTTONS)
   ========================================= */
/* Exactly 8px gap below the Dropdown */
.product-form__input--dropdown {
  margin-bottom: 8px !important; 
}

/* Flexbox 'gap' forces perfect identical spacing between all buttons */
.product-form__buttons {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
  gap: 8px !important; 
  margin-top: 0 !important;
}

/* Strip out any erratic margins fighting the Flexbox gap */
.product-form__buttons > *,
.product-form__submit,
.shopify-payment-button,
.shopify-payment-button__button {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* === HIDE ROGUE MENU CLOSE BUTTON (Scroll-Safe Version) === */
.us-nav-panel:not(.is-open) {
  visibility: hidden !important;
  pointer-events: none !important;
  /* Removed 'display: none' so the slide animation finishes and unlocks page scroll */
}

.us-nav-backdrop:not(.is-open) {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* =========================================================
   US CUSTOM PRODUCT PAGE OVERRIDES & FIXES
   ========================================================= */

/* 1. Tab Content & Table Formatting (No Grey Shadows) */
.product-info-tabs .tab-content { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; overflow-wrap: anywhere; word-break: break-word; }
.product-info-tabs .tab-content img, .product-info-tabs .tab-content iframe, .product-info-tabs .tab-content video { max-width: 100%; height: auto; }
.product-info-tabs .tab-content table, .product__info-container table { border: 1px solid #000000 !important; margin-left: auto !important; margin-right: auto !important; border-collapse: collapse !important; width: auto !important; min-width: 50% !important; box-shadow: none !important; -webkit-box-shadow: none !important; background-color: #ffffff !important; }
.product-info-tabs .tab-content tbody, .product-info-tabs .tab-content tr, .product-info-tabs .tab-content td, .product-info-tabs .tab-content th, .product__info-container tbody, .product__info-container tr, .product__info-container td, .product__info-container th { background-color: #ffffff !important; font-size: 12px !important; border: 1px solid #000000 !important; padding: 8px 12px !important; text-align: center !important; }

/* 2. Variant Select Alignment (16px flush left/right) */
.product-variant-picker-block .select__select, .product-variant-picker-block select, .product-variant-picker-block .us-select__button { padding-left: 16px !important; padding-right: 40px !important; text-align: left !important; }
.product-variant-picker-block .select__select span, .product-variant-picker-block .us-select__button span { padding-left: 0 !important; margin-left: 0 !important; }
.product-variant-picker-block .select .icon-caret, .product-variant-picker-block .select svg, .product-variant-picker-block .us-select__icon { position: absolute !important; right: 16px !important; top: 50% !important; transform: translateY(-50%) !important; margin: 0 !important; pointer-events: none !important; }
.product-variant-picker-block li, .product-variant-picker-block option, .product-variant-picker-block .us-select__option { padding-left: 16px !important; padding-right: 16px !important; text-align: left !important; }

/* 3. Remove Bullets from Custom Dropdowns */
.us-select__menu, .us-select__menu ul, .us-select__menu li { list-style: none !important; list-style-type: none !important; padding-left: 0 !important; margin-left: 0 !important; }
.us-select__menu li::marker { content: none !important; display: none !important; }

/* 4. Color Swatch Borders (Unselected = Grey, Selected = Black) */
.product-cross-link-thumbnail:not(.cl-item-selected), .product-variant-picker-block input[type="radio"]:not(:checked) + label, .product-variant-picker-block fieldset label:not(.is-active) { border-color: #ffffff !important; }
.product-cross-link-thumbnail.cl-item-selected, .product-variant-picker-block input[type="radio"]:checked + label, .product-variant-picker-block fieldset label.is-active { border-color: #000000 !important; }

/* 5. 32px Shorter Buttons & Dropdowns */
.button, .shopify-challenge__button, .customer button, .shopify-payment-button__button, .shopify-payment-button .portable-wallet, .product-form__submit, .us-select__button { min-height: 32px !important; height: 32px !important; padding-top: 0 !important; padding-bottom: 0 !important; display: inline-flex; align-items: center; }
.product-form__input input[type='radio'] + label { min-height: 32px !important; height: 32px !important; min-width: 32px !important; padding: 0 12px !important; display: inline-flex; align-items: center; justify-content: center; }

/* 6. Consistent 8px Spacing & 100% Width Buttons */
.product-form__input--dropdown { margin-bottom: 8px !important; }
.product-form__buttons { display: flex !important; flex-direction: column !important; align-items: stretch !important; width: 100% !important; gap: 8px !important; margin-top: 0 !important; }
.product-form__buttons > *, .product-form__submit, .shopify-payment-button, .shopify-payment-button__button { margin-top: 0 !important; margin-bottom: 0 !important; width: 100% !important; max-width: none !important; }

/* =========================================================
   GLOBAL THEME FIXES
   ========================================================= */

/* Hide rogue menu close button (Scroll-safe) */
.us-nav-panel:not(.is-open), .us-nav-backdrop:not(.is-open) { visibility: hidden !important; pointer-events: none !important; opacity: 0 !important; }


/* =========================================================
   MOBILE MENU: TREE / ACCORDION LAYOUT
   ========================================================= */

/* 1. Stop the parent list from sliding off-screen */
.nav-ul--primary,
.menu-drawer__menu {
  transform: none !important;
  transition: none !important;
  width: 100% !important;
}

/* 2. Convert overlapping panels into a natural Tree layout */
.mob-secondary-level-ul {
  position: static !important; /* Follows normal document flow */
  height: auto !important;
  width: 100% !important;
  padding: 0 0 0 16px !important; /* Indent the tree branches */
  margin: 0 !important;
  transform: none !important;
  background: transparent !important;
  overflow: visible !important;
}

/* 3. Hide the Back Button (Not needed in a tree menu) */
.nav-secondary-fo-back-button {
  display: none !important;
}

/* 4. Typography Override: Force Messina Sans everywhere */
.menu-drawer,
.header-nav-drawer,
.drawer__inner,
.mob-secondary-level-ul,
.mob-secondary-level-ul * {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  font-size: 13px !important; 
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* 5. Clean Flush-Left Links */
.nav-ul--primary, 
.nav-ul--secondary, 
.nav-ul--tertiary {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mob-parent-button, 
.nav-ul--secondary > li > a, 
.nav-ul--tertiary > li > a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 14px 0 !important;
  border: none !important; 
  color: #000000 !important;
  background: transparent !important;
  text-decoration: none !important;
}

/* Kill default Shopify 0/+ markers */
.mob-parent-button::after, .mob-parent-button::before,
.mob-secondary-level-ul li::after, .mob-secondary-level-ul li::before,
.nav-ul--primary li::after, .nav-ul--primary li::before {
  content: none !important;
  display: none !important;
}

/* 6. Point Carets Down to signify a dropdown/tree */
.mob-parent-link-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.mob-parent-link-icon svg,
.mob-parent-link-icon img {
  width: 10px !important;
  height: 10px !important;
  transform: rotate(0deg) !important; /* Points down */
  transition: transform 0.2s ease !important;
}

/* 7. Lock Close X in Top Right */
.drawer__close,
.drawer-close-button,
.menu-drawer__close-button {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  width: 44px !important;
  height: 44px !important;
  z-index: 9999 !important;
  background: transparent !important;
  border: none !important;
  color: #000000 !important;
}
/* =========================================================
   MOBILE ACCORDION TOGGLE STATES
   ========================================================= */

/* 1. Hide all sub-menus by default */
.mob-secondary-level-ul {
  display: none !important; 
}

/* 2. Show them when the JavaScript adds the "is-open" class */
.mob-secondary-level-ul.is-open {
  display: block !important;
  animation: fadeInDown 0.2s ease forwards !important;
}

/* 3. Flip the caret arrow 180 degrees when open */
.mob-parent-button.is-expanded .mob-parent-link-icon svg,
.mob-parent-button.is-expanded .mob-parent-link-icon img {
  transform: rotate(180deg) !important; 
}

/* Optional: A subtle fade-in so it doesn't just snap harshly */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
/* =========================================================
   MOBILE MENU: ULTRA-TIGHT SPACING & 10PX TYPOGRAPHY
   ========================================================= */

/* 1. Container Spacing (Tighter top gap to match proportions) */
.menu-drawer__navigation,
.drawer__inner nav,
.header-nav-drawer nav {
  padding: 32px 16px 24px 16px !important; 
  box-sizing: border-box !important;
  height: 100% !important;
  overflow-y: auto !important;
}

/* 2. Link Spacing & 10px Font */
.mob-parent-button, 
.nav-ul--secondary > li > a, 
.nav-ul--tertiary > li > a,
.nav-ul--primary > li > a {
  padding: 6px 0 !important; /* Reduced by another 20% */
  font-size: 12px !important; /* Locked to 10px */
  line-height: 1.2 !important;
}

/* Ensure the 10px rule hits absolutely everything in the drawer */
.menu-drawer,
.header-nav-drawer,
.drawer__inner,
.mob-secondary-level-ul,
.mob-secondary-level-ul * {
  font-size: 12px !important; 
}

/* 3. Tighter Sub-menu Indentation */
.mob-secondary-level-ul {
  padding: 0 0 6px 12px !important; /* Tighter nest */
}

.nav-ul--tertiary {
  padding: 0 0 4px 12px !important; /* Tighter 3rd level nest */
}

/* 4. Keep the X button aligned cleanly with the tighter layout */
.drawer__close,
.drawer-close-button,
.menu-drawer__close-button {
  top: 10px !important; 
  right: 10px !important;
}


/* =========================================================
   FILTER DRAWER (FIGMA OVERRIDES - V9)
   ========================================================= */

/* --- 1. HIDE ALL 'X' BUTTONS ENTIRELY --- */
html body details.menu-opening > summary .mobile-facets__close,
html body details[open] > summary .mobile-facets__close,
html body .mobile-facets__close,
html body .mobile-facets__close-button,
html body .mobile-facets__header .mobile-facets__close {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

/* --- 2. HEADER CENTERING --- */
html body .mobile-facets__header {
  height: 64px !important;
  min-height: 64px !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-bottom: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
html body .mobile-facets__header-inner {
  display: flex !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: center !important;
}
html body .mobile-facets__heading {
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  text-align: center !important;
  width: 100% !important;
  font-family: var(--font-body) !important;
}

/* --- 3. ARROWS NEXT TO TEXT (NO SHIFTING) --- */
html body .mobile-facets__summary {
  padding: 0 !important;
  margin: 0 0 24px 0 !important;
  border: none !important;
  background: transparent !important;
}
html body .mobile-facets__summary > div {
  display: flex !important;
  justify-content: flex-start !important; /* Groups text and arrow */
  align-items: center !important;
  gap: 8px !important; /* Space between text and arrow */
  width: 100% !important;
  padding: 0 !important;
}

/* Kill absolute positioning and lock rotation */
html body .mobile-facets__summary .icon-caret,
html body .mobile-facets__summary .mobile-facets__arrow {
  position: static !important;
  display: block !important;
  margin: 0 !important;
  right: auto !important;
  top: auto !important;
  width: 10px !important;
  height: 10px !important;
  transform: rotate(-90deg) !important; 
  transition: none !important;
}

/* Rotate arrow down when opened */
html body details[open] > .mobile-facets__summary .icon-caret,
html body details[open] > .mobile-facets__summary .mobile-facets__arrow {
  transform: rotate(0deg) !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* --- 4. STICKY FOOTER & 32PX BUTTONS --- */
/* Force full height so the footer can stick to the bottom */
html body .mobile-facets__inner {
  display: flex !important;
  flex-direction: column !important;
  height: 100dvh !important; 
  max-height: 100vh !important;
  background: #ffffff !important;
}
html body .mobile-facets__main {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  padding: 0 16px !important;
  overflow-y: auto !important;
}

/* Hide the repetitive inner footers */
html body .mobile-facets__details .mobile-facets__footer {
  display: none !important;
}

/* The Main Sticky Footer */
html body .mobile-facets__main > .mobile-facets__footer {
  display: flex !important;
  flex-direction: column !important;
  position: sticky !important; 
  bottom: 0 !important; 
  background: #fff !important;
  padding: 16px 0 24px 0 !important;
  margin-top: auto !important; 
  border-top: none !important;
  gap: 8px !important; /* Exactly 8px gap */
  width: 100% !important;
  z-index: 100 !important;
  box-sizing: border-box !important;
}

/* Force elements inside to stretch */
html body .mobile-facets__main > .mobile-facets__footer facet-remove,
html body .mobile-facets__main > .mobile-facets__footer .mobile-facets__clear-wrapper {
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* EXACTLY 32px height buttons (Kills hidden theme paddings) */
html body .mobile-facets__main > .mobile-facets__footer .mobile-facets__clear-wrapper a,
html body .mobile-facets__main > .mobile-facets__footer .button {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important; /* Strict height cap */
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  line-height: normal !important;
  text-transform: none !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important; /* Kills internal vertical padding */
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* Remove fake button thickness created by pseudo elements */
html body .mobile-facets__main > .mobile-facets__footer .button::after,
html body .mobile-facets__main > .mobile-facets__footer .button::before {
  display: none !important;
  content: none !important;
}

/* "Remove All" Button */
html body .mobile-facets__main > .mobile-facets__footer .mobile-facets__clear-wrapper a {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
  text-decoration: none !important;
}

/* "Apply" Button */
html body .mobile-facets__main > .mobile-facets__footer .button {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000 !important; /* Ensures the borders are exactly the same size to match heights */
}

/* =========================================================
   1. SITE-WIDE FIX: FORCE FOOTER TO BOTTOM ON SHORT PAGES
   ========================================================= */
main, #MainContent {
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* =========================================================
   MOBILE MENU DRAWER (FULL SCREEN & ARROW ALIGNMENT)
   ========================================================= */

/* 1. Force the drawer to open 100% of the screen on mobile */
@media screen and (max-width: 989px) {
  html body .menu-drawer, 
  html body .header-nav-drawer, 
  html body .drawer,
  html body .drawer__inner {
    width: 100vw !important;
    max-width: 100vw !important;
  }
}

/* 2. Force menu links to stretch 100% and push the arrow to the right */
html body .mob-parent-button {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* 3. Fix the layout for links that have images inside them */
html body .nav-drawer--collection-image-row {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
}
html body .nav-drawer--collection-title {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  flex-grow: 1 !important;
}

/* 4. Ensure the arrow icon stays exactly in place */
html body .mob-parent-link-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

/* Smooth arrow rotation when clicking */
html body .mob-parent-link-icon svg {
  transition: transform 0.2s ease !important;
}