:root{
  --bg:#090d10;
  --panel:#10161a;
  --panel2:#151c20;
  --text:#f1f4f5;
  --muted:#909ba0;
  --line:#29343a;
  --blue:#20c3df;
  --blue2:#8deeff;
  --max:1180px
}

*{
  box-sizing:border-box
}

html{
  scroll-behavior:smooth
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"DM Sans",sans-serif;
  line-height:1.5
}

body.modal-open{
  overflow:hidden
}

a{
  color:inherit;
  text-decoration:none
}

button,
input{
  font:inherit
}

button{
  cursor:pointer
}

.container{
  width:min(var(--max),calc(100% - 40px));
  margin:auto
}

/* =========================
 HEADER
========================= */

/* Price display */
/* =========================
   PRODUCT PRICE - SINGLE ROW
========================= */

.selected-price > span {
  flex: 0 0 auto;
  font: 600 10px "Space Grotesk";
  letter-spacing: .12em;
  color: #606c71;
}

/* Keep every price element on ONE line */
/* =========================
   PRODUCT PRICE - ORIGINAL & DISCOUNT ONLY
========================= */

.price-display {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

.price-original {
  font: 400 18px "Space Grotesk";
  color: #7f8b90;
  text-decoration: line-through;
}

.price-current {
  font: 700 28px "Space Grotesk";
  color: #20c3df;
}


.price-dim {
  font-size: 14px;
  color: #7f8b90;
  white-space: nowrap;
  margin-left: 0;
  order: 3;
}

.price-save {
  font-size: 13px;
  color: #4ade80;
  font-weight: 600;
  white-space: nowrap;
  order: 4;
}


/* =========================
   MAINTENANCE BANNER STYLES
========================= */

.maintenance-banner {
  background-color: #0d0f12; /* Dark background matching the header */
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.maintenance-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}

.maintenance-title {
  color: #ffcc00; /* Bright yellow */
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.maintenance-detail {
  color: #d0d8db; /* Clean light gray/white */
  font-size: 14px;
  font-weight: 400;
}
  /* Maintenance shipping styles */
  .maintenance-shipping-box {
    border-left: 3px solid #20c3df;
    padding-left: 16px;
    margin-bottom: 14px;
  }
  .maintenance-shipping-box p:first-child {
    color: #20c3df;
    font-weight: 600;
    font-size: 13px;
  }
  .shipping-status-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
  }
  .shipping-status-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .shipping-status-list li:last-child {
    border-bottom: none;
  }
  .shipping-footer-note {
    color: #7f8b90;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 12px;
    margin-top: 4px;
  }

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(9,13,16,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.07)
}

.nav-wrap{
  height:72px;
  display:flex;
  align-items:center;
  gap:30px
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font:700 18px "Space Grotesk";
  letter-spacing:.08em;
  margin-right:auto
}

.brand img{
  width:34px;
  height:34px;
  border-radius:50%;
  object-fit:cover
}

.desktop-nav{
  display:flex;
  gap:22px;
  font-size:13px;
  color:#bac3c7;
  align-items:center
}

.desktop-nav a:hover{
  color:var(--blue)
}

.header-actions{
  display:flex;
  align-items:center;
  gap:9px
}

.icon-btn,
.menu-btn{
  width:40px;
  height:40px;
  border:1px solid var(--line);
  background:#0d1215;
  color:white;
  border-radius:50%;
  font-size:22px
}

.order-pill{
  height:40px;
  border:1px solid var(--line);
  background:#0d1215;
  color:#e9eef0;
  border-radius:999px;
  padding:0 9px 0 15px;
  font-size:12px;
  font-weight:700
}

.order-pill b{
  display:inline-grid;
  place-items:center;
  min-width:22px;
  height:22px;
  background:var(--blue);
  color:#071014;
  border-radius:50%;
  margin-left:5px
}

.menu-btn{
  display:none
}

/* =========================
 MEGA MENU
========================= */

.mega{
  display:none;
  border-top:1px solid var(--line);
  background:#0d1215
}

.mega.open{
  display:block
}

.mega-grid{
  display:grid;
  grid-template-columns:1fr 1fr .8fr;
  gap:35px;
  padding:28px 0 32px
}

.mega-grid>div{
  display:flex;
  flex-direction:column;
  gap:8px
}

.mega-title,
.mega-feature>span{
  font:600 10px "Space Grotesk";
  letter-spacing:.14em;
  color:var(--blue);
  margin-bottom:6px
}

.mega-grid a{
  font-size:13px;
  color:#adb7bb
}

.mega-grid a:hover{
  color:white
}

.mega-feature{
  border-left:1px solid var(--line);
  padding-left:30px
}

.mega-feature strong{
  font:700 25px "Space Grotesk"
}

.mega-feature p{
  font-size:12px;
  color:#7d888c
}

.text-link{
  color:var(--blue)!important
}

.product-menu-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  padding:25px 0
}

.product-menu-grid a{
  border:1px solid var(--line);
  padding:20px;
  background:#11171a;
  border-radius:10px
}

.product-menu-grid strong,
.product-menu-grid span{
  display:block
}

.product-menu-grid span{
  font-size:12px;
  color:#7e898d;
  margin-top:5px
}

/* =========================
 HERO
========================= */

.hero{
  padding:105px 0 95px;
  border-bottom:1px solid var(--line)
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:80px;
  align-items:center
}

.eyebrow{
  font:600 10px "Space Grotesk";
  letter-spacing:.16em;
  color:#78848a;
  margin:0 0 16px
}

.hero h1,
.listing-head h1,
.product-detail h1,
.info-page h1{
  font:700 clamp(48px,6vw,82px) "Space Grotesk";
  line-height:.95;
  letter-spacing:-.065em;
  margin:0
}

.hero h1 em,
h2 em{
  font-style:normal;
  color:var(--blue)
}

.hero-copy{
  max-width:600px;
  color:#a0aaae;
  font-size:17px;
  margin:25px 0 28px
}

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap
}

.btn{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:700;
  font-size:13px
}

.btn-primary{
  background:var(--blue);
  border-color:var(--blue);
  color:#061014
}

.btn-ghost{
  background:transparent;
  color:white
}

.btn-ghost:hover{
  border-color:var(--blue);
  color:var(--blue)
}

.btn-light{
  background:white;
  color:#071014;
  border-color:white
}

.btn-wide{
  width:100%
}

.hero-note{
  margin-top:22px;
  font-size:12px;
  color:#69757a
}

.hero-note i{
  display:inline-block;
  width:7px;
  height:7px;
  background:var(--blue);
  border-radius:50%;
  margin-right:8px
}

.hero-card{
  padding:14px
}

.hero-mat{
  aspect-ratio:1.55;
  border:1px solid #344149;
  border-radius:18px;
  background:
      radial-gradient(circle at 60% 25%,rgba(32,195,223,.75),transparent 25%),
      radial-gradient(circle at 35% 55%,rgba(119,75,255,.7),transparent 18%),
      linear-gradient(135deg,#20282e,#0c1012);
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 35px 80px rgba(0,0,0,.45)
}

.hero-mat span,
.hero-mat small{
  font:600 9px "Space Grotesk";
  letter-spacing:.14em;
  color:#94a0a5
}

.hero-mat strong{
  font:700 clamp(35px,4vw,58px) "Space Grotesk";
  line-height:.84;
  letter-spacing:-.06em
}

/* =========================
 SECTIONS
========================= */

.section{
  padding:100px 0
}

.dark-section{
  background:#0d1215;
  border-block:1px solid var(--line)
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:40px;
  margin-bottom:38px
}

.section h2{
  font:700 clamp(38px,5vw,60px) "Space Grotesk";
  line-height:1;
  letter-spacing:-.055em;
  margin:0
}

.section-head>p{
  max-width:400px;
  color:#7f8b90;
  font-size:13px;
  margin:0
}

/* =========================
 COLLECTION GRID
========================= */

.collection-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px
}

