/** Shopify CDN: Minification failed

Line 122:0 Unexpected "}"
Line 629:0 Unexpected "}"
Line 783:0 Unexpected "}"
Line 862:0 Unexpected "}"
Line 2009:0 Unexpected "}"
Line 2386:11 Expected identifier but found whitespace
Line 2386:12 Unexpected "0"
Line 2889:0 Unexpected "}"
Line 3827:15 Unexpected "{"
Line 3827:24 Expected ":"
... and 10 more hidden warnings

**/
:root{
  /* Brand neutrals */
  --bg: #0B0C0F;
  --bg-2: #0F1117;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.085);
  --border: rgba(245,245,247,.12);

  /* Text */
  --text: #F5F5F7;
  --text-2: rgba(245,245,247,.78);
  --text-3: rgba(245,245,247,.55);

  /* Accent (controlled) */
  --accent: #C9C5BA;     /* warm stone */
  --accent-2: #9F9B90;

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;

  /* Spacing */
  --gutter: clamp(18px, 3vw, 34px);
  --max: 1180px;

  /* Type scale */
  --h0: clamp(44px, 5.2vw, 74px);
  --h1: clamp(34px, 3.8vw, 56px);
  --h2: clamp(26px, 2.6vw, 36px);
  --p:  16px;
  --p-sm: 14px;

  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-inout: cubic-bezier(.65,0,.35,1);
  --dur-1: 180ms;
  --dur-2: 360ms;
  --dur-3: 560ms;

  /* Hairline shadow */
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}
/* =========================================================
   EMERGENCY PATCH (place near TOP)
   If CSS below is broken, this still applies.
========================================================= */

/* Kill browser default button styling */
button{
  -webkit-appearance: none !important;
  appearance: none !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  font: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
}

/* Your Add to Cart button */
button.pv-btn.pv-btn-primary{
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 14px 18px !important;
  border-radius: 999px !important;

  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(245,245,247,.18) !important;
  color: rgba(245,245,247,.92) !important;

  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  font-size: 12px !important;

  transition: background 220ms cubic-bezier(.16,1,.3,1),
              border-color 220ms cubic-bezier(.16,1,.3,1),
              transform 120ms cubic-bezier(.16,1,.3,1) !important;
}

button.pv-btn.pv-btn-primary:hover{
  background: rgba(255,255,255,.16) !important;
  border-color: rgba(245,245,247,.24) !important;
}

button.pv-btn.pv-btn-primary:active{
  transform: scale(.99) !important;
}

/* Disabled states */
button.pv-btn.pv-btn-primary:disabled,
button.pv-btn.pv-btn-primary[disabled],
button.pv-btn.pv-btn-primary[aria-disabled="true"]{
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(245,245,247,.10) !important;
  color: rgba(245,245,247,.45) !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
  transform: none !important;
}


}

/* Mobile: 1 per row */

  }
}

html, body{ background: var(--bg); color: var(--text); }
body{
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.container{
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}
a{ color: inherit; text-decoration: none; }
:root{ --font-sans: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
body{ font-family: var(--font-sans); }

.h0{ font-size: var(--h0); line-height: .94; letter-spacing: -0.03em; }
.h1{ font-size: var(--h1); line-height: 1.02; letter-spacing: -0.02em; }
.h2{ font-size: var(--h2); line-height: 1.12; letter-spacing: -0.01em; }

.p{ font-size: var(--p); line-height: 1.7; color: var(--text-2); }
.p-sm{ font-size: var(--p-sm); line-height: 1.6; color: var(--text-2); }

.ui-label{
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-3);
}
.logo-text, .brand-lockup{ font-family: "Horizon", var(--font-sans) !important; }
.interactive{
  transition: transform var(--dur-1) var(--ease-out), filter var(--dur-2) var(--ease-out);
  will-change: transform;
}
.interactive:hover{ transform: translateY(-1px); }
.interactive:active{ transform: translateY(0) scale(.99); }
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  transition: background var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.btn:hover{ background: rgba(255,255,255,.06); border-color: rgba(245,245,247,.18); }
.btn:active{ transform: scale(.99); }

.btn--solid{
  background: linear-gradient(180deg, rgba(245,245,247,.14), rgba(245,245,247,.08));
  border-color: rgba(245,245,247,.18);
}
input, textarea, select{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: 14px 14px;
  outline: none;
  transition: border-color var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out);
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(201,197,186,.55);
  background: rgba(255,255,255,.05);
}
:focus-visible{
  outline: 2px solid rgba(201,197,186,.55);
  outline-offset: 3px;
  border-radius: 10px;
}
.media-frame{
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(245,245,247,.08);
}
.media-frame img{ width: 100%; height: 100%; object-fit: cover; display:block; }

.media-frame::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(80% 70% at 50% 30%, rgba(0,0,0,.0), rgba(0,0,0,.55));
  pointer-events:none;
  opacity:.65;
}

.pv-featured-card{ border-radius: var(--r-md); }
.pv-featured-content{ padding: 14px 2px 0; }
.pv-featured-title{ font-size: 14px; letter-spacing: .02em; color: var(--text); margin: 0 0 6px; }
.pv-featured-price{ color: var(--text-2); font-size: 13px; }
.pv-featured-media-wrap{ aspect-ratio: 4 / 5; }
.skeleton{
  position: relative;
}
.skeleton::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.07), rgba(255,255,255,.03));
  transform: translateX(-40%);
  animation: shimmer 1.2s var(--ease-inout) infinite;
  opacity: .6;
}
@keyframes shimmer{ to{ transform: translateX(40%); } }
img:not([src]){ opacity:0; }
.page-fade{
  opacity: 0;
  transform: translateY(6px);
}
.page-fade.is-in{
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
@media (prefers-reduced-motion: reduce){
  .page-fade, .page-fade.is-in{ opacity:1; transform:none; transition:none; }
}

@font-face {
  font-family: "Horizon";
  src:
    url("/cdn/shop/files/Horizon.woff2?v=1766513787") format("woff2"),
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Horizon";
  src:
    url("/cdn/shop/files/Horizon.woff2?v=1765580296") format("woff2"),
    url("/cdn/shop/files/Horizon.woff?v=1765580295") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.logo-text {
  font-family: "Horizon", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5F5F7;
  font-size: 13px;
}


:root{
  --bg: #0b0b0f;
  --bg-2:#0f1016;
  --text:#f5f5f7;
  --muted: rgba(245,245,247,.72);

  --stroke: rgba(245,245,247,.12);
  --stroke-2: rgba(245,245,247,.18);
  --shadow: 0 10px 30px rgba(0,0,0,.35);

  --radius: 18px;
  --radius-2: 26px;

  --container: 1320px;
  --gutter: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-1: 220ms;
  --dur-2: 320ms;
  --dur-3: 420ms;

  --h0: clamp(56px, 5.6vw, 88px);
  --h1: clamp(40px, 3.6vw, 56px);
  --h2: clamp(26px, 2.2vw, 36px);
  --body: 17px;
  --small: 12.5px;

  --ls-title: -0.03em;
  --ls-ui: 0.08em;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background-color: #0B0B0F !important;;
  color:var(--text);
  font-family:Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:var(--body);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img,video{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
button,input,select,textarea{ font:inherit; color:inherit; }
::selection{ background:rgba(245,245,247,.18); }

.skip-to-content-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-to-content-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:var(--bg-2);
  border:1px solid var(--stroke);
  border-radius:12px;
  z-index:9999;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding-left:var(--gutter);
  padding-right:var(--gutter);
}

.section{
  padding:120px 0;
}
@media (max-width: 900px){
  :root{ --gutter: 18px; }
  .section{ padding:72px 0; }
}

.h0{
  font-size:var(--h0);
  line-height:1.03;
  letter-spacing:var(--ls-title);
  margin:0;
}
.h1{
  font-size:var(--h1);
  line-height:1.06;
  letter-spacing:var(--ls-title);
  margin:0;
}
.h2{
  font-size:var(--h2);
  line-height:1.15;
  letter-spacing:var(--ls-title);
  margin:0;
}
.p{
  margin:0;
  color:var(--muted);
}

.ui-label{
  font-size:var(--small);
  letter-spacing:var(--ls-ui);
  text-transform:uppercase;
  color:rgba(245,245,247,.78);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  border:1px solid var(--stroke-2);
  background:rgba(245,245,247,.06);
  color:var(--text);
  transition:transform var(--dur-1) var(--ease), background var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease), opacity var(--dur-2) var(--ease);
  will-change:transform;
  .btn{
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.btn:active{
  transform: translateY(0) scale(.98);
}

}
.btn:hover{ transform:translateY(-1px); background:rgba(245,245,247,.1); border-color:rgba(245,245,247,.24); }
.btn:active{ transform:translateY(0); opacity:.9; }

.btn--solid{
  background:var(--text);
  color:#0b0b0f;
  border-color:transparent;
}
.btn--solid:hover{ background:rgba(245,245,247,.92); }

.card{
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  overflow:hidden;

}
/* Premium button feel */
.btn{
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 220ms var(--ease), filter 320ms var(--ease), box-shadow 320ms var(--ease), opacity 220ms var(--ease);
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}

.btn::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 52%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  pointer-events:none;
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 20px 52px rgba(0,0,0,.34);
}

.btn:hover::before{
  opacity: 1;
  transform: none;
}

.btn:active{
  transform: translateY(0) scale(.985);
  filter: brightness(0.98);
}

/* Solid button refinement */
.btn--solid{
  box-shadow: 0 18px 46px rgba(0,0,0,.32);
}
.btn--solid:hover{
  box-shadow: 0 22px 58px rgba(0,0,0,.38);
}

/* Optional loading state (add class .is-loading in JS/Liquid) */
.btn.is-loading{
  pointer-events:none;
  opacity:.88;
}
.btn.is-loading::after{
  content:"";
  width:16px;
  height:16px;
  border-radius:999px;
  border:2px solid rgba(11,11,15,.35);
  border-top-color: rgba(11,11,15,.92);
  position:absolute;
  right:16px;
  top:50%;
  transform: translateY(-50%);
  animation: spin 700ms linear infinite;
}
@keyframes spin{ to{ transform: translateY(-50%) rotate(360deg); } }

.reveal{
  opacity:0;
  transform: translateY(18px);
  filter: blur(6px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease),
    filter 700ms var(--ease);
}
.reveal.is-in{
  opacity:1;
  transform:none;
  filter: blur(0);
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:saturate(140%) blur(14px);
  -webkit-backdrop-filter:saturate(140%) blur(14px);
  background:rgba(11,11,15,.62);
  border-bottom:1px solid var(--stroke);
}
.site-header__bar{
  height:72px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:14px;
}
.site-header__left{ justify-self:start; display:flex; align-items:center; gap:16px; }
.site-header__center{ justify-self:center; display:flex; align-items:center; }
.site-header__right{ justify-self:end; display:flex; align-items:center; gap:12px; }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  font-size:13px;
  letter-spacing:0.02em;
  color:rgba(245,245,247,.86);
  transition:opacity var(--dur-2) var(--ease);
}
.nav a:hover{ opacity:.75; }

.header-icon{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(245,245,247,.04);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform var(--dur-1) var(--ease), background var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}
.header-icon:hover{
  transform:translateY(-1px);
  background:rgba(245,245,247,.08);
  border-color:rgba(245,245,247,.22);
}

.logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.logo img{
  height:22px;
  width:auto;
}

@media (max-width: 900px){
  .site-header__bar{ height:64px; }
  .nav{ display:none; }
}

/* Hero editorial */
.hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:flex-end;
  padding:0;
}
.hero__media{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.hero__media img,
.hero__media video{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero__inner{
  position:relative;
  width:100%;
  padding:120px 0 72px;
}
.hero__content{
  max-width:760px;
}
.hero__cta{
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:26px;
}

/* Subtle legibility assist without "cheap overlay" look */
.hero__veil{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 20% 75%, rgba(0,0,0,.72), transparent 62%),
    linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,.18) 45%, transparent 70%);
  opacity: 1;
}

}