.collection-card{
  min-height:155px;
  border:1px solid var(--line);
  background:#0f1518;
  padding:19px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:.2s
}

.collection-card:hover{
  border-color:var(--blue);
  transform:translateY(-3px);
  
}

.collection-card span{
  font:600 9px "Space Grotesk";
  color:var(--blue);
  font-variant-numeric:tabular-nums;
  letter-spacing:.04em
}

.collection-card h3{
  font:600 17px "Space Grotesk";
  line-height:1.05;
  margin:15px 0
}

.collection-card small{
  color:#6e797d;
  font-size:11px
}

/* =========================
 PRODUCT TYPE GRID
========================= */

.product-type-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px
}

.product-type-grid a{
  border:1px solid var(--line);
  padding:26px;
  min-height:220px;
  background:#11171a;
  transition:.2s;
  color:white
}

.product-type-grid a:hover{
  border-color:var(--blue);
  transform:translateY(-3px)
}

.product-type-grid span{
  font:600 9px "Space Grotesk";
  color:var(--blue)
}

.product-type-grid h3{
  font:700 28px "Space Grotesk";
  margin:55px 0 5px
}

.product-type-grid p{
  color:#7e898d;
  font-size:12px
}

/* =========================
 SIMPLE INFO
========================= */

.simple-info{
  display:grid;
  grid-template-columns:1fr .7fr;
  gap:80px;
  align-items:center
}

.simple-info h2{
  font:700 clamp(38px,5vw,60px) "Space Grotesk";
  line-height:.98;
  letter-spacing:-.055em;
  margin:0
}

.simple-info p:not(.eyebrow){
  color:#808b90;
  max-width:480px
}

.info-box{
  border:1px solid var(--line);
  padding:28px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:10px 20px;
  background:#10161a
}

.info-box strong{
  font:700 35px "Space Grotesk";
  color:var(--blue)
}

.info-box span{
  align-self:center;
  color:#7c888d
}

.cta{
  padding:100px 0;
  background:var(--blue);
  color:#071014
}

.cta .eyebrow{
  color:#356b76
}

.cta h2{
  font:700 clamp(42px,6vw,72px) "Space Grotesk";
  line-height:.92;
  letter-spacing:-.06em;
  margin:0 0 30px
}

.cta h2 em{
  color:#fff
}

/* =========================
 FOOTER
========================= */

.site-footer{
  background:#070a0c;
  padding:45px 0 20px
}

.footer-social{
  display:flex;
  gap:20px;
  padding-bottom:30px;
  border-bottom:1px solid var(--line)
}

.footer-social a{
  width:40px;
  height:40px;
  border:1px solid var(--line);
  border-radius:50%;
  display:grid;
  place-items:center;
  transition:.2s
}

.footer-social a img{
  width:19px;
  height:19px;
  object-fit:contain;
  filter:brightness(0) invert(1);
  opacity:.9
}

.footer-social a:hover{
  border-color:var(--blue);
  transform:translateY(-2px)
}

.footer-social a:hover img{
  opacity:1
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1.4fr 1fr;
  gap:35px;
  padding-top:35px
}

.footer-brand{
  font:700 25px "Space Grotesk";
  letter-spacing:.08em
}

.footer-grid p{
  color:#707c80;
  font-size:12px;
  max-width:270px
}

.footer-grid>div:not(:first-child){
  display:flex;
  flex-direction:column;
  gap:8px
}

.footer-grid span{
  font:600 9px "Space Grotesk";
  letter-spacing:.14em;
  color:#515d62;
  margin-bottom:5px
}

.footer-grid a{
  font-size:12px;
  color:#8a969a
}

.footer-grid a:hover{
  color:var(--blue)
}

.footer-bottom{
  border-top:1px solid var(--line);
  margin-top:35px;
  padding-top:16px;
  display:flex;
  justify-content:space-between;
  color:#4d585d;
  font:600 9px "Space Grotesk";
  letter-spacing:.1em
}

.compact-footer{
  margin-top:80px
}

/* =========================
 SEARCH PANEL
========================= */

.search-panel{
  display:none;
  position:fixed;
  inset:0;
  z-index:80;
  background:rgba(6,9,11,.96);
  padding-top:100px
}

.search-panel.open{
  display:block
}

.search-panel button{
  position:absolute;
  right:30px;
  top:25px;
  background:none;
  border:0;
  color:white;
  font-size:36px
}

.search-panel input{
  width:100%;
  border:0;
  border-bottom:1px solid var(--line);
  background:none;
  color:white;
  outline:none;
  font:600 42px "Space Grotesk";
  padding:20px 0
}

.search-panel p{
  color:#657176;
  font-size:12px
}

/* =========================
 ORDER DRAWER
========================= */

.drawer-backdrop{
  display:none;
  position:fixed;
  inset:0;
  z-index:70;
  background:rgba(0,0,0,.65)
}

.drawer-backdrop.open{
  display:block
}

.order-drawer{
  position:fixed;
  z-index:75;
  right:0;
  top:0;
  height:100%;
  width:min(430px,100%);
  background:#0e1417;
  border-left:1px solid var(--line);
  padding:25px;
  transition:transform .25s;
  overflow:auto;
  transform:translateX(100%)
}

.order-drawer.open{
  transform:translateX(0)
}

.drawer-head{
  display:flex;
  justify-content:space-between;
  align-items:center
}

.drawer-head h2{
  font:700 30px "Space Grotesk";
  margin:0
}

.drawer-head button{
  background:none;
  border:0;
  color:white;
  font-size:30px
}

.order-item{
  border:1px solid var(--line);
  padding:15px;
  margin-top:10px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px
}

.order-item div:first-child{
  display:flex;
  flex-direction:column
}

.order-item strong{
  font:600 15px "Space Grotesk"
}

.order-item span{
  font-size:10px;
  color:#788388
}

.order-item>b{
  color:var(--blue)
}

.qty{
  grid-column:1/-1;
  display:flex;
  gap:7px;
  align-items:center
}

.qty button{
  border:1px solid var(--line);
  background:#11181b;
  color:white;
  width:28px;
  height:28px
}

.qty .remove{
  margin-left:auto
}

.order-contact{
  margin-top:20px;
  padding-top:16px;
  border-top:1px solid var(--line);
  display:flex;
  flex-direction:column;
  gap:10px
}

.order-contact label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:11px;
  color:#8a9a9f;
  text-transform:uppercase;
  letter-spacing:.04em
}

.order-contact input{
  background:#11181b;
  border:1px solid var(--line);
  color:white;
  padding:10px 12px;
  font:500 14px "Space Grotesk";
  border-radius:4px
}

.order-contact input:focus{
  outline:none;
  border-color:var(--blue)
}

.order-contact input.field-error{
  border-color:#e05a5a
}

.order-contact-error{
  font-size:11px;
  color:#e05a5a;
  margin:0
}

.catalog-loading{
  grid-column:1/-1;
  width:100%;
  padding:60px 0;
  text-align:center;
  color:#788388;
  font:500 14px "Space Grotesk";
  letter-spacing:.04em;
  text-transform:uppercase
}

.drawer-total{
  display:flex;
  justify-content:space-between;
  border-top:1px solid var(--line);
  margin-top:25px;
  padding-top:20px;
  margin-bottom: 6px;
  
}

.drawer-total strong{
  font:700 25px "Space Grotesk";
  color:var(--blue)
}

.clear-order{
  width:100%;
  margin-top:12px;
  background:none;
  border:0;
  color:#707b80;
  font-size:11px
}

.empty-order{
  padding:50px 10px;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:5px
}

.empty-order span{
  font-size:12px;
  color:#6f7b80
}

/* =========================
 MOBILE MENU
========================= */

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:80;
  background:#090d10;
  display:flex;
  flex-direction:column;
  padding:82px 28px 30px;
  gap:4px;
  transform:translateX(100%);
  transition:transform .25s;
  overflow:auto
}

.mobile-menu.open{
  transform:translateX(0)
}

.mobile-menu>button:first-child{
  position:absolute;
  right:22px;
  top:18px;
  background:none;
  border:0;
  color:white;
  font-size:34px
}

.mobile-menu>a,
.mobile-menu>.mobile-expand{
  padding:15px 0;
  border-bottom:1px solid var(--line);
  font:600 18px "Space Grotesk";
  text-align:left;
  background:none;
  color:white;
  border-inline:0;
  border-top:0
}

.mobile-menu>div{
  display:none;
  padding:4px 0 10px
}

.mobile-menu>div.open{
  display:block
}

.mobile-menu>div a{
  display:block;
  color:#879297;
  padding:8px 0;
  font-size:13px
}

/* =========================
 LISTING
========================= */

.listing{
  padding:75px 0
}

.breadcrumbs{
  display:flex;
  gap:9px;
  color:#69757a;
  font-size:11px;
  margin-bottom:35px
}

.breadcrumbs a:hover{
  color:var(--blue)
}

.listing-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:40px;
  margin-bottom:35px
}

.listing-head p:not(.eyebrow){
  color:#7e898d;
  max-width:600px
}

.inline-search{
  width:300px;
  border:1px solid var(--line);
  padding:13px 15px;
  display:flex;
  gap:8px;
  color:#6c787c
}

.inline-search input{
  width:100%;
  background:none;
  border:0;
  outline:0;
  color:white
}

.collection-pills{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:25px
}

.collection-pills a{
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  font-size:10px;
  color:#808b90
}

.collection-pills a.active,
.collection-pills a:hover{
  border-color:var(--blue);
  color:var(--blue)
}

.listing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px
}

.product-card{
  border:1px solid var(--line);
  background:#0f1518;
  display:block;
  transition:.2s;
  overflow:hidden
}

.product-card:hover{
  border-color:#3b5962;
  transform:translateY(-3px)
}

.product-art{
  aspect-ratio:1.6;
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#20282e,#0c1012);
  padding:17px;
  border-top:1px solid rgba(255,255,255,.04)
}

.product-art>span{
  font:600 8px "Space Grotesk";
  color:#7f8a8f;
  letter-spacing:.1em
}

.product-art>strong{
  position:absolute;
  left:17px;
  bottom:34px;
  z-index:2;
  font:700 23px "Space Grotesk";
  line-height:.95;
  letter-spacing:-.04em;
  max-width:72%
}

.product-art>small{
  position:absolute;
  left:17px;
  bottom:16px;
  z-index:2;
  font:600 8px "Space Grotesk";
  letter-spacing:.08em;
  color:#8e999d
}

.product-art i{
  position:absolute;
  border-radius:50%;
  filter:blur(3px);
  opacity:.72
}

.product-art i:nth-last-child(3){
  width:130px;
  height:130px;
  right:15%;
  top:12%;
  background:var(--blue)
}

.product-art i:nth-last-child(2){
  width:70px;
  height:70px;
  right:35%;
  top:44%;
  background:#754eff
}

.product-art i:nth-last-child(1){
  width:42px;
  height:42px;
  right:10%;
  bottom:20%;
  background:#df3e88
}