@media (max-width: 900px){
  .hero__media { z-index: 0; }
.hero__inner { position: relative; z-index: 2; }
.hero__content { position: relative; z-index: 2; }

}
.hero .h0,
.hero .p,
.hero .ui-label{
  text-shadow: 0 10px 40px rgba(0,0,0,.55);
}
.hero__media{ position:absolute; inset:0; z-index:0; }
.hero__inner{ position:relative; z-index:2; }
.hero__content{ position:relative; z-index:2; }

.hero__veil{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 20% 75%, rgba(0,0,0,.75), transparent 62%),
    linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.18) 45%, transparent 70%);
  opacity:1;
}

.hero .h0,
.hero .p,
.hero .ui-label{
  color:#F5F5F7;
  text-shadow:0 10px 40px rgba(0,0,0,.6);
}
/* Product form inputs */
select,
input[type="text"],
input[type="number"],
input[type="email"],
textarea {
  background: rgba(245,245,247,0.06);
  color: #F5F5F7;
  border: 1px solid rgba(245,245,247,0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color 220ms ease, background 220ms ease;
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(245,245,247,0.35);
  background: rgba(245,245,247,0.08);
}

/* Dropdown arrow fix (Chrome) */
select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #F5F5F7 50%),
    linear-gradient(135deg, #F5F5F7 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* Variant labels (Size / Color) */
.product-form__input label {
  color: rgba(245,245,247,0.75);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.product-form__submit {
  background: #F5F5F7;
  color: #0B0B0F;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 500;
  border: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.product-form__submit:disabled {
  opacity: 0.4;
}
/* PDP Add to cart */
.product-form__submit,
button[name="add"],
.product__submit button,
.shopify-payment-button__button--unbranded{
  width: 100%;
  min-height: 52px;
  padding: 16px 22px;
  border-radius: 999px;
  background: #F5F5F7;
  color: #0B0B0F;
  border: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease), filter 220ms var(--ease);
}

.product-form__submit:hover,
button[name="add"]:hover{
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.product-form__submit:active,
button[name="add"]:active{
  transform: translateY(0);
}

.product-form__submit:disabled,
button[name="add"]:disabled{
  opacity: 0.35;
  cursor: not-allowed;
}
.product-form,
.product__info-container{
  overflow: visible;
}
.header-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid transparent;
  background: transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}
.header-icon:hover{
  background: rgba(245,245,247,.06);
  border-color: rgba(245,245,247,.12);
  transform: translateY(-1px);
}
.password-login { position: relative; z-index: 5; }
.password-page .hero__media,
.password-page .hero__veil { pointer-events: none; }

}
.header-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(245,245,247,.12);
  background: rgba(245,245,247,.04);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  overflow: visible;
}

.header-icon svg{
  width:18px;
  height:18px;
  display:block;
  fill: none !important;
  stroke: #F5F5F7 !important;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .92;
}

.header-icon:hover svg{ opacity: 1; }
/* Burger (clean, luxury) */
.burger{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(245,245,247,.12);
  background: rgba(245,245,247,.04);
  display:none;
  align-items:center;
  justify-content:center;
  padding:0;
  position:relative;
}

.burger span{
  position:absolute;
  left:50%;
  width:16px;
  height:1.5px;
  background:#F5F5F7;
  border-radius:2px;
  transform: translateX(-50%);
  opacity:.92;
}

.burger span:nth-child(1){ top: 15px; }
.burger span:nth-child(2){ top: 23px; }

@media (max-width: 900px){
  .burger{ display:inline-flex; }
  .nav{ display:none; }
}


/* Drawer */


.mobile-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:6px;
}
.mobile-nav__link{
  padding:14px 12px;
  border-radius:14px;
  border:1px solid rgba(245,245,247,.10);
  background: rgba(245,245,247,.04);
  font-size:14px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

}
.lift:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
  border-color: rgba(245,245,247,.22);
}

/* Smooth page fade-in */
body{
  animation: pageIn 520ms var(--ease) both;
}
@keyframes pageIn{
  from{ opacity:0; transform: translateY(6px); }
  to{ opacity:1; transform:none; }
}
.hero__media img,
.hero__media video{
  transform: scale(1.04);
  transition: transform 1200ms var(--ease);
}
body.loaded .hero__media img,
body.loaded .hero__media video{
  transform: scale(1);
}
.card,
.product-card,
.grid__item,
.collection-product-card{
  transition: transform 420ms var(--ease), filter 420ms var(--ease), border-color 420ms var(--ease);
}

.card:hover,
.product-card:hover,
.grid__item:hover,
.collection-product-card:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}
/* Menu toggle */
.menu-toggle{
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid rgba(245,245,247,.12);
  background: rgba(245,245,247,.04);
  display:none;
  position:relative;
}
.menu-toggle span{
  position:absolute;
  left:50%;
  width:16px;
  height:1.5px;
  background:#F5F5F7;
  border-radius:2px;
  transform:translateX(-50%);
  transition: transform 420ms var(--ease), opacity 420ms var(--ease), top 420ms var(--ease);
  opacity:.92;
}
.menu-toggle span:nth-child(1){ top: 14px; }
.menu-toggle span:nth-child(2){ top: 19.5px; }
.menu-toggle span:nth-child(3){ top: 25px; }

.menu-toggle.is-open span:nth-child(1){ top: 19.5px; transform:translateX(-50%) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ opacity:0; }
.menu-toggle.is-open span:nth-child(3){ top: 19.5px; transform:translateX(-50%) rotate(-45deg); }

@media (max-width: 900px){
  .menu-toggle{ display:inline-flex; }
  .nav{ display:none; }
}

/* Menu sheet */
.menu-sheet{
  position:fixed;
  inset:0;
  z-index:2000;
 
}
.menu-sheet.is-open{ display:block; }

.menu-sheet__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
}

.menu-sheet__panel{
  position:absolute;
  left:0; right:0; top:0;
  background: rgba(11,11,15,.82);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom:1px solid rgba(245,245,247,.12);
  transform: translateY(-10px);
  opacity:0;
  transition: transform 520ms var(--ease), opacity 520ms var(--ease);
  padding: 16px 18px 22px;
}

.menu-sheet.is-open .menu-sheet__panel{
  transform: translateY(0);
  opacity:1;
}

.menu-sheet__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 6px 6px 14px;
}

.menu-sheet__close{
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid rgba(245,245,247,.12);
  background: rgba(245,245,247,.04);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.menu-sheet__close svg{
  width:18px;height:18px;
  fill:none;
  stroke:#F5F5F7;
  stroke-width:1.8;
  stroke-linecap:round;
}

.menu-sheet__nav{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  padding: 0 6px;
}
.menu-sheet__link{
  padding: 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(245,245,247,.10);
  background: rgba(245,245,247,.04);
  font-size: 14px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.menu-sheet__meta{
  padding: 14px 6px 0;
}
/* Burger micro-physics */
.menu-toggle{
  transition: transform 240ms var(--ease), background 320ms var(--ease), border-color 320ms var(--ease);
  will-change: transform;
}
.menu-toggle:hover{ transform: translateY(-1px); }
.menu-toggle:active{ transform: translateY(0) scale(.98); }

.menu-toggle span{
  transition:
    transform 520ms var(--ease),
    opacity 320ms var(--ease),
    top 520ms var(--ease);
  will-change: transform, top, opacity;
}

/* Menu sheet entrance (more premium) */
.menu-sheet__panel{
  transform: translateY(-18px);
  opacity: 0;
  filter: blur(10px);
  transition:
    transform 650ms var(--ease),
    opacity 650ms var(--ease),
    filter 650ms var(--ease);
}

.menu-sheet.is-open .menu-sheet__panel{
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

/* Backdrop fade */
.menu-sheet__backdrop{
  opacity: 0;
  transition: opacity 450ms var(--ease);
}
.menu-sheet.is-open .menu-sheet__backdrop{
  opacity: 1;
}

/* Stagger links for luxury feel */
.menu-sheet__link{
  transform: translateY(10px);
  opacity: 0;
  transition: transform 520ms var(--ease), opacity 520ms var(--ease), border-color 420ms var(--ease), background 420ms var(--ease);
}
.menu-sheet.is-open .menu-sheet__link{
  transform: none;
  opacity: 1;
}
.menu-sheet.is-open .menu-sheet__link:nth-child(1){ transition-delay: 80ms; }
.menu-sheet.is-open .menu-sheet__link:nth-child(2){ transition-delay: 140ms; }
.menu-sheet.is-open .menu-sheet__link:nth-child(3){ transition-delay: 200ms; }
.menu-sheet.is-open .menu-sheet__link:nth-child(4){ transition-delay: 260ms; }
.menu-sheet.is-open .menu-sheet__link:nth-child(5){ transition-delay: 320ms; }
body.menu-open .site-header{
  border-bottom-color: rgba(245,245,247,.18);
}

.hero__media::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.10;
}
.hero__media img, .hero__media video{
  transform: scale(1.06);
  transition: transform 1400ms var(--ease);
}
body.loaded .hero__media img,
body.loaded .hero__media video{
  transform: scale(1);
}
.product-card, .card{
  border:1px solid rgba(245,245,247,.10);
  background: rgba(245,245,247,.03);
}
.product-card:hover, .card:hover{
  border-color: rgba(245,245,247,.22);
}
/* Mobile hero framing */
@media (max-width: 900px){
  .hero{
    min-height: 86vh; /* taller to show more of the image */
  }

  .hero__media img,
  .hero__media video{
    object-position: 50% 20%; /* move focus upward */
  }
}
.hero__eyebrow{
  font-family: "Horizon", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #F5F5F7;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
  font-size: 16px;
  opacity: .92;
}

@media (max-width: 900px){
  .hero__eyebrow{
    font-size: 18px;          /* larger on mobile */
    letter-spacing: 0.20em;
  }
}
@media (max-width: 900px){
  .hero{ min-height: 86vh !important; }

  .hero__media img,
  .hero__media video{
    object-position: 50% 15% !important;
  }
/* FORCE hero eyebrow size */
.hero__eyebrow{
  font-family: "Horizon", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 18px !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: #F5F5F7 !important;
  opacity: .92 !important;
  margin: 0 0 14px 0 !important;
  line-height: 1 !important;
}

@media (max-width: 900px){
  .hero__eyebrow{
    font-size: 20px !important;
    letter-spacing: 0.22em !important;
    margin-bottom: 12px !important;
  }
}
/* Mobile: show FULL hero image (no crop) */
@media (max-width: 900px){
  .hero{
    min-height: auto !important;
    padding-top: 64px; /* keeps header spacing clean */
  }

  .hero__media{

    height: auto !important;
    background: #0B0B0F; /* fills letterbox area */
  }

  .hero__media img,
  .hero__media video{
    position: relative !important;
    width: 100% !important;
    object-position: 50% 50% !important;
  }

  .hero__veil{ display:none !important; } /* veil not needed with contain */
}
/* MOBILE HERO — premium layout (text + full-width media) */
@media (max-width: 900px){
  .hero{
    min-height: auto !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-rows: auto auto !important;
  }

  /* media becomes a full-width block AFTER text */
  .hero__media{
    position: relative !important;
    inset: auto !important;
    order: 2 !important;
    width: 100% !important;
    margin-top: 18px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #0B0B0F !important;
  }

  /* fixed editorial ratio so it never becomes "tiny" */
  .hero__media::before{
    content:"";
    display:block;
    padding-top: 62%; /* ~1.61:1 ratio */
  }

  .hero__media img,
  .hero__media video{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 20% !important; /* tune framing */
  }

  /* text block */
  .hero__inner{
    order: 1 !important;
    padding: 78px 0 0 !important; /* room under sticky header */
  }

  .hero__content{
    max-width: 92vw !important;
  }

  /* eyebrow bigger + clearer */
  .hero__eyebrow{
    font-size: 20px !important;
    letter-spacing: 0.22em !important;
    margin-bottom: 14px !important;
  }

  /* tighten headline so it feels intentional */
  .hero .h0{
    font-size: clamp(44px, 12vw, 60px) !important;
    line-height: 1.02 !important;
  }

  .hero .p{
    margin-top: 14px !important;
    max-width: 34ch !important;
  }

  /* veil should cover media block only */
  .hero__veil{
    position:absolute !important;
    inset:0 !important;
    opacity: 0.9 !important;
  }
}
/* Brand eyebrow — Horizon */
.hero__eyebrow{
  font-family: "Horizon", Montserrat, system-ui, sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #F5F5F7;
  opacity: .95;
  line-height: 1;
}
/* Header logo — Horizon */
.logo-text{
  font-family: "Horizon", Montserrat, system-ui, sans-serif !important;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #F5F5F7;
  line-height: 1;
}
/* Brand split animation */
.brand-split{
  display:inline-flex;
  gap:0.06em;
}

.brand-split span{
  display:inline-block;
  transform: translateY(14px);
  opacity: 0;
  filter: blur(6px);
  transition:
    transform 700ms var(--ease),
    opacity 700ms var(--ease),
    filter 700ms var(--ease);
}

body.loaded .brand-split span{
  transform: none;
  opacity: 1;
  filter: blur(0);
}

.brand-split span:nth-child(1){ transition-delay: 40ms; }
.brand-split span:nth-child(2){ transition-delay: 80ms; }
.brand-split span:nth-child(3){ transition-delay: 120ms; }
.brand-split span:nth-child(4){ transition-delay: 160ms; }
.brand-split span:nth-child(5){ transition-delay: 200ms; }
.brand-split span:nth-child(6){ transition-delay: 240ms; }
.brand-split span:nth-child(7){ transition-delay: 280ms; }
.brand-split span:nth-child(8){ transition-delay: 320ms; }
.brand-split span:nth-child(9){ transition-delay: 360ms; }
.hero .h0{
  animation: heroTitleIn 900ms var(--ease) both;
}
/* UPGRADE 2 — Optical kerning for Horizon */
.hero__eyebrow,
.logo-text{
  letter-spacing: 0.22em;
}



@keyframes heroTitleIn{
  from{
    opacity: 0;
    transform: translateY(18px);
  }
  to{
    opacity: 1;
    transform: none;
  }
}
.logo-text:hover span,
.hero__eyebrow:hover span{
  transform: translateY(-1px);
}
/* reveal utility */
[data-reveal]{
  opacity: 0;
  transform: translateY(var(--y-2));
  filter: blur(var(--blur-1));
  transition:
    opacity var(--dur-4) var(--ease-out),
    transform var(--dur-4) var(--ease-out),
    filter var(--dur-4) var(--ease-out);
  will-change: opacity, transform, filter;
}
[data-reveal][data-reveal-state="in"]{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* optional: stagger support */
[data-reveal][data-reveal-delay="1"]{ transition-delay: 60ms; }
[data-reveal][data-reveal-delay="2"]{ transition-delay: 120ms; }
[data-reveal][data-reveal-delay="3"]{ transition-delay: 180ms; }
/* premium button interaction */
.btn, .button, [data-btn]{
  transform: translateZ(0);
  transition:
    transform var(--dur-2) var(--ease-out),
    background-color var(--dur-2) var(--ease-out),
    border-color var(--dur-2) var(--ease-out),
    color var(--dur-2) var(--ease-out),
    box-shadow var(--dur-2) var(--ease-out),
    opacity var(--dur-2) var(--ease-out);
  will-change: transform;
}

@media (hover:hover){
  .btn:hover, .button:hover, [data-btn]:hover{
    transform: translateY(-1px);
  }
}

.btn:active, .button:active, [data-btn]:active{
  transform: translateY(0px) scale(.985);
}

.btn:focus-visible, .button:focus-visible, [data-btn]:focus-visible{
  outline: none;
  box-shadow: var(--focus);
}
/* menu sheet base */
.menu-sheet[hidden]{ display: none; }

.menu-sheet{
  position: fixed;
  inset: 0;
  z-index: 1000;
}

/* backdrop */
.menu-sheet__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity var(--dur-4, 420ms) var(--ease-out, cubic-bezier(.16,1,.3,1));
  will-change: opacity;
}

/* panel (top-sheet) */
.menu-sheet__panel{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  background: rgba(10,10,12,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transform: translateY(-14px);
  opacity: 0;

  transition:
    transform var(--dur-4, 420ms) var(--ease-out, cubic-bezier(.16,1,.3,1)),
    opacity   var(--dur-3, 260ms) var(--ease-out, cubic-bezier(.16,1,.3,1));
  will-change: transform, opacity;

  border-bottom: 1px solid rgba(245,245,247,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);

  max-height: 88vh;
  overflow: auto;
}

/* links stagger in */
.menu-sheet__link,
.menu-sheet__meta [data-sheet-item]{
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--dur-3, 260ms) var(--ease-out, cubic-bezier(.16,1,.3,1)),
    transform var(--dur-3, 260ms) var(--ease-out, cubic-bezier(.16,1,.3,1));
  will-change: opacity, transform;
}

/* open state */
.menu-sheet.is-open .menu-sheet__backdrop{ opacity: 1; }
.menu-sheet.is-open .menu-sheet__panel{ transform: translateY(0); opacity: 1; }
.menu-sheet.is-open [data-sheet-item]{ opacity: 1; transform: translateY(0); }

/* stagger delays */
.menu-sheet.is-open [data-sheet-item]:nth-child(1){ transition-delay: 70ms; }
.menu-sheet.is-open [data-sheet-item]:nth-child(2){ transition-delay: 110ms; }
.menu-sheet.is-open [data-sheet-item]:nth-child(3){ transition-delay: 150ms; }
.menu-sheet.is-open [data-sheet-item]:nth-child(4){ transition-delay: 190ms; }
.menu-sheet.is-open [data-sheet-item]:nth-child(5){ transition-delay: 230ms; }

@media (prefers-reduced-motion: reduce){
  .menu-sheet__backdrop, .menu-sheet__panel, .menu-sheet__link{ transition: none !important; }
}
/* ===== Menu Sheet Animation Overrides (paste at end) ===== */

/* Make sure hidden truly hides it */
.menu-sheet[hidden] { display: none !important; }

/* Full-screen container */
.menu-sheet {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

/* Backdrop starts invisible */
.menu-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 420ms cubic-bezier(.16,1,.3,1);
}

/* Panel starts "closed": slightly up + transparent */
.menu-sheet__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  background: rgba(10,10,12,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transform: translateY(-16px);
  opacity: 0;

  transition:
    transform 420ms cubic-bezier(.16,1,.3,1),
    opacity 260ms cubic-bezier(.16,1,.3,1);

  max-height: 88vh;
  overflow-y: auto;
}

/* Items start hidden */
.menu-sheet [data-sheet-item] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 260ms cubic-bezier(.16,1,.3,1),
    transform 260ms cubic-bezier(.16,1,.3,1);
}

/* OPEN state */
.menu-sheet.is-open .menu-sheet__backdrop { opacity: 1; }

.menu-sheet.is-open .menu-sheet__panel {
  transform: translateY(0);
  opacity: 1;
}

.menu-sheet.is-open [data-sheet-item] {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger (works for links + cart button if it has data-sheet-item) */
.menu-sheet.is-open [data-sheet-item]:nth-child(1) { transition-delay: 70ms; }
.menu-sheet.is-open [data-sheet-item]:nth-child(2) { transition-delay: 110ms; }
.menu-sheet.is-open [data-sheet-item]:nth-child(3) { transition-delay: 150ms; }
.menu-sheet.is-open [data-sheet-item]:nth-child(4) { transition-delay: 190ms; }
.menu-sheet.is-open [data-sheet-item]:nth-child(5) { transition-delay: 230ms; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .menu-sheet__backdrop,
  .menu-sheet__panel,
  .menu-sheet [data-sheet-item] {
    transition: none !important;
  }
}
/* ===== Menu sheet: final animation (paste at very end) ===== */

#MenuSheet[hidden] { display: none !important; }

#MenuSheet {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

#MenuSheet .menu-sheet__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity 420ms cubic-bezier(.16,1,.3,1);
}

#MenuSheet .menu-sheet__panel{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  background: rgba(10,10,12,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transform: translateY(-16px);
  opacity: 0;

  transition:
    transform 420ms cubic-bezier(.16,1,.3,1),
    opacity 260ms cubic-bezier(.16,1,.3,1);

  max-height: 88vh;
  overflow-y: auto;
  border-bottom: 1px solid rgba(245,245,247,.10);
}

/* open state */
#MenuSheet.is-open .menu-sheet__backdrop{ opacity: 1; }
#MenuSheet.is-open .menu-sheet__panel{ transform: translateY(0); opacity: 1; }

/* scroll lock */
html.is-locked, body.is-locked{ overflow: hidden; }

@media (prefers-reduced-motion: reduce){
  #MenuSheet .menu-sheet__backdrop,
  #MenuSheet .menu-sheet__panel{
    transition: none !important;
  }
}
.cart { padding: 32px 0; }
.cart__title { color: #F5F5F7; letter-spacing: .02em; }
.cart__empty { color: rgba(245,245,247,.72); margin: 12px 0 18px; }

.cart__items { display: grid; gap: 16px; margin-top: 18px; }
.cart__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(245,245,247,.10);
  border-radius: 14px;
  background: rgba(10,10,12,.55);
}
.cart__product { color: #F5F5F7; text-decoration: none; display: inline-block; margin-bottom: 6px; }
.cart__variant, .cart__price { color: rgba(245,245,247,.75); font-size: 14px; }
.cart__qty input{
  margin-top: 10px;
  width: 90px;
  background: rgba(0,0,0,.25);
  color: #F5F5F7;
  border: 1px solid rgba(245,245,247,.14);
  border-radius: 10px;
  padding: 10px 12px;
}
.cart__remove{ display:inline-block; margin-top:10px; color: rgba(245,245,247,.60); text-decoration:none; }
.cart__summary{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(245,245,247,.10);
  display: grid;
  gap: 12px;
}
.cart__row{ display:flex; justify-content:space-between; color:#F5F5F7; }
/* Brand spacing: PROJECT · IV */
.brand-split {
  display: inline-flex;
  align-items: center;
}

.brand-gap {
  width: 0.28em; /* THIS IS THE GAP — adjust slightly if needed */
  display: inline-block;
  flex-shrink: 0;
}
.logo-text,
.hero-eyebrow,
.ui-label {
  letter-spacing: 0.12em;
}
/* ===== Brand lockup: consistent PROJECT · IV spacing ===== */

:root{
  --brand-track: 0.12em;  /* spacing between letters */
  --brand-gap:   0.18em;  /* spacing between PROJECT and IV (smaller than before) */
}

.brand-lockup{
  display: inline-flex;
  align-items: center;
}

.brand-word{
  display: inline-flex;
}

/* letter spacing for split spans */
.brand-word > span{
  display: inline-block;
  margin-right: var(--brand-track);
}

/* remove extra space after the last letter in each word */
.brand-word > span:last-child{
  margin-right: 0;
}

/* the word gap */
.brand-gap{
  width: var(--brand-gap);
  display: inline-block;
  flex: 0 0 auto;
}
/* Horizon only on brand text */
.brand-horizon,
.brand-horizon * {
  font-family: Horizon, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 500;
  font-style: normal;
}
.brand-horizon,
.brand-horizon * {
  font-family: "Horizon", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 500 !important;
  font-style: normal !important;
}
/* ===== FORCE Horizon on the new brand lockup structure ===== */
.brand-lockup,
.brand-lockup * {
  font-family: "Horizon" !important;
  font-style: normal !important;
  font-weight: 400 !important;
}
/* ===== Luxury hero typography tuning ===== */

/* Headline */
.hero h1,
.banner h1,
.image-banner h1,
.hero__heading,
.banner__heading {
  font-weight: 400;
  line-height: 0.9;            /* tighter, more editorial */
  letter-spacing: -0.01em;      /* subtle luxury tightening */
  margin-bottom: 0.35em;        /* intentional space to subhead */
}

/* Subheading */
.hero p,
.banner p,
.image-banner p,
.hero__text,
.banner__text {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(245,245,247,0.75);
  max-width: 36ch;              /* prevents overly wide lines */
  margin-top: 0;
}

/* Ensure Shopify editor spacing doesn’t interfere */
.hero *:first-child {
  margin-top: 0;
}
.hero-title + p,
.hero-title + .hero__text,
.hero-title + .banner__text{
  margin-top: 0.35em !important;
}
/* ===== Premium Hero System ===== */
:root{
  --hero-left: clamp(20px, 4vw, 64px);
  --hero-bottom: clamp(28px, 6vh, 80px);
  --hero-max: 18ch;              /* controls headline line breaks */
  --sub-max: 42ch;
  --stack-1: 10px;
  --stack-2: 16px;
  --stack-3: 22px;
}

/* Position the text column consistently */
.hero-copy{
  position: absolute;            /* if your hero is positioned; otherwise remove */
  left: var(--hero-left);
  bottom: var(--hero-bottom);
  max-width: min(720px, 92vw);
  display: grid;
  gap: var(--stack-2);
  z-index: 2;
}

/* Eyebrow (tight + premium) */
.hero-eyebrow{
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.75);
  line-height: 1;
}

/* Headline: controlled width + optical rhythm */
.hero-title{
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: var(--hero-max);
  margin: 0;
}

/* Subhead: one calm measure */
.hero-subhead{
  font-size: 15px;
  line-height: 1.45;
  color: rgba(245,245,247,0.78);
  max-width: var(--sub-max);
  margin: 0;
}

/* Button row aligns to same left edge */
.hero-actions{
  display: flex;
  gap: 10px;
  margin-top: var(--stack-1);
}
.btn{
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms cubic-bezier(.16,1,.3,1), opacity 220ms cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

@media (hover:hover){
  .btn:hover{ transform: translateY(-1px); }
}

.btn:active{ transform: translateY(0) scale(.985); }

.btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 1px rgba(245,245,247,.20), 0 0 0 4px rgba(245,245,247,.10);
}
/* Premium image treatment */
.hero-media{
  filter: contrast(1.02) saturate(0.92);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(1200px 700px at 20% 80%, rgba(0,0,0,.55), rgba(0,0,0,.15) 55%, rgba(0,0,0,0) 75%);
  pointer-events:none;
}
/* Premium image treatment */
.hero-media{
  filter: contrast(1.02) saturate(0.92);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(1200px 700px at 20% 80%, rgba(0,0,0,.55), rgba(0,0,0,.15) 55%, rgba(0,0,0,0) 75%);
  pointer-events:none;
}
/* ===============================
   PREMIUM HERO TEXT SYSTEM
   =============================== */

/* This is the single text column */
.hero-copy {
  position: absolute;
  left: clamp(20px, 4vw, 72px);
  bottom: clamp(56px, 12vh, 140px);

  display: grid;
  gap: 14px;

  max-width: 18ch; /* controls line breaks */
  z-index: 2;
}

/* Eyebrow */
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.7);
  line-height: 1;
}