.art-green{
  background:linear-gradient(135deg,#18241e,#0b0f0d)
}

.art-green i:nth-last-child(3){
  background:#8bcf74
}

.art-rose{
  background:linear-gradient(135deg,#29151f,#0e0d11)
}

.art-rose i:nth-last-child(3){
  background:#ff6d9f
}

.art-purple{
  background:linear-gradient(135deg,#21142d,#0d0b11)
}

.art-cloud{
  background:linear-gradient(135deg,#32383c,#111517)
}

.art-ink{
  background:linear-gradient(135deg,#252a2d,#090c0e)
}

.art-moon{
  background:linear-gradient(135deg,#202832,#090d10)
}

.art-paper{
  background:linear-gradient(135deg,#555c60,#242a2d)
}

.art-shrine{
  background:linear-gradient(135deg,#15223a,#090d13)
}

.art-lantern{
  background:linear-gradient(135deg,#38201a,#100d0c)
}

.art-star{
  background:linear-gradient(135deg,#1b2038,#080b10)
}

.art-fps{
  background:linear-gradient(135deg,#0b222a,#0a0d10)
}

.art-glass{
  background:linear-gradient(135deg,#b9eaf2,#293e43)
}

.pc-info{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:17px 17px 14px;
  min-height:106px
}

.pc-info small{
  font:600 8px "Space Grotesk";
  letter-spacing:.08em;
  color:#69757a
}

.pc-info h3{
  font:600 17px "Space Grotesk";
  margin:5px 0 6px
}

.pc-info strong{
  display:block;
  font:600 11px "Space Grotesk";
  color:#b8c3c7
}

.pc-info>b{
  white-space:nowrap;
  color:var(--blue);
  font:700 15px "Space Grotesk"
}

.pc-foot{
  border-top:1px solid var(--line);
  padding:11px 17px;
  display:flex;
  justify-content:space-between;
  color:#657176;
  font-size:10px
}

.pc-foot span:last-child{
  color:#a5b0b4
}

.empty-state{
  padding:80px 20px;
  border:1px dashed var(--line);
  text-align:center;
  grid-column:1/-1
}

.empty-state h2{
  font:600 30px "Space Grotesk"
}

/* =========================
 PRODUCT PAGE
========================= */

.product-page{
  padding:50px 0 100px
}

.product-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:55px;
  align-items:start
}

.product-layout>.product-art{
  position:sticky;
  top:105px;
  aspect-ratio:1.1;
  min-height:500px
}

.product-detail{
  padding:20px 0
}

.product-detail h1{
  font-size:clamp(42px,5vw,70px);
  margin-bottom:18px
}

.detail-price{
  font:700 28px "Space Grotesk";
  color:var(--blue)
}

.detail-price span{
  font:400 14px "DM Sans";
  color:#737f84;
  margin-left:10px
}

.detail-desc{
  color:#8b979b;
  font-size:15px;
  max-width:600px;
  margin:20px 0 28px
}

.detail-boxes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px
}

.detail-boxes>div{
  border:1px solid var(--line);
  padding:15px;
  min-height:100px
}

.detail-boxes span,
.selector>span{
  display:block;
  font:600 10px "Space Grotesk";
  letter-spacing:.12em;
  color:#606c71;
  margin-bottom:9px
}

.detail-boxes strong{
  font:600 13px "Space Grotesk"
}

.selector{
  margin-top:25px
}

.selector>div{
  display:flex;
  gap:8px;
  flex-wrap:wrap
}

.selector button{
  border:1px solid var(--line);
  background:#0f1518;
  color:#8f9a9e;
  padding:12px 14px;
  border-radius:9px;
  min-width:75px
}

.selector button.selected{
  background:var(--blue);
  color:#061014;
  border-color:var(--blue)
}

.selector button.disabled{
  opacity:.25;
  text-decoration:line-through;
  cursor:not-allowed
}

.selector button strong,
.selector button small{
  display:block
}

.selector button small{
  font-size:9px;
  margin-top:4px
}

.small-note{
  font-size:10px;
  color:#626e73;
  text-align:center
}

.showcase-note{
  text-align:left;
  margin-top:12px
}

.selected-price{
  border:1px solid var(--line);
  padding:18px;
  margin-top:28px;
  display:grid;
  grid-template-columns:auto 1fr;
  column-gap:15px;
  align-items:center
}

.selected-price span{
  font:600 10px "Space Grotesk";
  letter-spacing:.12em;
  color:#606c71
}

.selected-price strong{
  font:700 28px "Space Grotesk";
  color:var(--blue);
  justify-self:end
}

.selected-price small{
  grid-column:2;
  color:#7f8a8f;
  font-size:10px;
  justify-self:end
}

.selected-price+.btn-wide{
  margin-top:18px
}

.btn-wide+.btn-wide{
  margin-top:10px
}

.detail-info{
  margin:100px 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  border-block:1px solid var(--line);
  padding:60px 0
}

.detail-info h2{
  font:700 45px "Space Grotesk";
  line-height:.95;
  margin:0
}

.detail-copy p{
  color:#7f8a8f;
  font-size:14px
}

.detail-copy a{
  color:var(--blue);
  font-size:12px
}

/* =========================
 SIZE VISUALS
========================= */

.size-visuals{
  margin-top:55px
}

.size-compare-figure{
  width:100%;
  max-width:100%;
  margin:0 0 20px;
  border:1px solid var(--line);
  overflow:hidden;
  box-sizing:border-box;
  line-height:0
}

.size-compare-figure svg{
  display:block;
  width:100%;
  max-width:100%;
  height:auto
}

.size-visual-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px
}

.size-visual-grid figure{
  margin:0;
  border:1px solid var(--line);
  background:#0f1518
}

.size-visual-grid img{
  display:block;
  width:100%;
  height:150px;
  object-fit:cover
}

.size-visual-grid figcaption{
  padding:12px 14px;
  display:flex;
  justify-content:space-between;
  gap:10px
}

.size-visual-grid strong{
  font:600 12px "Space Grotesk"
}

.size-visual-grid span{
  font-size:10px;
  color:#778388
}

.price-table-wrap{
  overflow-x:auto;
  border:1px solid var(--line)
}

.price-table{
  width:100%;
  border-collapse:collapse;
  min-width:650px
}

.price-table th,
.price-table td{
  padding:17px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:13px
}

.price-table th{
  font:600 10px "Space Grotesk";
  letter-spacing:.1em
}

.price-table thead th{
  color:var(--blue);
  background:#10161a
}

.price-table .unavailable{
  color:#4e595e
}

.price-old{
  color:var(--muted);
  text-decoration:line-through;
  font-weight:400;
  margin-right:7px;
  font-size:12px
}

.price-new{
  color:var(--blue);
  font-weight:700
}

.other-products{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:20px
}

.other-products article{
  border:1px solid var(--line);
  padding:25px
}

.other-products span{
  font:600 9px "Space Grotesk";
  color:var(--blue)
}

.other-products h2{
  font:700 25px "Space Grotesk";
  margin:15px 0 4px
}

.other-products strong{
  color:var(--blue);
  font:700 24px "Space Grotesk"
}

.other-products p{
  color:#727e83;
  font-size:12px
}

.other-products a{
  color:var(--blue);
  font-size:12px
}

/* =========================
 FIT FINDER
========================= */

.fit-finder{
  margin-top:55px
}

.fit-finder-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  align-items:start
}

.fit-finder-form{
  border:1px solid var(--line);
  background:#0f1518;
  padding:24px
}

.fit-finder-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:16px
}

.fit-finder-row label{
  display:block;
  font:600 11px "Space Grotesk";
  color:#9aa5a9
}

.fit-input{
  margin-top:8px;
  border:1px solid var(--line);
  background:#10161a;
  border-radius:9px;
  display:flex;
  align-items:center;
  padding:0 14px
}

.fit-input input{
  width:100%;
  background:none;
  border:0;
  outline:0;
  color:white;
  padding:12px 0;
  font-size:15px;
  -moz-appearance:textfield
}

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

.fit-input span{
  color:#6c787c;
  font-size:12px
}

#fitError{
  min-height:14px;
  margin:10px 0 0;
  color:#e0a15c;
  text-align:left
}

.fit-tip{
  font-size:11px;
  color:#697479;
  margin:-4px 0 16px
}

.fit-coverage-label{
  display:block;
  font:600 11px "Space Grotesk";
  color:#9aa5a9;
  margin-bottom:18px
}

.fit-optional{
  font-weight:400;
  color:#5c666a;
  text-transform:none;
  letter-spacing:0
}

.fit-select{
  margin-top:8px;
  border:1px solid var(--line);
  background:#10161a;
  border-radius:9px;
  padding:0 14px
}

.fit-select select{
  width:100%;
  background:none;
  border:0;
  outline:0;
  color:white;
  padding:12px 0;
  font-size:14px;
  font-family:"DM Sans",sans-serif
}

.fit-select select option{
  background:#10161a;
  color:white
}

.fit-keyboard{
  display:none;
  position:absolute;
  background:#3a4046;
  border:1px solid #4d545a;
  border-radius:4px
}

.fit-mouse{
  display:none;
  position:absolute;
  background:#e7ebec;
  border-radius:50%;
  box-shadow:0 4px 10px rgba(0,0,0,.35)
}

.fit-finder-results{
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:10px
}

.fit-card{
  border:1px solid var(--line);
  border-left:3px solid var(--line);
  background:#10161a;
  padding:16px
}

.fit-card-primary{
  border-left-color:var(--blue)
}

.fit-card-tag{
  display:block;
  font:600 9px "Space Grotesk";
  letter-spacing:.12em;
  color:var(--blue);
  margin-bottom:8px
}

.fit-card-size{
  display:block;
  font:700 18px "Space Grotesk"
}

.fit-card-price{
  display:block;
  color:#8b979b;
  font-size:12px;
  margin-top:6px
}

.fit-card-links{
  display:flex;
  gap:16px;
  margin-top:10px;
  flex-wrap:wrap
}

.fit-card-link{
  color:var(--blue);
  font-size:12px
}

.fit-finder-visual{
  border:1px solid var(--line);
  background:#0f1518;
  padding:24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px
}

.fit-desk{
  width:100%;
  max-width:420px;
  aspect-ratio:16/9;
  background:linear-gradient(135deg,#3a2c1e,#20180f);
  border:2px solid #57422c;
  border-radius:6px;
  position:relative;
  overflow:hidden;
  transition:aspect-ratio .2s
}

.fit-mat{
  display:none;
  position:absolute;
  background:
      radial-gradient(circle at 60% 25%,rgba(32,195,223,.75),transparent 25%),
      radial-gradient(circle at 35% 55%,rgba(119,75,255,.7),transparent 18%),
      linear-gradient(135deg,#20282e,#0c1012);
  border:1px solid #3a4650;
  border-radius:4px;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
  align-items:flex-end;
  justify-content:center;
  padding-bottom:6px
}

.fit-mat span{
  font:600 9px "Space Grotesk";
  letter-spacing:.04em;
  color:#e7f6fa;
  background:rgba(6,9,11,.7);
  padding:3px 8px;
  border-radius:999px;
  white-space:nowrap
}

#fitCaption{
  max-width:380px
}

/* =========================
 TYPE INFO
========================= */

.type-info{
  border:1px solid var(--line);
  background:#0f1518;
  padding:28px;
  margin:0 0 28px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:30px;
  align-items:center
}

.type-info h2{
  font:700 34px "Space Grotesk";
  margin:0 0 10px
}

.type-info p:not(.eyebrow){
  color:#818d92;
  font-size:13px;
  margin:0;
  max-width:650px
}

.type-info-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:8px
}

.type-info-grid>div{
  border:1px solid var(--line);
  padding:13px 15px
}

.type-info-grid span{
  display:block;
  font:600 8px "Space Grotesk";
  letter-spacing:.12em;
  color:#606c71;
  margin-bottom:5px
}

.type-info-grid strong{
  font:600 12px "Space Grotesk"
}

/* =========================
 INFO PAGE
========================= */

.info-page{
  padding:80px 0 120px
}

.narrow{
  max-width:820px
}

.info-page h1{
  margin-bottom:50px
}

.faq{
  border-top:1px solid var(--line)
}

details{
  border-bottom:1px solid var(--line)
}

summary{
  list-style:none;
  padding:20px 0;
  font:600 17px "Space Grotesk";
  cursor:pointer
}

details p{
  color:#818c91;
  font-size:14px;
  padding:0 0 20px;
  margin:0
}

.info-page h2{
  font:600 24px "Space Grotesk";
  margin-top:38px
}

.info-page p{
  color:#808b90;
  font-size:14px
}

.info-page a{
  color:var(--blue)
}

/* =========================
 RESPONSIVE - TABLET
========================= */

@media(max-width:950px){

  .desktop-nav{
      display:none
  }

  .menu-btn{
      display:block
  }

  .collection-grid{
      grid-template-columns:repeat(3,1fr)
  }

  .product-layout,
  .simple-info{
      grid-template-columns:1fr
  }

  .product-layout>.product-art{
      position:static
  }

  .listing-grid{
      grid-template-columns:repeat(2,1fr)
  }

  .footer-grid{
      grid-template-columns:1.5fr 1fr 1fr
  }

  .hero-grid{
      grid-template-columns:1fr;
      gap:45px
  }

  .product-layout>.product-art{
      min-height:350px
  }

  .mega-grid{
      grid-template-columns:1fr 1fr
  }

  .type-info{
      grid-template-columns:1fr
  }
}

/* =========================
 RESPONSIVE - MOBILE
========================= */

@media(max-width:650px){

  .container{
      width:calc(100% - 28px)
  }

  .nav-wrap{
      height:64px
  }

  .brand{
      font-size:16px
  }

  .brand img{
      width:30px;
      height:30px
  }

  .desktop-nav{
      display:none
  }

  .hero{
      padding:70px 0
  }

  .hero h1{
      font-size:49px
  }

  .section{
      padding:70px 0
  }

  .section-head,
  .listing-head{
      display:block
  }

  .section-head>p{
      margin-top:15px
  }

  /* MOBILE: 2 COLUMNS */
  .collection-grid,
  .product-type-grid,
  .listing-grid,
  .other-products{
      grid-template-columns:repeat(2,minmax(0,1fr))
  }

  .collection-grid,
  .product-type-grid,
  .listing-grid{
      gap:8px
  }

  .collection-card{
      min-height:135px
  }

  .listing-head h1{
      font-size:48px
  }

  .inline-search{
      width:100%;
      margin-top:20px
  }

  .product-layout{
      gap:25px
  }

  .detail-boxes{
      grid-template-columns:1fr
  }

  .product-detail h1{
      font-size:47px
  }

  .detail-info{
      grid-template-columns:1fr;
      gap:25px;
      margin:70px 0
  }

  .footer-grid{
      grid-template-columns:1fr 1fr
  }

  .footer-grid>div:first-child{
      grid-column:1/-1
  }

  .footer-bottom{
      display:block;
      line-height:2
  }

  .mega-grid{
      grid-template-columns:1fr
  }

  .mega-grid>div:nth-child(2){
      display:none
  }

  .mega-feature{
      border-left:0;
      padding-left:0;
      border-top:1px solid var(--line);
      padding-top:20px
  }

  .product-menu-grid{
      grid-template-columns:1fr
  }

  .order-drawer{
      width:100%
  }

  .search-panel{
      padding-top:80px
  }

  .search-panel input{
      font-size:28px
  }

  .price-table th,
  .price-table td{
      padding:13px 10px;
      font-size:12px
  }

  .size-visual-grid{
      grid-template-columns:1fr 1fr
  }

  .size-visual-grid img{
      height:125px
  }
}

/* =========================
 RESPONSIVE - SMALL MOBILE
 FIX: STILL KEEP 2 COLUMNS
========================= */

@media(max-width:430px){

  .size-visual-grid{
      grid-template-columns:1fr
  }

  /* IMPORTANT:
     Keep grids at 2 columns instead of 1 column */
  .collection-grid,
  .product-type-grid,
  .listing-grid{
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:7px
  }

  .collection-card{
      min-height:120px;
      padding:14px
  }

  .collection-card h3{
      font-size:14px;
      line-height:1.15;
      margin:10px 0
  }

  .collection-card span{
      font-size:8px
  }

  .collection-card small{
      font-size:10px
  }

  .product-type-grid a{
      padding:16px;
      min-height:170px
  }

  .product-type-grid h3{
      font-size:20px;
      margin:35px 0 5px
  }

  .product-card .pc-info{
      padding:12px
  }

  .product-card .pc-info h3{
      font-size:14px
  }

  .product-card .pc-foot{
      padding:10px 12px;
      font-size:9px
  }

  .hero h1{
      font-size:45px
  }

  .header-actions{
      gap:5px
  }

  .icon-btn{
      display:none
  }

  .order-pill{
      font-size:11px
  }

  .product-layout>.product-art{
      min-height:270px
  }

  .detail-boxes{
      grid-template-columns:1fr 1fr
  }

  .detail-boxes>div{
      min-height:90px
  }

  .footer-grid{
      grid-template-columns:1fr
  }

  .footer-grid>div:first-child{
      grid-column:auto
  }
}

/* =========================
 PRODUCT IMAGE
========================= */

.product-image-art{
    width:100%;
    aspect-ratio:16 / 9;
    padding:0;
    background:#090d10;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-image-art img{
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
    display:block;
    object-fit:contain;
    object-position:center;
}

/* =========================
 COMPACT PRODUCT CARD
========================= */

.product-card .pc-info{
  display:flex;
  flex-direction:column;
  padding:16px 17px 14px;
  min-height:0
}

.product-card .pc-info h3{
  margin:5px 0 10px;
  min-height:0;
  max-height:42px;
  overflow:hidden;
  line-height:1.25
}

.product-card .pc-info .pc-size{
  min-height:0;
  margin-bottom:10px
}

.product-card .product-art,
.product-card .product-image{
  aspect-ratio:16 / 9;
  overflow:hidden
}

.product-card .product-art img,
.product-card .product-image img{
    width:100%;
    height:100%;
    max-width:none;
    max-height:none;
    object-fit:cover;
    object-position:center;
    display:block;
    margin:0;
}

/* =========================
 ANIME SERIES NAVIGATION
========================= */

.anime-series-nav{
  width:100%;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08)
}

.anime-series-nav a{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border:1px solid var(--line,#26333a);
  border-radius:999px;
  color:var(--muted,#8c9aa3);
  text-decoration:none;
  font-size:13px;
  transition:.2s ease
}

.anime-series-nav a:hover{
  border-color:var(--blue,#49c7ee);
  color:var(--text,#f4f7f8)
}

.anime-series-nav a.active{
  border-color:var(--blue,#49c7ee);
  color:var(--blue,#49c7ee)
}

/* =========================
 MY ORDER - SELECTED IMAGE
========================= */

.order-item{
  display:grid;
  grid-template-columns:88px 1fr;
  gap:14px;
  padding:14px;
  border:1px solid var(--border,#26313a);
  background:rgba(255,255,255,.02)
}

.order-item-image{
  width:88px;
  height:88px;
  overflow:hidden;
  border:1px solid var(--border,#26313a);
  background:#11171c;
  flex-shrink:0
}

.order-item-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  object-position:center;
}

.order-item-image-empty{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  color:#66727b;
  font-size:10px;
  text-align:center
}

.order-item-info{
  min-width:0
}

.order-item-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px
}

.order-item-top strong{
  font-size:14px;
  line-height:1.3
}

.order-item-top b{
  color:#5fc7e5;
  white-space:nowrap;
  font-size:14px
}

.order-item-info>span{
  display:block;
  color:#7d8991;
  font-size:12px;
  line-height:1.5
}

.order-item .qty{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:12px
}

.order-item .qty button{
  width:32px;
  height:32px;
  border:1px solid var(--border,#26313a);
  background:transparent;
  color:#fff;
  cursor:pointer
}

.order-item .qty button:hover{
  border-color:#5fc7e5;
  color:#5fc7e5
}

.order-item .qty span{
  min-width:20px;
  text-align:center;
  font-size:13px
}

.order-item .qty .remove{
  margin-left:auto
}

/* =========================
 AUTOMATIC SERIES NAVIGATION
========================= */

.series-nav{
  width:100%;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08)
}

.series-nav a{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border:1px solid var(--line,#26333a);
  border-radius:999px;
  color:var(--muted,#8c9aa3);
  text-decoration:none;
  font-size:13px;
  transition:.2s ease
}

.series-nav a:hover{
  border-color:var(--blue,#49c7ee);
  color:var(--text,#f4f7f8)
}

.series-nav a.active{
  border-color:var(--blue,#49c7ee);
  color:var(--blue,#49c7ee)
}

/* =========================
 FIT FINDER SIZE OPTIONS
========================= */

.fit-size-options{
  margin-top:12px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08)
}

.fit-size-options-title{
  margin-bottom:9px;
  color:#7f8b90;
  font:600 10px "Space Grotesk";
  letter-spacing:.08em;
  text-transform:uppercase
}

.fit-size-option-list{
  display:flex;
  flex-wrap:wrap;
  gap:7px
}

.fit-size-option{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:36px;
  padding:7px 11px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#0c1215;
  color:#dce3e5;
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease
}

.fit-size-option:hover{
  border-color:var(--blue);
  background:rgba(73,199,238,.07);
  color:#fff;
  transform:translateY(-1px)
}

.fit-size-option strong{
  font:700 12px "Space Grotesk"
}

.fit-size-option span{
  color:#7f8b90;
  font-size:10px
}

@media(max-width:650px){
  .fit-size-option{
    flex:1 1 calc(50% - 7px);
    justify-content:center
  }
}


/* =========================
 HERO CAROUSEL
========================= */

.hero-carousel{
  position:relative;
  width:100%;
  aspect-ratio:1.55;
  padding:0;
  overflow:hidden;
  border:1px solid #344149;
  border-radius:18px;
  background:#0b0f12;
  box-shadow:0 35px 80px rgba(0,0,0,.45)
}

.hero-slides{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden
}

.hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .45s ease, visibility .45s ease
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto
}

.hero-slide img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  user-select:none;
  -webkit-user-drag:none
}

.hero-carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  background:rgba(7,10,12,.68);
  backdrop-filter:blur(8px);
  color:#fff;
  font-size:30px;
  line-height:1;
  opacity:0;
  transition:opacity .2s ease, border-color .2s ease, background .2s ease
}

.hero-carousel:hover .hero-carousel-btn,
.hero-carousel:focus-within .hero-carousel-btn{
  opacity:1
}

.hero-carousel-btn:hover{
  border-color:var(--blue);
  background:rgba(7,10,12,.88)
}

.hero-carousel-prev{left:14px}
.hero-carousel-next{right:14px}

.hero-carousel-dots{
  position:absolute;
  left:50%;
  bottom:14px;
  z-index:6;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:7px;
  padding:7px 9px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(7,10,12,.58);
  backdrop-filter:blur(8px)
}

.hero-dot{
  width:7px;
  height:7px;
  padding:0;
  border:0;
  border-radius:50%;
  background:#657176;
  opacity:.8;
  transition:transform .2s ease, background .2s ease, opacity .2s ease
}

.hero-dot.active{
  background:var(--blue);
  opacity:1;
  transform:scale(1.35)
}

@media(max-width:650px){
  .hero-carousel{
    aspect-ratio:1.2;
    border-radius:14px
  }

  .hero-carousel-btn{
    width:36px;
    height:36px;
    font-size:26px;
    opacity:1
  }
}
.price-table-wrap h2 {
    padding-left: 24px;
    margin: 0;
}
/* =========================
   ARTWORK CHECKER
========================= */
.artwork-checker{
  margin-top:55px
}

.artwork-checker-grid{
  display:grid;
  grid-template-columns:1fr 1.35fr;
  gap:12px;
  align-items:start
}

.artwork-checker-form{
  border:1px solid var(--line);
  background:#0f1518;
  padding:24px
}

.artwork-field-label{
  display:block;
  font:600 11px "Space Grotesk";
  color:#9aa5a9;
  margin-bottom:8px
}

.artwork-select-wrap{
  margin-bottom:20px
}

.artwork-upload{
  min-height:255px;
  border:2px dashed #303b41;
  background:#11171a;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:22px;
  box-sizing:border-box;
  cursor:pointer;
  transition:border-color .2s ease,background .2s ease
}

.artwork-upload:hover{
  border-color:var(--blue);
  background:#121a1e
}

.artwork-upload-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  background:#0b0f12;
  color:#fff;
  font-size:28px;
  border-radius:5px;
  margin-bottom:18px
}

.artwork-upload strong{
  font:700 16px "Space Grotesk";
  color:#f4f7f8
}

.artwork-upload span:last-child{
  max-width:330px;
  margin-top:15px;
  color:#7f8b90;
  font-size:13px;
  line-height:1.55
}

.artwork-private-note{
  margin-top:14px;
  padding:18px;
  border-left:3px solid var(--blue);
  background:#11171a;
  display:flex;
  flex-direction:column;
  gap:7px
}

.artwork-private-note strong{
  font:700 16px "Space Grotesk"
}

.artwork-private-note span{
  color:#7f8b90;
  font-size:12px;
  line-height:1.55
}

.artwork-preview-column{
  min-width:0
}

.artwork-preview{
  position:relative;
  width:100%;
  aspect-ratio:2.25;
  overflow:hidden;
  border:1px solid #303b41;
  background:#0f1518;
  display:flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  --safe-x:2.7778%;
  --safe-y:6.25%
}

.artwork-preview-image,
.artwork-preview img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.artwork-preview-empty{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  color:#dce3e5;
  text-align:center
}

.artwork-preview-empty[hidden]{
  display:none
}

.artwork-preview-empty strong{
  font:600 17px "Space Grotesk"
}

.artwork-preview-empty span{
  color:#7f8b90;
  font-size:14px
}

.artwork-safe-guide{
  position:absolute;
  left:var(--safe-x);
  right:var(--safe-x);
  top:var(--safe-y);
  bottom:var(--safe-y);
  border:2px dashed rgba(255,255,255,.82);
  pointer-events:none;
  box-sizing:border-box
}

.artwork-cut-label,
.artwork-safe-label{
  position:absolute;
  z-index:2;
  padding:4px 7px;
  background:rgba(7,10,12,.78);
  color:#fff;
  font:600 10px "Space Grotesk";
  letter-spacing:.01em;
  pointer-events:none
}

.artwork-cut-label{
  left:10px;
  top:10px;
  border-left:2px solid #f08b2e
}

.artwork-safe-label{
  right:10px;
  bottom:10px
}

.artwork-preview::after{
  content:"";
  position:absolute;
  inset:0;
  border:2px solid #f08b2e;
  pointer-events:none;
  box-sizing:border-box
}

.artwork-legend{
  margin-top:12px;
  border-left:3px solid #f08b2e;
  background:#11171a;
  padding:15px 18px
}

.artwork-legend-row{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  color:#dce3e5;
  font:600 12px "Space Grotesk"
}

.artwork-legend-row span{
  display:inline-flex;
  align-items:center;
  gap:9px
}

.artwork-line{
  display:inline-block;
  width:28px;
  height:0
}

.artwork-line-cut{
  border-top:2px solid #f08b2e
}

.artwork-line-safe{
  border-top:2px dashed #111
}

.artwork-legend p{
  margin:10px 0 0;
  color:#7f8b90;
  font-size:12px;
  line-height:1.55
}

.artwork-legend strong{
  color:#dce3e5
}

.artwork-metrics{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px
}

.artwork-metric{
  border:1px solid var(--line);
  background:#10161a;
  padding:18px
}

.artwork-metric span{
  display:block;
  color:#7f8b90;
  font-size:11px
}

.artwork-metric strong{
  display:block;
  margin-top:7px;
  font:700 19px "Space Grotesk";
  color:#f4f7f8
}

.artwork-metric small{
  display:block;
  margin-top:5px;
  color:#68757a;
  font-size:10px
}

.artwork-result-good{border-color:rgba(95,199,229,.45)}
.artwork-result-good strong{color:var(--blue)}
.artwork-result-warn{border-color:rgba(224,161,92,.55)}
.artwork-result-warn strong{color:#e0a15c}
.artwork-result-low{border-color:rgba(210,105,105,.55)}
.artwork-result-low strong{color:#d47d7d}

@media(max-width:900px){
  .artwork-checker-grid{grid-template-columns:1fr}
  .artwork-metrics{grid-template-columns:1fr 1fr}
}

@media(max-width:650px){
  .artwork-metrics{grid-template-columns:1fr}
  .artwork-preview{aspect-ratio:2.25}
  .artwork-upload{min-height:210px}
  .artwork-legend-row{gap:10px;flex-direction:column}
}

/* =========================
   COLLECTION CARDS WITH IMAGES
   Bottom-left text layout
========================= */

.collection-card {
  position: relative;
  min-height: 155px;
  border: 1px solid var(--line);
  background: #0f1518;
  padding: 19px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: .2s;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

/* Keep the artwork visible; darken mainly the bottom for text readability */
.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 28%,
    rgba(0,0,0,.08) 48%,
    rgba(0,0,0,.72) 100%
  );
  transition: background .3s ease;
  z-index: 0;
}

.collection-card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 24%,
    rgba(0,0,0,.06) 46%,
    rgba(0,0,0,.62) 100%
  );
}

.collection-card > * {
  position: relative;
  z-index: 1;
}

.collection-card .collection-number {
  font: 600 9px "Space Grotesk";
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  opacity: .95;
}

/* Title sits above the action at the bottom-left */
.collection-card h3 {
  position: absolute;
  left: 19px;
  right: 19px;
  bottom: 40px;
  margin: 0;
  font: 600 17px "Space Grotesk";
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(0,0,0,.65);
}

.collection-card small {
  position: absolute;
  left: 19px;
  bottom: 18px;
  color: rgba(255,255,255,.88);
  font-size: 11px;
  text-shadow: 0 1px 7px rgba(0,0,0,.7);
}

.collection-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  background-size: cover;
  background-position: center;
}

/* =========================
   FEATURED COLLECTION CARDS (LARGER)
========================= */

.collection-card.featured {
  min-height: 220px;
  grid-column: span 1;
}

.collection-card.featured h3 {
  font-size: 22px;
  bottom: 43px;
}

.collection-card.featured .collection-number {
  font-size: 11px;
}

/* =========================
   RESPONSIVE - COLLECTION GRID
========================= */

/* Keep 4 columns on desktop */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* Featured cards span full width on smaller screens if needed */
@media(max-width: 768px) {
  .collection-card.featured {
    min-height: 180px;
    grid-column: span 1;
  }
  
  .collection-card.featured h3 {
    font-size: 18px;
    bottom: 40px;
  }
}

@media(max-width: 650px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  
  .collection-card {
    min-height: 120px;
    padding: 14px;
  }
  
  .collection-card.featured {
    min-height: 160px;
  }
  
  .collection-card h3 {
    left: 14px;
    right: 14px;
    bottom: 34px;
    font-size: 14px;
  }

  .collection-card small {
    left: 14px;
    bottom: 13px;
    font-size: 10px;
  }
  
  .collection-card.featured h3 {
    font-size: 17px;
    bottom: 35px;
  }
}

@media(max-width: 430px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  
  .collection-card {
    min-height: 110px;
    padding: 12px;
  }

  .collection-card h3 {
    left: 12px;
    right: 12px;
    bottom: 31px;
  }

  .collection-card small {
    left: 12px;
    bottom: 11px;
    font-size: 9px;
  }
  
  .collection-card.featured {
    min-height: 140px;
  }

  .collection-card.featured h3 {
    bottom: 32px;
  }
}

/* =========================================================
   PRODUCT PAGE UPDATES
   ========================================================= */

.product-showcase{
  width:100%;
}

.product-layout>.product-showcase{
  position:sticky;
  top:105px;
}

.product-showcase>.product-art{
  position:static;
  aspect-ratio:1.1;
  min-height:500px;
}

.detail-gallery{
  margin-top:14px
}

.detail-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px
}

.detail-gallery-card{
  border:1px solid var(--line);
  background:#0b1013;
  overflow:hidden;
  line-height:0
}

.detail-gallery-card img{
  display:block;
  width:100%;
  aspect-ratio:1/1;
  height:auto;
  object-fit:cover;
  object-position:center
}

.product-accordions{
  margin-top:28px;
  border-top:1px solid var(--line);
}

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

.product-accordion-head{
  width:100%;
  min-height:78px;
  padding:0;
  display:grid;
  grid-template-columns:34px 1fr auto;
  align-items:center;
  gap:14px;
  border:0;
  background:transparent;
  color:var(--text);
  text-align:left;
}

.product-accordion-head strong{
  font:600 18px "Space Grotesk";
}

.accordion-icon{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
}

.accordion-icon svg{
  width:24px;
  height:24px;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.accordion-plus{
  font:400 28px/1 "DM Sans";
  color:var(--text);
  transition:transform .2s ease;
}

.product-accordion.open .accordion-plus{
  transform:rotate(45deg);
}

.product-accordion-head:hover{
  color:var(--blue);
}

.product-accordion-body{
  padding:0 0 22px 48px;
  color:#8a969b;
  font-size:13px;
}

.product-spec-list,
.shipping-policy-list{
  display:grid;
  border-top:1px solid var(--line)
}

.product-spec-list>div,
.shipping-policy-list>div{
  padding:15px 0;
  border-bottom:1px solid var(--line)
}

.product-spec-list b,
.shipping-policy-list b{
  display:block;
  margin-bottom:6px;
  color:#dfe5e7;
  font:600 11px "Space Grotesk";
  letter-spacing:.06em
}

.product-spec-list p,
.shipping-policy-list p{
  margin:0 0 5px;
  color:#8a969b;
  line-height:1.65
}

.product-spec-list p:last-child,
.shipping-policy-list p:last-child{
  margin-bottom:0
}

.product-accordion-body p{
  margin:0 0 16px;
}

.accordion-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.accordion-meta span{
  display:flex;
  flex-direction:column;
  gap:4px;
  border:1px solid var(--line);
  padding:12px;
  background:#0f1518;
}

.accordion-meta b{
  font:600 9px "Space Grotesk";
  letter-spacing:.12em;
  color:#606c71;
}


/* =========================================================
   SIZE GUIDE - PRODUCT TYPE SPECS
   ========================================================= */

.type-specs{
  margin-top:70px;
  padding-top:70px;
  border-top:1px solid var(--line);
}

.type-spec-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.type-spec-card{
  border:1px solid var(--line);
  background:#0f1518;
  padding:26px;
}

.type-spec-card>span{
  font:600 9px "Space Grotesk";
  letter-spacing:.1em;
  color:var(--blue);
}

.type-spec-card h3{
  margin:28px 0 10px;
  font:700 25px "Space Grotesk";
  line-height:1.05;
}

.type-spec-card>p{
  min-height:66px;
  color:#7f8b90;
  font-size:13px;
  margin:0 0 24px;
}

.type-spec-detail{
  border-top:1px solid var(--line);
}

.type-spec-detail>div{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:13px 0;
  border-bottom:1px solid var(--line);
}

.type-spec-detail>div:last-child{
  border-bottom:0;
}

.type-spec-detail small{
  font:600 9px "Space Grotesk";
  letter-spacing:.1em;
  color:#606c71;
}

.type-spec-detail strong{
  font:500 12px "Space Grotesk";
  color:#dfe5e7;
}

/* =========================================================
   PRODUCT/SIZE GUIDE RESPONSIVE OVERRIDES
   ========================================================= */

@media(max-width:900px){
  .product-layout>.product-showcase{
    position:static;
  }

  .type-spec-grid{
    grid-template-columns:1fr;
  }

  .type-spec-card>p{
    min-height:0;
  }
}

@media(max-width:600px){
  .product-accordion-head{
    min-height:68px;
    grid-template-columns:30px 1fr auto;
  }

  .product-accordion-head strong{
    font-size:16px;
  }

  .product-accordion-body{
    padding-left:0;
  }

  .accordion-meta{
    grid-template-columns:1fr;
  }


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

  .type-spec-card{
    padding:20px;
  }
}


/* =========================================================
   MOBILE SHIFT / HORIZONTAL OVERFLOW FIX
   Prevent product images and grid children from forcing the
   mobile grid wider than the viewport.
   ========================================================= */
@media (max-width: 650px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .product-layout {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-layout > *,
  .product-showcase,
  .product-showcase > .product-art,
  .product-image-art {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-showcase > .product-art {
    min-height: 0;
  }

  .product-image-art {
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .product-image-art img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .detail-gallery-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   FINAL PRICE BAR FIX
   Put this at the VERY BOTTOM of styles.css
========================================================= */

/* Main price box */
#priceContainer.selected-price {
  width: 100% !important;
  min-width: 0 !important;

  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;

  gap: 18px !important;

  border: 1px solid var(--line) !important;
  padding: 18px !important;
  margin-top: 28px !important;

  box-sizing: border-box !important;
}

/* PRICE label */
#priceContainer.selected-price > span:first-child {
  display: block !important;
  flex: 0 0 auto !important;

  font: 600 10px "Space Grotesk" !important;
  letter-spacing: .12em !important;
  color: #606c71 !important;

  white-space: nowrap !important;
}

/* Everything after PRICE */
#priceContainer #priceDisplay {
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;

  flex: 1 1 auto !important;
  min-width: 0 !important;

  gap: 18px !important;

  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

/* Current / discounted price */
#priceContainer #price {
  display: inline-block !important;
  flex: 0 0 auto !important;

  font: 700 28px "Space Grotesk" !important;
  color: #20c3df !important;

  white-space: nowrap !important;
}

/* Original price */
#priceContainer #priceOriginal {
  display: inline-block !important;
  flex: 0 0 auto !important;

  font: 400 16px "DM Sans" !important;
  color: #69757a !important;

  text-decoration: line-through !important;
  white-space: nowrap !important;
}

/* Size */
#priceContainer #priceDim {
  display: inline-block !important;
  flex: 0 0 auto !important;

  font: 400 14px "DM Sans" !important;
  color: #7f8b90 !important;

  margin: 0 !important;
  white-space: nowrap !important;

  order: 3 !important;
}

/* Save amount */
#priceContainer #priceSave {
  display: inline-block !important;
  flex: 0 0 auto !important;

  font: 600 12px "DM Sans" !important;
  color: #4ade80 !important;

  margin: 0 !important;
  white-space: nowrap !important;

  order: 4 !important;
}

/* Make sure hidden elements stay hidden */
#priceContainer #priceOriginal[style*="display:none"],
#priceContainer #priceSave[style*="display:none"] {
  display: none !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  #priceContainer.selected-price {
    gap: 12px !important;
    padding: 15px !important;
  }

  #priceContainer #priceDisplay {
    gap: 12px !important;
    flex-wrap: wrap !important;
  }

  #priceContainer #price {
    font-size: 24px !important;
  }

  #priceContainer #priceOriginal {
    font-size: 14px !important;
  }

  #priceContainer #priceDim {
    font-size: 12px !important;
  }

  #priceContainer #priceSave {
    font-size: 11px !important;
  }
}


@media (max-width: 700px) {

  /* 1. FIX FIT FINDER: Stack form and visual preview vertically */
  .fit-finder-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .fit-finder-form,
  .fit-finder-visual {
    width: 100% !important;
    max-width: 100% !important;
  }

  .fit-finder-row {
    flex-direction: row !important;
    gap: 12px !important;
  }

  .fit-finder-row label {
    width: 50% !important;
  }

  /* 2. FIX SIZE & PRICE TABLES: Fix cut-off discount prices & column stacking */
  .price-table {
    width: 100% !important;
    table-layout: fixed !important;
  }

  .price-table th,
  .price-table td {
    padding: 10px 6px !important;
    font-size: 13px !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .price-table th:first-child,
  .price-table td:first-child {
    width: 44% !important;
  }

  .price-table th:not(:first-child),
  .price-table td:not(:first-child) {
    width: 28% !important;
    text-align: right !important;
  }

  /* 3. FIX ARTWORK CHECKER: Stack form and live preview vertically */
  .artwork-checker-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .artwork-metrics {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  /* Hide the dimension pill overlay inside the Fit Finder preview */
#fitMatLabel {
    display: none !important;
}
}