/* Headline — THIS is the main fix */
.hero-copy h1,
.hero-copy .banner__heading {
  font-size: clamp(56px, 7.5vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
}

/* Subheading */
.hero-copy p,
.hero-copy .banner__text {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(245,245,247,0.75);
  margin: 0;
  max-width: 40ch;
}
/* ===== FORCE HERO SCALE (override) ===== */
.hero-copy{
  bottom: clamp(56px, 12vh, 140px) !important;
  left: clamp(20px, 4vw, 72px) !important;
  max-width: 18ch !important;
}

.hero-copy .hero-eyebrow{
  font-size: 12px !important;
  letter-spacing: 0.32em !important;
}

.hero-copy h1,
.hero-copy .banner__heading,
.hero-copy .hero-title{
  font-size: clamp(56px, 7.5vw, 104px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.02em !important;
  font-weight: 400 !important;
  margin: 0 !important;
}

.hero-copy p,
.hero-copy .banner__text,
.hero-copy .hero-subhead{
  font-size: 15px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  color: rgba(245,245,247,0.75) !important;
}
/* ===== Hero layout (clean + premium) ===== */

.hero { position: relative; }

.hero__media { position: relative; }
.hero__media img,
.hero__media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__veil{
  position:absolute;
  inset:0;
  background: radial-gradient(1200px 700px at 18% 78%, rgba(0,0,0,.62), rgba(0,0,0,.18) 55%, rgba(0,0,0,0) 75%);
  pointer-events:none;
}

.hero__inner{
  position: relative;
}

.hero__content{
  position: relative;
  min-height: clamp(520px, 78vh, 820px);
}

/* the premium text column */
.hero-copy{
  position: absolute;
  left: clamp(20px, 4vw, 72px);
  bottom: clamp(56px, 12vh, 140px);
  display: grid;
  gap: 14px;
  max-width: 18ch;
  z-index: 2;
}

/* eyebrow */
.hero-eyebrow{
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,245,247,.72);
  line-height: 1;
}

/* headline */
.hero-title{
  font-size: clamp(56px, 7.5vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
}

/* subhead */
.hero-subhead{
  font-size: 15px;
  line-height: 1.45;
  color: rgba(245,245,247,.78);
  margin: 0;
  max-width: 42ch;
}

/* actions */
.hero-actions{
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
/* Horizon only on the brand lockup */
.hero-eyebrow .brand-lockup,
.hero-eyebrow .brand-lockup *{
  font-family: "Horizon" !important;
  font-weight: 400 !important;
}
/* ===== HERO LAYER FIX (text above media) ===== */
.hero{
  position: relative;
  isolation: isolate; /* creates safe stacking context */
}

/* media is the bottom layer */
.hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* make sure the image/video fills */
.hero__media img,
.hero__media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* veil stays above media but below text */
.hero__veil{
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* inner/text layer above everything */
.hero__inner{
  position: relative;
  z-index: 2;
}

/* ensure the hero has height */
.hero__content{
  min-height: clamp(520px, 78vh, 820px);
  position: relative;
}

/* your copy sits above */
.hero-copy{
  position: absolute;
  z-index: 3;
}

}


}

/* ===== PV Card: premium surface ===== */
.pv-featured-card{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10,10,12,.55);
  border: 1px solid rgba(245,245,247,.10);
  transform: translateZ(0);
  transition:
    transform 260ms cubic-bezier(.16,1,.3,1),
    border-color 260ms cubic-bezier(.16,1,.3,1),
    background-color 260ms cubic-bezier(.16,1,.3,1);
}

@media (hover:hover){
  .pv-featured-card:hover{
    transform: translateY(-4px);
    border-color: rgba(245,245,247,.18);
    background: rgba(10,10,12,.70);
  }
}

.pv-featured-card:active{
  transform: scale(.99);
}

.pv-featured-link{
  display: grid;
  gap: 0;
  color: inherit;
  text-decoration: none;
}

/* media */
.pv-featured-media-wrap{
  position: relative;
  aspect-ratio: 3 / 4;
  background: rgba(0,0,0,.25);
}

.pv-featured-media{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 420ms cubic-bezier(.16,1,.3,1);
}

.pv-featured-media-wrap.is-loaded .pv-featured-media{
  opacity: 1;
}

/* hover image */
.pv-featured-media--hover{
  position: absolute;
  inset: 0;
  opacity: 0;
}

@media (hover:hover){
  .pv-featured-card:hover .pv-featured-media--hover{
    opacity: 1;
  }
}

/* content */
.pv-featured-content{
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
}

.pv-featured-title{
  margin: 0;
  color: #F5F5F7;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-size: 14px;
}

.pv-featured-price{
  color: rgba(245,245,247,.78);
  font-size: 13px;
}

/* ===== Skeleton shimmer (subtle) ===== */
.skeleton{
  position: relative;
  overflow: hidden;
  background: rgba(245,245,247,.06);
}
.skeleton::after{
  content:"";
  position:absolute;
  inset:-40%;
  transform: translateX(-20%);
  background: linear-gradient(90deg, transparent, rgba(245,245,247,.08), transparent);
  animation: pv_shimmer 1.2s cubic-bezier(.16,1,.3,1) infinite;
}
@keyframes pv_shimmer{
  0%{ transform: translateX(-60%); }
  100%{ transform: translateX(60%); }
}
.pv-featured-media-wrap.is-loaded.skeleton::after{
  display:none;
}
/* ===== Hard stop horizontal scroll ===== */
html, body{
  width: 100%;
  overflow-x: hidden;
}
/* ===== Hero mobile layout fix ===== */
.hero{
  position: relative;
  overflow: hidden; /* prevents any child from causing sideways scroll */
}

/* Make media layer fill the hero */
.hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Ensure image/video covers the hero */
.hero__media img,
.hero__media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Keep content above media */
.hero__inner,
.hero__content{
  position: relative;
  z-index: 2;
}

/* Force a stable hero height (so image isn't "at the bottom") */
.hero__content{
  min-height: 92vh;
}

/* Text column: prevent it from exceeding viewport width */
.hero-copy{
  max-width: min(92vw, 20ch);
  left: 20px;
  right: 20px;        /* prevents overflow */
  bottom: 64px;
}

/* Mobile: smaller headline so it doesn't overflow */
@media (max-width: 560px){
  .hero-title{
    font-size: clamp(40px, 10vw, 54px);
    line-height: 0.92;
  }
  .hero-subhead{
    max-width: 34ch;
  }
}
/* ==========================
   HERO: MOBILE ONE-SCREEN MODE
   ========================== */

@media (max-width: 560px){

  /* Hero is exactly one screen */
  .hero{
    height: 100svh;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
  }

  /* Media fills the hero (so no blank area) */
  .hero__media{
    position: absolute;
    inset: 0;
    z-index: 0;
  }

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

  /* Content spans full height so we can anchor the copy */
  .hero__inner,
  .hero__content{
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 100%;
  }

  /* IMPORTANT: do NOT rely on bottom+left on mobile; use safe padding */
  .hero-copy{
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 84px;            /* lifts text above image edge */
    max-width: 100%;
  }

  /* Make the headline fit on screen */
  .hero-title{
    font-size: clamp(32px, 8.8vw, 48px)
    line-height: 0.95;
    letter-spacing: -0.02em;
    max-width: 14ch;         /* forces clean wrap */
    margin: 0;
  }

  /* Subhead fits and stays readable */
  .hero-subhead{
    font-size: 14px;
    line-height: 1.45;
    max-width: 32ch;
    margin: 0;
  }

  /* Eyebrow stays tight */
  .hero-eyebrow{
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  /* Buttons stay on-screen */
  .hero-actions{
    flex-wrap: wrap;
    gap: 10px;
  }
}
/* ==========================
   HERO MOBILE: FIX WORD BREAK + FULL BLEED MEDIA
   ========================== */
@media (max-width: 560px){

  /* One screen hero */
  .hero{
    height: 100svh;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
  }

  /* Media fills hero */
  .hero__media{
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
  }

  .hero__media img,
  .hero__media video{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  /* Content above media */
  .hero__inner,
  .hero__content{
    position: relative !important;
    z-index: 2 !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  /* Copy placement */
  .hero-copy{
    position: absolute !important;
    left: 18px !important;
    right: 18px !important;
    top: auto !important;
    bottom: 96px !important;
    max-width: 100% !important;
  }

  /* Headline: fit without breaking words */
  .hero-title{
    font-size: clamp(34px, 9.2vw, 50px) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.02em !important;

    max-width: 16ch !important;     /* controls wrap */
    white-space: normal !important;

    
    word-break: normal !important;     /* <-- stop splitting words */
    hyphens: none !important;          /* <-- no auto hyphenation */

    margin: 0 !important;
  }

  /* Subhead */
  .hero-subhead{
    font-size: 14px !important;
    line-height: 1.45 !important;
    max-width: 34ch !important;
    margin: 0 !important;
  }

  .hero-eyebrow{
    font-size: 11px !important;
    letter-spacing: 0.28em !important;
  }
}
/* ==========================
   HERO MOBILE: LOCK LEFT + CONTROL CROP
   ========================== */
@media (max-width: 560px){

  /* hero frame */
  .hero{
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  /* media fills but crop is controlled */
  .hero__media{
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
  }

  .hero__media img,
  .hero__media video{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 60% !important; /* move crop DOWN so faces/torso stay visible */
    display: block !important;
  }

  /* keep content above */
  .hero__inner,
  .hero__content{
    position: relative !important;
    z-index: 2 !important;
    height: 100% !important;
  }

  /* LOCK the text column so it never “drifts” */
  .hero-copy{
    position: absolute !important;
    left: 18px !important;
    bottom: 88px !important;

    right: auto !important;         /* important: stop stretching full width */
    width: min(84vw, 320px) !important;  /* fixed column feel */
    max-width: min(84vw, 320px) !important;

    display: grid !important;
    gap: 12px !important;
  }

  /* headline fits inside the column */
  .hero-title{
    font-size: clamp(34px, 9vw, 46px) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.02em !important;

    max-width: 100% !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    margin: 0 !impor
/* ==========================
   HERO MOBILE: FRAME + CLIP
   ========================== */
@media (max-width: 560px){

  /* Create a single framed hero area */
  .hero__content{
    height: 100svh !important;
    min-height: 100svh !important;
    position: relative !important;
  }

  /* Clip everything to the hero area */
  .hero__media{
    position: absolute !important;
    inset: 14px 14px 14px 14px !important; /* inner frame padding */
    border-radius: 22px !important;
    overflow: hidden !important;
    z-index: 0 !important;
  }

  /* Image fills the framed area (not the entire page) */
  .hero__media img,
  .hero__media video{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 62% !important;
    display: block !important;
  }

  /* Veil sits inside the same frame */
  .hero__veil{
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
  }

  /* Copy sits inside the frame, not outside it */
  .hero-copy{
    position: absolute !important;
    left: 34px !important;     /* 14px frame + 20px text inset */
    right: 34px !important;
    bottom: 110px !important;  /* lift above the bottom edge */
    z-index: 2 !important;

    width: auto !important;
    max-width: 320px !important;
  }

  /* Headline sizing + prevent overflow */
  .hero-title{
    font-size: clamp(32px, 8.6vw, 44px) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.02em !important;
    max-width: 100% !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .hero-subhead{
    font-size: 14px !important;
    max-width: 100% !important;
  }
}
/* ===== HERO TEXT: MOBILE FIX (wrap + fit) ===== */
@media (max-width: 560px){

  .hero-copy{
    left: 18px !important;
    right: auto !important;
    width: min(86vw, 320px) !important;
    max-width: min(86vw, 320px) !important;
  }

  .hero-title{
    font-size: clamp(34px, 9vw, 46px) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
    white-space: normal !important;


    /* ensure clean wrapping (no weird breaks) */
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .hero-subhead{
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    max-width: 32ch !important;
    color: rgba(245,245,247,.78) !important;
  }
}

/* ===== Password page: center and constrain form ===== */
.template-password main,
body.password main {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 48px 18px;
}

.template-password .password,
body.password .password {
  width: min(560px, 92vw);
  margin: 0 auto;
}

.template-password form,
body.password form {
  width: 100%;
}

.template-password .field,
body.password .field,
.template-password .field__input-wrapper,
body.password .field__input-wrapper {
  width: 100%;
}

.template-password input[type="email"],
.template-password input[type="password"],
body.password input[type="email"],
body.password input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  display: block;
}

.template-password button,
body.password button,
.template-password input[type="submit"],
body.password input[type="submit"] {
  width: 100%;
  display: block;
  box-sizing: border-box;
  margin-top: 14px;
}
/* ===== Password page: force one centered column ===== */
body.password,
.template-password{
  background: #F5F5F7;
}

body.password main,
.template-password main{
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 56px 18px;
}

/* the content column */
body.password .password-page,
body.password .password,
.template-password .password-page,
.template-password .password{
  width: min(520px, 92vw);
  margin: 0 auto;
  text-align: center;
}

/* force all forms in password page to the same width */
body.password form,
.template-password form{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* force all inputs/buttons to match */
body.password input[type="email"],
body.password input[type="password"],
body.password button,
body.password input[type="submit"],
.template-password input[type="email"],
.template-password input[type="password"],
.template-password button,
.template-password input[type="submit"]{
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* spacing */
body.password input[type="email"],
body.password input[type="password"],
.template-password input[type="email"],
.template-password input[type="password"]{
  margin-top: 8px !important;
}

body.password button,
body.password input[type="submit"],
.template-password button,
.template-password input[type="submit"]{
  margin-top: 14px !important;
}
/* ===== Header: remove separator dots ===== */
.site-header .nav a::before,
.site-header .nav a::after,
.site-header nav a::before,
.site-header nav a::after{
  content: none !important;
}

/* also remove list bullets if any */
.site-header .nav,
.site-header nav{
  list-style: none !important;
}
/* ==========================
   PASSWORD PAGE: CENTER + MATCH WIDTHS
   Targets your layout: body.projectiv-body + content_for_layout
   ========================== */

.projectiv-body main{
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 56px 18px;
}

/* Common Shopify password wrappers (covers most variants) */
.projectiv-body .password,
.projectiv-body .password-page,
.projectiv-body .password-main,
.projectiv-body .password__content,
.projectiv-body [class*="password"]{
  margin-left: auto;
  margin-right: auto;
}

/* One centered column for forms */
.projectiv-body form{
  width: min(520px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

/* Force all fields + buttons to same width */
.projectiv-body input[type="email"],
.projectiv-body input[type="password"],
.projectiv-body input[type="text"],
.projectiv-body button,
.projectiv-body input[type="submit"]{
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Clean vertical rhythm */
.projectiv-body input[type="email"],
.projectiv-body input[type="password"],
.projectiv-body input[type="text"]{
  margin-top: 8px !important;
}

.projectiv-body button,
.projectiv-body input[type="submit"]{
  margin-top: 14px !important;
}
/* ==========================
   PASSWORD PAGE: HARD CENTER FIX
   (email form + password form)
   ========================== */

/* Center the whole password content */
.projectiv-body main{
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 56px 18px;
}

/* The main password container Shopify uses */
.projectiv-body .password,
.projectiv-body .password__content,
.projectiv-body .password__wrapper,
.projectiv-body .password__form,
.projectiv-body .password__footer{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Lock a single column width */
.projectiv-body .password{
  width: min(520px, 92vw) !important;
}

/* Force both forms to use the same width */
.projectiv-body .password form,
.projectiv-body .password__form form,
.projectiv-body form[action*="password"],
.projectiv-body form[action*="contact"]{
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

/* Force every input + button to full width within the column */
.projectiv-body .password input,
.projectiv-body .password button,
.projectiv-body .password input[type="submit"]{
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* If Shopify wraps inputs in a field container, force it too */
.projectiv-body .password .field,
.projectiv-body .password .field__input-wrapper{
  width: 100% !important;
}

/* Clean spacing so nothing overlaps */
.projectiv-body .password input{
  margin-top: 8px !important;
}
.projectiv-body .password button,
.projectiv-body .password input[type="submit"]{
  margin-top: 14px !important;
}
/* ==========================
   PV PASSWORD: CENTER + MATCH WIDTHS
   ========================== */

.projectiv-body .pv-password{
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 56px 18px;
}

.projectiv-body .pv-password .container,
.projectiv-body .pv-password__inner,
.projectiv-body .pv-password__content{
  width: min(560px, 92vw);
  margin: 0 auto;
}

/* Every form in the password section uses the same column width */
.projectiv-body .pv-password form{
  width: min(520px, 92vw);
  margin: 0 auto;
}

/* Force ALL inputs/buttons to the same width */
.projectiv-body .pv-password input,
.projectiv-body .pv-password button,
.projectiv-body .pv-password input[type="submit"]{
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* If your password input is inside a smaller wrapper, override that too */
.projectiv-body .pv-password .field,
.projectiv-body .pv-password .field__input-wrapper,
.projectiv-body .pv-password .password-field,
.projectiv-body .pv-password .password-input-wrap{
  width: 100% !important;
  max-width: 100% !important;
}

/* Spacing */
.projectiv-body .pv-password input{ margin-top: 8px !important; }
.projectiv-body .pv-password button,
.projectiv-body .pv-password input[type="submit"]{ margin-top: 14px !important; }
/* ==========================
   Hide header ONLY on password page
   ========================== */

/* Shopify adds this automatically on password pages */
body.password .site-header,
body.password header,
.projectiv-body .site-header{
  display: none !important;
}
/* Hide header when pv-password section exists */
.pv-password ~ .site-header,
.pv-password + .site-header,
body:has(.pv-password) .site-header{
  display: none !important;
}
/* ==========================
   Password page fade-in (premium)
   ========================== */
.projectiv-body.is-loading main{
  opacity: 0;
  transform: translateY(8px);
}

.projectiv-body.is-loaded main{
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms cubic-bezier(.16,1,.3,1),
    transform 520ms cubic-bezier(.16,1,.3,1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .projectiv-body.is-loading main,
  .projectiv-body.is-loaded main{
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Header nav: uppercase labels */
.site-header .nav a,
.menu-sheet__link{
  text-transform: uppercase;
  letter-spacing: .16em;
}
/* About page typography + width */
.pv-about{
  padding: clamp(56px, 7vw, 120px) 0;
}

.pv-about .container{
  max-width: 980px;
}

.pv-about h1{
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 48px;
  margin: 0 0 18px;
}

.pv-about p{
  max-width: 68ch;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245,245,247,.82);
  margin: 0 0 18px;
}

.pv-about p strong{
  color: rgba(245,245,247,1);
}

.pv-about em{
  color: rgba(245,245,247,.92);
}
/* HARD FORCE ABOUT TITLE */
.pv-about-title,
.pv-about h1,
body .pv-about h1{
  text-transform: uppercase !important;
  letter-spacing: .22em !important;
}
/* HARD FORCE HEADER NAV CAPS */
.site-header a,
.site-header nav a,
.menu-sheet__link{
  text-transform: uppercase !important;
  letter-spacing: .16em;
}
/* Restore desktop main menu in header */
.site-header .nav{
  display: flex !important;
  gap: 22px;
  align-items: center;
}
.site-header .nav a{
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  color: rgba(245,245,247,.78);
  padding: 10px 0;
  transition: color 180ms cubic-bezier(.16,1,.3,1);
}

.site-header .nav a:hover{
  color: rgba(245,245,247,1);
}
/* PV product grid: force proper columns */

}

 }
}

/* Make cards fill the grid cell */
.pv-featured-card,
.pv-featured-link{
  display: block;
  width: 100%;
}
/* Remove accidental forced tall sections */
.hero,
.pv-collection-block,
.pv-about,
main{
  min-height: auto !important;
}

/* Kill stray bottom spacing */
.pv-collection-block{
  padding-bottom: clamp(48px, 6vw, 96px) !important;
  margin-bottom: 0 !important;
}

body, main{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* ===============================
   FORM CONTROLS — CONTRAST FIX
================================ */

input,
select,
textarea{
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(245,245,247,0.18);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.2;
}

/* Placeholder */
input::placeholder{
  color: rgba(245,245,247,0.45);
}

/* Focus state (premium, subtle) */
input:focus,
select:focus,
textarea:focus{
  outline: none;
  border-color: rgba(201,197,186,0.8);
  background: rgba(255,255,255,0.08);
}

/* Disabled inputs */
input:disabled,
select:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}
/* ===============================
   SELECT DROPDOWN MENU
================================ */

select option{
  background: #0F1117;
  color: #F5F5F7;
}

/* Selected option */
select option:checked{
  background: rgba(201,197,186,0.25);
  color: #F5F5F7;
}
/* ===============================
   ADD TO CART BUTTON STATES
================================ */

button,
.btn{
  color: var(--text);
}

/* Disabled add-to-cart */
button:disabled,
.btn:disabled{
  background: rgba(255,255,255,0.08);
  color: rgba(245,245,247,0.45);
  border: 1px solid rgba(245,245,247,0.12);
  cursor: not-allowed;
}
/* ===============================
   QUANTITY INPUT
================================ */

input[type="number"]{
  width: 88px;
  text-align: center;
  font-weight: 500;
}
/* ===============================
   INTERACTION POLISH
================================ */

select:hover,
input:hover{
  background: rgba(255,255,255,0.09);
}

button:not(:disabled):hover,
.btn:not(:disabled):hover{
  background: rgba(245,245,247,0.14);
}
/* ===============================
   ADD TO CART — HARD OVERRIDE
   (handles disabled, aria-disabled, and theme-specific classes)
================================ */

/* Common ATC selectors */
button[type="submit"],
.product-form button,
.product-form__submit,
.add-to-cart,
#AddToCart,
[name="add"],
.shopify-payment-button__button{
  background: rgba(255,255,255,0.10) !important;
  color: rgba(245,245,247,0.92) !important;
  border: 1px solid rgba(245,245,247,0.16) !important;
}

/* Disabled states (Shopify themes vary) */
button[disabled],
button:disabled,
[aria-disabled="true"],
.is-disabled,
.disabled,
button[disabled] *,
button:disabled *{
  cursor: not-allowed !important;
}

/* Specifically style disabled ATC */
button[type="submit"][disabled],
button[type="submit"]:disabled,
.product-form__submit[disabled],
.product-form__submit:disabled,
.add-to-cart[disabled],
.add-to-cart:disabled,
#AddToCart[disabled],
#AddToCart:disabled,
[name="add"][disabled],
[name="add"]:disabled,
button[type="submit"][aria-disabled="true"],
.product-form__submit[aria-disabled="true"],
.add-to-cart[aria-disabled="true"],
#AddToCart[aria-disabled="true"],
[name="add"][aria-disabled="true"],
.shopify-payment-button__button[aria-disabled="true"]{
  background: rgba(255,255,255,0.06) !important;
  color: rgba(245,245,247,0.45) !important;
  border-color: rgba(245,245,247,0.10) !important;
  opacity: 1 !important; /* keep it readable */
}

/* Enabled hover */
button[type="submit"]:not([disabled]):not([aria-disabled="true"]):hover,
.product-form__submit:not([disabled]):not([aria-disabled="true"]):hover,
.add-to-cart:not([disabled]):not([aria-disabled="true"]):hover,
#AddToCart:not([disabled]):not([aria-disabled="true"]):hover,
[name="add"]:not([disabled]):not([aria-disabled="true"]):hover{
  background: rgba(255,255,255,0.14) !important;
  border-color: rgba(245,245,247,0.20) !important;
}
/* If ATC is a link */
a.product-form__submit,
a.add-to-cart,
a[name="add"]{
  background: rgba(255,255,255,0.10) !important;
  color: rgba(245,245,247,0.92) !important;
  border: 1px solid rgba(245,245,247,0.16) !important;
}
a.product-form__submit[aria-disabled="true"],
a.add-to-cart[aria-disabled="true"],
a[name="add"][aria-disabled="true"]{
  background: rgba(255,255,255,0.06) !important;
  color: rgba(245,245,247,0.45) !important;
  border-color: rgba(245,245,247,0.10) !important;
  pointer-events: none !important;
}
/* ===============================
   PV BUTTONS — ADD TO CART VISIBILITY
================================ */

/* Default primary button */
.pv-btn.pv-btn-primary{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,0.12);
  color: rgba(245,245,247,0.95);
  border: 1px solid rgba(245,245,247,0.18);

  transition: background 360ms cubic-bezier(.16,1,.3,1),
              border-color 360ms cubic-bezier(.16,1,.3,1),
              transform 180ms cubic-bezier(.16,1,.3,1);
}

.pv-btn.pv-btn-primary:hover{
  background: rgba(255,255,255,0.16);
  border-color: rgba(245,245,247,0.24);
}

.pv-btn.pv-btn-primary:active{
  transform: scale(0.99);
}

/* Disabled states (covers multiple theme patterns) */
.pv-btn.pv-btn-primary:disabled,
.pv-btn.pv-btn-primary[disabled],
.pv-btn.pv-btn-primary[aria-disabled="true"],
.pv-btn.pv-btn-primary.is-disabled,
.pv-btn.pv-btn-primary.disabled{
  background: rgba(255,255,255,0.06) !important;
  color: rgba(245,245,247,0.45) !important;
  border-color: rgba(245,245,247,0.10) !important;
  opacity: 1 !important;              /* keep readable */
  cursor: not-allowed !important;
  transform: none !important;
}
/* ===============================
   PV BUTTONS — GLOBAL RESET + PRIMARY
================================ */

/* Remove browser default styling */
button{
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
}

/* Base PV button */
.pv-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 18px;
  border-radius: 999px;

  border: 1px solid rgba(245,245,247,.16);
  background: rgba(255,255,255,.08);

  color: rgba(245,245,247,.92);
  letter-spacing: .02em;

  transition:
    transform var(--dur-1) var(--ease-out),
    background var(--dur-2) var(--ease-out),
    border-color var(--dur-2) var(--ease-out);
}

.pv-btn:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(245,245,247,.22);
}

.pv-btn:active{
  transform: scale(.99);
}

/* Primary */
.pv-btn-primary{
  background: linear-gradient(180deg, rgba(245,245,247,.16), rgba(245,245,247,.10));
  border-color: rgba(245,245,247,.20);
}

/* Disabled */
.pv-btn:disabled,
.pv-btn[disabled],
.pv-btn[aria-disabled="true"],
.pv-btn.is-disabled,
.pv-btn.disabled{
  background: rgba(255,255,255,.05) !important;
  border-color: rgba(245,245,247,.10) !important;
  color: rgba(245,245,247,.45) !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
  transform: none !important;
}
/* ===============================
   SELECT / DROPDOWN CONTRAST
================================ */

select{
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(245,245,247,.16);
  color: rgba(245,245,247,.92);
  padding: 14px 44px 14px 16px;
  border-radius: 12px;
}

/* option list */
select option{
  background: #0F1117;
  color: #F5F5F7;
}
/* =========================================================
   FORCE BUTTON + SELECT STYLING (PV)
   Put this at the VERY BOTTOM of base.css
========================================================= */

/* Reset browser default button styling */
button{
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  font: inherit !important;
  color: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
  line-height: inherit !important;
}

/* PV base button */
.pv-btn{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;

  padding: 14px 18px !important;
  border-radius: 999px !important;

  border: 1px solid rgba(245,245,247,.16) !important;
  background: rgba(255,255,255,.10) !important;

  color: rgba(245,245,247,.92) !important;
  font-size: 13px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;

  transition: background 360ms cubic-bezier(.16,1,.3,1),
              border-color 360ms cubic-bezier(.16,1,.3,1),
              transform 180ms cubic-bezier(.16,1,.3,1) !important;
}

.pv-btn:hover{
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(245,245,247,.22) !important;
}

.pv-btn:active{
  transform: scale(.99) !important;
}

/* PV primary button */
.pv-btn-primary{
  background: linear-gradient(180deg, rgba(245,245,247,.16), rgba(245,245,247,.10)) !important;
  border-color: rgba(245,245,247,.20) !important;
}

/* Disabled state */
.pv-btn:disabled,
.pv-btn[disabled],
.pv-btn[aria-disabled="true"],
.pv-btn.is-disabled,
.pv-btn.disabled{
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(245,245,247,.10) !important;
  color: rgba(245,245,247,.45) !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* Select/dropdown contrast */
select{
  background: rgba(255,255,255,.10) !important;
  color: rgba(245,245,247,.92) !important;
  border: 1px solid rgba(245,245,247,.16) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
}

select option{
  background: #0F1117 !important;
  color: #F5F5F7 !important;
}
/* ===============================
   PRODUCT GRID (CANONICAL)
================================ */

.pv-collection-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 640px){
  .pv-collection-grid{
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   PV VARIANT PICKER (Swatches + Size Pills)
========================================================= */

.pv-variant{
  display: grid;
  gap: 18px;
  margin: 18px 0 18px;
}

.pv-variant__group{
  display: grid;
  gap: 10px;
}

.pv-variant__label{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,245,247,.55);
}

.pv-variant__value{
  color: rgba(245,245,247,.86);
  letter-spacing: .08em;
}

/* Buttons row */
.pv-variant__row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Size pills */
.pv-pill{
  appearance: none;
  border: 1px solid rgba(245,245,247,.14);
  background: rgba(255,255,255,.06);
  color: rgba(245,245,247,.90);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform 180ms cubic-bezier(.16,1,.3,1),
              background 260ms cubic-bezier(.16,1,.3,1),
              border-color 260ms cubic-bezier(.16,1,.3,1);
}

.pv-pill:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(245,245,247,.22);
}

.pv-pill[aria-pressed="true"]{
  background: rgba(245,245,247,.12);
  border-color: rgba(201,197,186,.55);
}

.pv-pill:active{ transform: scale(.99); }

.pv-pill.is-unavailable{
  opacity: .35;
  cursor: not-allowed;
}

/* Color swatches */
.pv-swatch{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(245,245,247,.18);
  background: rgba(255,255,255,.06);
  position: relative;
  transition: transform 180ms cubic-bezier(.16,1,.3,1),
              border-color 260ms cubic-bezier(.16,1,.3,1);
}

.pv-swatch:hover{
  border-color: rgba(245,245,247,.30);
}

.pv-swatch[aria-pressed="true"]{
  border-color: rgba(201,197,186,.75);
}

.pv-swatch::after{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 999px;
  background: var(--swatch, rgba(245,245,247,.20));
}

.pv-swatch.is-unavailable{
  opacity: .35;
  cursor: not-allowed;
}

/* Hide native selects but keep them for Shopify logic */
.pv-native-select{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}
/* Strong selected state */
.pv-pill[aria-pressed="true"]{
  background: rgba(245,245,247,.16) !important;
  border-color: rgba(201,197,186,.85) !important;
  color: rgba(245,245,247,.98) !important;
}

.pv-swatch[aria-pressed="true"]{
  border-color: rgba(201,197,186,.95) !important;
  box-shadow: 0 0 0 3px rgba(201,197,186,.20) !important;
}
/* PV Variant Picker (dark luxury UI) */
.pv-variant-picker {
  margin-top: 18px;
}

.pv-variant-option {
  margin-top: 18px;
  border: 0;
  padding: 0;
}

.pv-variant-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.78);
  margin-bottom: 10px;
}

.pv-variant-label__value {
  color: rgba(245,245,247,0.92);
}

.pv-variant-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Hide radios but keep accessible */
.pv-variant-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Shared pill */
.pv-variant-pill {
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 40px;
  padding: 10px 14px;

  border-radius: 999px;
  border: 1px solid rgba(245,245,247,0.16);
  background: rgba(11,12,15,0.65);

  color: rgba(245,245,247,0.90);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;

  transition: transform 180ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.pv-variant-pill:hover {
  border-color: rgba(245,245,247,0.30);
  transform: translateY(-1px);
}

/* Selected state (JS adds .is-selected to the label) */
.pv-variant-pill.is-selected {
  border-color: rgba(245,245,247,0.62);
  background: rgba(245,245,247,0.08);
}
/* Selected state (CSS-only fallback: works even if JS fails) */
.pv-variant-input:checked + .pv-variant-pill {
  border-color: rgba(245,245,247,0.62);
  background: rgba(245,245,247,0.08);
}

/* Focus ring for keyboard users */
.pv-variant-input:focus-visible + .pv-variant-pill {
  outline: 2px solid rgba(245,245,247,0.65);
  outline-offset: 2px;
}

/* Swatches */
.pv-variant-swatch {
  padding-left: 12px;
  padding-right: 14px;
}

.pv-variant-swatch__chip {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(245,245,247,0.22);
  background: rgba(245,245,247,0.16);
  display: inline-block;
}

/* When selected, chip pops a bit */
.pv-variant-pill.is-selected .pv-variant-swatch__chip {
  border-color: rgba(245,245,247,0.55);
  background: rgba(245,245,247,0.28);
}
.pv-variant-input:checked + .pv-variant-pill .pv-variant-swatch__chip {
  border-color: rgba(245,245,247,0.55);
  background: rgba(245,245,247,0.28);
}
/* PV Home Hero: prevent floating/offset text from global styles */
.pv-home-hero {
  position: relative;
  overflow: hidden;
}

.pv-home-hero .pv-hero__media,
.pv-home-hero .pv-hero-media,
.pv-home-hero .pv-hero__image,
.pv-home-hero img,
.pv-home-hero video {
  display: block;
}

.pv-home-hero .pv-hero__overlay,
.pv-home-hero .pv-hero-overlay,
.pv-home-hero .pv-hero__content,
.pv-home-hero .pv-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 72px;
  pointer-events: none;
  transform: none;
}

/* Typography reset only inside hero */
.pv-home-hero h1,
.pv-home-hero h2,
.pv-home-hero p {
  margin: 0;
  padding: 0;
  transform: none;
  position: relative;
  line-height: 1.08;
}

.pv-home-hero p {
  line-height: 1.35;
}

/* If you have an inner stack wrapper for text, stabilize spacing */
.pv-home-hero .pv-hero__stack,
.pv-home-hero .pv-hero-stack,
.pv-home-hero .pv-hero__text,
.pv-home-hero .pv-hero-text {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

/* Responsive padding */
@media (max-width: 900px) {
  .pv-home-hero .pv-hero__overlay,
  .pv-home-hero .pv-hero-overlay,
  .pv-home-hero .pv-hero__content,
  .pv-home-hero .pv-hero-content {
    padding: 36px;
  }
}
/* PV Home Hero: lock text overlay so it cannot drift */
.pv-home-hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
}

/* Media fills hero */
.pv-home-hero .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pv-home-hero .hero__media img,
.pv-home-hero .hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Optional veil stays above media */
.pv-home-hero .hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Text overlay pinned */
.pv-home-hero .hero__inner {
  position: relative;
  z-index: 2;
  min-height: 72vh;
  display: flex;
  align-items: flex-start;
}

/* If your .container sets weird things, neutralize it only here */
.pv-home-hero .container {
  width: 100%;
}

/* Content positioning */
.pv-home-hero .hero__content {
  padding-top: 84px;
  max-width: 680px;
}

/* Kill unexpected margin collapse inside hero text only */
.pv-home-hero .hero-eyebrow,
.pv-home-hero .hero-title,
.pv-home-hero .hero-subhead {
  margin: 0;
}

.pv-home-hero .hero-copy {
  display: grid;
  gap: 14px;
}

/* Typography stability */
.pv-home-hero .hero-title {
  line-height: 1.05;
}

.pv-home-hero .hero-subhead {
  line-height: 1.35;
}

/* Mobile padding */
@media (max-width: 900px) {
  .pv-home-hero {
    min-height: 68vh;
  }
  .pv-home-hero .hero__inner {
    min-height: 68vh;
  }
  .pv-home-hero .hero__content {
    padding-top: 52px;
    max-width: 560px;
  }
}
/* PV FORCE HOME HERO OVERLAY (override everything) */
section.hero.pv-home-hero { position: relative !important; min-height: 72vh !important; overflow: hidden !important; }

section.hero.pv-home-hero .hero__media { position: absolute !important; inset: 0 !important; z-index: 0 !important; }

section.hero.pv-home-hero .hero__media img,
section.hero.pv-home-hero .hero__media video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

section.hero.pv-home-hero .hero__veil { position: absolute !important; inset: 0 !important; z-index: 1 !important; }

section.hero.pv-home-hero .hero__inner {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: flex-start !important;
}

section.hero.pv-home-hero .hero__content {
  padding-top: 84px !important;
  max-width: 680px !important;
}

section.hero.pv-home-hero .hero-copy { display: grid !important; gap: 14px !important; }

section.hero.pv-home-hero .hero-eyebrow,
section.hero.pv-home-hero .hero-title,
section.hero.pv-home-hero .hero-subhead { margin: 0 !important; }

@media (max-width: 900px) {
  section.hero.pv-home-hero { min-height: 68vh !important; }
  section.hero.pv-home-hero .hero__content { padding-top: 52px !important; max-width: 560px !important; }
}
/* PV Password page: force visible inputs + buttons on light background */
.pv-template-password {
  background: #ffffff;
  color: #0b0c0f;
}

.pv-template-password input[type="email"],
.pv-template-password input[type="password"],
.pv-template-password input[type="text"] {
  -webkit-appearance: none;
  appearance: none;
  background: #ffffff !important;
  color: #0b0c0f !important;
  border: 1px solid rgba(11,12,15,0.22) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

.pv-template-password input::placeholder {
  color: rgba(11,12,15,0.45) !important;
  opacity: 1 !important;
}

/* Make the password submit / join buttons visible and not transparent */
.pv-template-password button,
.pv-template-password input[type="submit"],
.pv-template-password .btn {
  -webkit-appearance: none;
  appearance: none;
  background: #0b0c0f !important;
  color: #f5f5f7 !important;
  border: 1px solid #0b0c0f !important;
  border-radius: 999px !important;
  padding: 12px 18px !important;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 1 !important;
  cursor: pointer;
}

.pv-template-password button:hover,
.pv-template-password input[type="submit"]:hover,
.pv-template-password .btn:hover {
  background: #11131a !important;
  border-color: #11131a !important;
}

/* Fix invisible focus state */
.pv-template-password input:focus-visible,
.pv-template-password button:focus-visible,
.pv-template-password input[type="submit"]:focus-visible {
  outline: 2px solid rgba(11,12,15,0.55) !important;
  outline-offset: 2px !important;
}
/* PV: remove accidental huge blank space caused by 100vh/min-height */
html, body { height: auto; }

/* If any section wrapper forces full viewport height, cap it */
.pv-home-hero,
.hero,
main,
#MainContent,
.shopify-section,
.shopify-section > section {
  min-height: 0 !important;
}

/* Common culprit: wrappers set to 100vh */
.pv-home-hero[style*="height:100vh"],
.pv-home-hero[style*="min-height:100vh"] {
  height: auto !important;
  min-height: 0 !important;
}

/* Product templates sometimes force min-height */
.template-product main,
.template-product #MainContent,
body.template-product main,
body.template-product #MainContent {
  min-height: 0 !important;
}

/* Large padding bottom culprits */
main,
#MainContent,
.shopify-section,
.shopify-section > section {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
/* PROJECT IV — Home hero sizing (sharper, more restrained) */
#pv-home-hero-{{ section.id }} {
  position: relative;
  overflow: hidden;

  /* Mobile first */
  height: 62vh;
  min-height: 440px;
}

/* Tablet */
@media (min-width: 768px) {
  #pv-home-hero-{{ section.id }} {
    height: 56vh;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  #pv-home-hero-{{ section.id }} {
    height: 50vh;
    max-height: 680px;
  }
}

/* Large desktop */
@media (min-width: 1440px) {
  #pv-home-hero-{{ section.id }} {
    height: 46vh;
  }
}
/* ======================================================
   PROJECT IV — Product color swatches (fix greyed state)
   ====================================================== */

/* Swatch buttons should NEVER inherit global button bg */
.product-form__input input[type="radio"] + label,
.pv-variant-picker input[type="radio"] + label {
  background: transparent !important;
  opacity: 1 !important;
}

/* Color swatch circle */
.product-form__input input[type="radio"] + label::before,
.pv-variant-picker input[type="radio"] + label::before {
  background-color: var(--swatch-color);
  border: 1px solid rgba(0,0,0,0.25);
}

/* Active / selected state */
.product-form__input input[type="radio"]:checked + label::before,
.pv-variant-picker input[type="radio"]:checked + label::before {
  border-color: #111111;
}
/* ======================================================
   PROJECT IV — Primary button color (final)
   ====================================================== */

.btn,
.btn--solid,
button.btn,
button.btn--solid {
  background-color: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* Hover (subtle, premium) */
.btn:hover,
.btn--solid:hover {
  background-color: #000000;
  border-color: #000000;
}
/* ======================================================
   PROJECT IV — Variant UI (scoped)
   Fix: color swatches greyed out
   ====================================================== */

.pv-variant-picker .pv-swatch,
.pv-variant-picker .pv-pill {
  opacity: 1 !important;
  filter: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 1px solid rgba(17,17,17,0.18) !important;
  color: #111111 !important;
}

/* Pill sizing */
.pv-variant-picker .pv-pill,
.pv-variant-picker .pv-swatch {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  line-height: 1 !important;
}

/* Swatch dot */
.pv-variant-picker .pv-swatch__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--pv-swatch);
  border: 1px solid rgba(17,17,17,0.30);
  flex: 0 0 14px;
}

/* Selected state (ring) */
.pv-variant-picker input[type="radio"]:checked + .pv-swatch,
.pv-variant-picker input[type="radio"]:checked + .pv-pill {
  border-color: #111111 !important;
}

/* Selected state: dot ring stronger */
.pv-variant-picker input[type="radio"]:checked + .pv-swatch .pv-swatch__dot {
  border-color: #111111;
}
/* ======================================================
   PROJECT IV — Primary buttons black
   ====================================================== */

.product-form__submit,
button.product-form__submit,
.shopify-payment-button__button,
.btn.btn--solid,
.btn--solid {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
}

.product-form__submit:hover,
.shopify-payment-button__button:hover,
.btn.btn--solid:hover,
.btn--solid:hover {
  background: #000000 !important;
  border-color: #000000 !important;
}
/* ======================================================
   PROJECT IV — Variant pills (pv-variant-picker)
   Fix greyed-out + stop global button styling bleed
   ====================================================== */

.pv-variant-picker input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* The pill itself (label) */
.pv-variant-picker input[type="radio"] + label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 10px 14px !important;
  min-height: 40px !important;

  border-radius: 999px !important;
  border: 1px solid rgba(17,17,17,0.22) !important;

  background: transparent !important;
  box-shadow: none !important;
  opacity: 1 !important;
  filter: none !important;

  color: #111111 !important;
  cursor: pointer;
  user-select: none;
}

/* Selected state */
.pv-variant-picker input[type="radio"]:checked + label {
  border-color: #111111 !important;
}

/* Disabled values (only if Shopify marks them disabled) */
.pv-variant-picker input[type="radio"]:disabled + label {
  opacity: 0.35 !important;
  cursor: not-allowed;
}
/* ======================================================
   PROJECT IV — Primary buttons black (exclude variant pills)
   ====================================================== */

button.btn,
a.btn,
.btn--solid,
button.product-form__submit,
.product-form__submit,
.shopify-payment-button__button {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

button.btn:hover,
a.btn:hover,
.btn--solid:hover,
button.product-form__submit:hover,
.product-form__submit:hover,
.shopify-payment-button__button:hover {
  background: #000000;
  border-color: #000000;
}

