/*
Theme Name: Sukoon
Theme URI: https://sukoonclo.com
Author: Sukoon
Description: Custom dark streetwear theme for Sukoon — WooCommerce ready.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.7
WC requires at least: 8.0
WC tested up to: 9.0
License: Proprietary
Text Domain: sukoon
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Barlow:wght@400;500;600&display=swap');

:root{
  --black: #0a0a0a;
  --black-2: #121212;
  --black-3: #191919;
  --off-white: #f2f1ed;
  --white: #ffffff;
  --grey: #8c8c88;
  --grey-dim: #5a5a57;
  --line: #2b2b29;
  --line-soft: #1e1e1c;
  --navy: #161923;
  --navy-bright: #2b3348;
  --navy-light: #7c88a8;

  --font-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --nav-h: 76px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
input, select, textarea{ font-family: inherit; }

.container{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}
.eyebrow{
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
}
.section-title{
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--off-white);
  background: transparent;
  color: var(--off-white);
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.btn:hover{ background: var(--off-white); color: var(--black); }
.btn-solid{ background: var(--off-white); color: var(--black); }
.btn-solid:hover{ background: var(--navy-light); color: var(--white); border-color: var(--navy-light); }
.btn-navy{ border-color: var(--navy-light); color: var(--off-white); }
.btn-navy:hover{ background: var(--navy-bright); border-color: var(--navy-bright); color: var(--white); }
.btn-block{ width: 100%; }

/* Announcement bar */
.announce{
  background: var(--navy);
  color: var(--off-white);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 12px;
}

/* Header */
header.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-top{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  padding: 0 40px;
}
.nav-left, .nav-right{
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-right{ justify-content: flex-end; }
.nav-icon-btn{
  background: none;
  border: none;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-icon-btn svg{ width: 19px; height: 19px; stroke: currentColor; }
.nav-icon-btn:hover{ color: var(--navy-light); }
.logo{ display: inline-flex; align-items: center; justify-content: center; text-align: center; white-space: nowrap; }
.logo-img{ height: 40px; width: auto; display: block; }
.bag-count{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--navy-bright);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}
.nav-links{
  display: flex;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid var(--line-soft);
  padding: 14px 0;
}
.nav-links a{
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  transition: color .25s ease;
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--navy-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover{ color: var(--off-white); }
.nav-links a:hover::after, .nav-links a.active::after{ transform: scaleX(1); }
.nav-links a.active{ color: var(--off-white); }
.menu-toggle{ display: none; }
.mobile-nav-close{ display: none; }

/* Hero */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background-color: var(--black);
  background-image: repeating-linear-gradient(115deg, #131313 0px, #131313 2px, #0a0a0a 2px, #0a0a0a 4px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
/* When a real photo is set, remove the pattern fallback and size to the image's ratio */
.hero.has-hero-img{
  min-height: 0;
}
/* Gradient overlay */
.hero::before{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.80) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content{ position: relative; z-index: 2; padding: 0 40px 70px; max-width: 640px; }
.drop-badge{
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--navy-light);
  color: var(--navy-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 20px;
}
.hero-title{
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.hero-sub{ font-size: 15px; color: var(--grey); margin: 0 0 32px; max-width: 460px; line-height: 1.6; }
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

/* Marquee */
.marquee{
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 16px 0;
  background: var(--black-2);
}
.marquee-track{
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-left 28s linear infinite;
  width: max-content;
}
.marquee-track span{
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.marquee-track span em{ color: var(--navy-light); font-style: normal; }
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Sections */
.section{ padding: 100px 0; }
.section-tight{ padding: 60px 0; }
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head p{ color: var(--grey); max-width: 420px; font-size: 14px; line-height: 1.6; margin: 10px 0 0; }
.view-all{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--off-white);
  padding-bottom: 3px;
  white-space: nowrap;
}
.view-all:hover{ color: var(--navy-light); border-color: var(--navy-light); }

/* Category grid */
.cat-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.cat-tile{ position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--black-2); }
.cat-tile .ph-art{ position: absolute; inset: 0; transition: transform .7s ease; }
.cat-tile:hover .ph-art{ transform: scale(1.06); }
.cat-tile::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
}
.cat-label{ position: absolute; left: 24px; bottom: 22px; z-index: 2; }
.cat-label .cat-name{ font-family: var(--font-display); font-size: 30px; font-weight: 700; margin: 0 0 6px; }
.cat-label .shop-now{ display: inline-block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--off-white); }

/* Placeholder art */
.ph-art{
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--black-3) 0%, var(--black-2) 55%, var(--navy) 130%);
  position: relative;
}
.ph-art::before{
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 6px);
}
.ph-art svg{ width: 34%; opacity: 0.5; stroke: var(--off-white); position: relative; z-index: 1; }

/* Product grid */
.product-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 22px; }
.product-card{ position: relative; }
.product-media{ position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--black-2); margin-bottom: 14px; }
.product-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-media img{ transform: scale(1.045); }
.product-media .ph-art{ transition: transform .6s ease, opacity .4s ease; }
.product-card:hover .ph-art{ transform: scale(1.045); }
.product-tag{
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--navy-bright);
  color: var(--white);
  padding: 5px 9px;
  z-index: 2;
}
.product-wish{
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.55);
  border: 1px solid var(--line);
  z-index: 2;
  opacity: 0;
  transition: opacity .25s ease;
}
.product-card:hover .product-wish{ opacity: 1; }
.product-wish svg{ width: 16px; height: 16px; stroke: var(--off-white); }
.quick-add{
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  padding: 12px;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--line);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
  z-index: 2;
  color: var(--off-white);
  cursor: pointer;
}
.product-card:hover .quick-add{ opacity: 1; transform: translateY(0); }
.quick-add:hover{ background: var(--navy-bright); }
.quick-add.loading{ opacity: 0.6; cursor: default; }
.product-info .p-name{ font-size: 13.5px; margin: 0 0 5px; color: var(--off-white); }
.product-info .p-price{ font-size: 13.5px; color: var(--grey); display: flex; gap: 8px; }
.p-price del, .p-price .was{ text-decoration: line-through; color: var(--grey-dim); }
.p-price ins, .p-price .now{ text-decoration: none; color: var(--navy-light); }

/* WooCommerce price overrides */
.woocommerce-Price-amount{ color: inherit; }

/* Editorial split */
.editorial{ display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.editorial .ph-art{ min-height: 560px; }
.editorial-text{
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px; background: var(--black-2);
}
.editorial-text .eyebrow{ margin-bottom: 14px; }
.editorial-text h2{
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700; line-height: 1.1;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.editorial-text p{ color: var(--grey); font-size: 14.5px; line-height: 1.75; max-width: 420px; margin: 0 0 30px; }

/* Newsletter */
.newsletter{ background: var(--navy); padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.newsletter::before{ content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), transparent 40%); }
.newsletter-inner{ position: relative; max-width: 560px; margin: 0 auto; }
.newsletter h2{ font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; margin: 0 0 14px; }
.newsletter p{ color: rgba(242,241,237,0.75); font-size: 14px; margin: 0 0 32px; }
.newsletter-form{ display: flex; border-bottom: 1px solid rgba(242,241,237,0.4); padding-bottom: 10px; }
.newsletter-form input{ flex: 1; background: none; border: none; color: var(--off-white); font-size: 14px; outline: none; padding: 6px 4px; }
.newsletter-form input::placeholder{ color: rgba(242,241,237,0.5); }
.newsletter-form button{ background: none; border: none; color: var(--off-white); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.newsletter-form button:hover{ color: var(--navy-light); }

/* Footer */
footer.site-footer{ background: var(--black); border-top: 1px solid var(--line-soft); padding: 80px 0 0; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; padding-bottom: 60px; }
.footer-brand .logo{ justify-content: flex-start; margin-bottom: 16px; }
.footer-brand p{ color: var(--grey); font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col h5{ font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin: 0 0 18px; }
.footer-col ul li{ margin-bottom: 12px; }
.footer-col a{ font-size: 13.5px; color: var(--off-white); }
.footer-col a:hover{ color: var(--navy-light); }
.social-row{ display: flex; gap: 14px; margin-top: 20px; }
.social-row a{ width: 34px; height: 34px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.social-row a:hover{ border-color: var(--navy-light); }
.social-row svg{ width: 16px; height: 16px; stroke: currentColor; }
.footer-bottom{ border-top: 1px solid var(--line-soft); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p{ margin: 0; font-size: 12px; color: var(--grey-dim); }
.footer-legal{ display: flex; gap: 22px; }
.footer-legal a{ font-size: 12px; color: var(--grey-dim); }
.footer-legal a:hover{ color: var(--off-white); }

/* Breadcrumb */
.breadcrumb{ display: flex; gap: 8px; align-items: center; padding: 22px 0; font-size: 12px; color: var(--grey-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.breadcrumb a:hover{ color: var(--off-white); }
.breadcrumb .current{ color: var(--off-white); }

/* Shop layout */
.shop-layout{ display: grid; grid-template-columns: 240px 1fr; gap: 50px; align-items: flex-start; }
.filters h5{ font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin: 0 0 16px; }
.filter-group{ border-bottom: 1px solid var(--line-soft); padding-bottom: 24px; margin-bottom: 24px; }
.filter-group label{ display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--grey); margin-bottom: 12px; cursor: pointer; }
.filter-group label:hover{ color: var(--off-white); }
.filter-group input[type="checkbox"]{ appearance: none; width: 15px; height: 15px; border: 1px solid var(--line); background: var(--black-2); position: relative; flex-shrink: 0; }
.filter-group input[type="checkbox"]:checked{ background: var(--navy-bright); border-color: var(--navy-bright); }
.shop-toolbar{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--line-soft); font-size: 12.5px; color: var(--grey); }
.sort-select,
.woocommerce-ordering select,
select.orderby{
  appearance: none;
  -webkit-appearance: none;
  background: var(--black) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c8c88' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  color: var(--off-white);
  border: 1px solid var(--line);
  padding: 8px 36px 8px 12px;
  font-size: 12.5px;
  font-family: var(--font-body);
  cursor: pointer;
}
.sort-select option,
.woocommerce-ordering select option,
select.orderby option{ background: var(--black); color: var(--off-white); }
.page-hero{ padding-top: 60px; padding-bottom: 20px; }
.page-hero h1{ font-family: var(--font-display); font-size: clamp(34px, 4vw, 54px); font-weight: 700; margin: 0 0 12px; text-transform: uppercase; }
.page-hero p{ color: var(--grey); max-width: 520px; font-size: 14px; line-height: 1.6; }

/* Product detail (PDP) */
.pdp{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 30px 0 90px; }
.pdp-gallery{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pdp-gallery .ph-art{ aspect-ratio: 3/4; }
.pdp-gallery .full{ grid-column: 1 / -1; }
.pdp-gallery img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.pdp-info{ position: sticky; top: calc(var(--nav-h) + 40px); align-self: start; }
.pdp-info .eyebrow{ margin-bottom: 10px; }
.pdp-info h1{ font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); margin: 0 0 14px; font-weight: 700; text-transform: uppercase; }
.pdp-price{ font-size: 18px; color: var(--navy-light); margin-bottom: 24px; }
.pdp-desc{ color: var(--grey); font-size: 14px; line-height: 1.75; margin-bottom: 30px; }
.size-row{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.size-row span{ font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }
.size-guide{ font-size: 12px; text-decoration: underline; color: var(--grey); }
.size-options{ display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.size-opt{ min-width: 46px; height: 46px; padding: 0 10px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--off-white); background: transparent; cursor: pointer; transition: border-color .2s, background .2s, color .2s; }
.size-opt:hover{ border-color: var(--off-white); }
.size-opt.selected{ background: var(--off-white); color: var(--black); border-color: var(--off-white); }
.pdp-actions{ display: flex; gap: 12px; margin-bottom: 40px; }
.pdp-actions .btn{ flex: 1; padding: 17px; }
.icon-btn{ width: 54px; height: 54px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: none; }
.icon-btn svg{ width: 20px; height: 20px; stroke: var(--off-white); }
.icon-btn:hover{ border-color: var(--navy-light); }
.accordion-item{ border-top: 1px solid var(--line-soft); }
.accordion-item:last-child{ border-bottom: 1px solid var(--line-soft); }
.accordion-head{ display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.accordion-head svg{ width: 14px; height: 14px; stroke: var(--off-white); transition: transform .3s ease; }
.accordion-item.open .accordion-head svg{ transform: rotate(45deg); }
.accordion-body{ max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--grey); font-size: 13.5px; line-height: 1.7; }
.accordion-item.open .accordion-body{ max-height: 240px; padding-bottom: 20px; }
.modest-note{ display: flex; gap: 12px; align-items: flex-start; background: var(--black-2); border: 1px solid var(--line-soft); padding: 16px; margin-top: 30px; font-size: 12.5px; color: var(--grey); line-height: 1.6; }
.modest-note svg{ width: 20px; height: 20px; stroke: var(--navy-light); flex-shrink: 0; margin-top: 2px; }

/* WooCommerce add to cart form on PDP */
.woocommerce-variation-add-to-cart .button,
form.cart .button,
.single_add_to_cart_button{
  background: var(--off-white);
  color: var(--black);
  border: 1px solid var(--off-white);
  padding: 17px 30px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background .35s ease, color .35s ease;
  width: 100%;
}
.woocommerce-variation-add-to-cart .button:hover,
form.cart .button:hover,
.single_add_to_cart_button:hover{
  background: var(--navy-bright);
  color: var(--white);
  border-color: var(--navy-bright);
}
.woocommerce-variation-description p{ color: var(--grey); font-size: 13px; margin: 0 0 16px; }

/* WC variation selects — dark theme */
.variations select,
form.cart select{
  appearance: none;
  -webkit-appearance: none;
  background: var(--black-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c8c88' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: var(--off-white);
  border: 1px solid var(--line);
  padding: 13px 40px 13px 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  width: 100%;
  cursor: pointer;
  transition: border-color .2s ease;
}
.variations select:focus,
form.cart select:focus{
  outline: none;
  border-color: var(--navy-light);
}
.variations select option,
form.cart select option{
  background: var(--black-2);
  color: var(--off-white);
}

/* Table layout for variation labels + selects */
.variations{ width: 100%; border-collapse: collapse; }
.variations tr{ display: flex; flex-direction: column; margin-bottom: 14px; }
.variations .label{ display: none; }
.variations td{ padding: 0; }

/* Hide WC's default quantity input — replaced by custom stepper */
.woocommerce-variation-add-to-cart .quantity,
form.cart .quantity{ display: none !important; }

/* Custom PDP quantity stepper */
.pdp-qty-wrap{
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0;
}
.pdp-qty-label{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
  min-width: 60px;
}
.pdp-qty-stepper{
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}
.pdp-qty-btn{
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-qty-btn:hover{ background: var(--black-2); }
.pdp-qty-count{
  min-width: 48px;
  text-align: center;
  font-size: 14px;
  font-family: var(--font-body);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 0 4px;
  line-height: 44px;
  user-select: none;
}

/* Variable product: stepper appears below WC variation form */
#pdp-qty-variable{ margin-top: 16px; }

/* Search overlay */
.search-overlay{
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.search-overlay.active{ opacity: 1; pointer-events: all; }
.search-overlay-form{
  display: flex;
  align-items: center;
  width: min(680px, 90vw);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  gap: 12px;
}
.search-overlay-form input[type="search"]{
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.search-overlay-form input[type="search"]::placeholder{ color: var(--grey-dim); }
.search-overlay-form button[type="submit"]{
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.search-overlay-form button[type="submit"] svg{
  width: 28px;
  height: 28px;
  stroke: var(--off-white);
}
.search-overlay-close{
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: none;
  color: var(--grey);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.search-overlay-close:hover{ color: var(--off-white); }

/* Search results page */
.search-bar-form{
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  max-width: 560px;
}
.search-bar-form input[type="search"]{
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
}
.search-bar-form input[type="search"]::placeholder{ color: var(--grey-dim); }
.search-bar-form button[type="submit"]{
  background: none;
  border: none;
  border-left: 1px solid var(--line);
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
}
.search-bar-form button[type="submit"] svg{
  width: 18px;
  height: 18px;
  stroke: var(--grey);
}

/* WooCommerce My Account — fix flush-left layout */
.woocommerce-account .woocommerce,
.woocommerce-account .entry-content{ max-width: 1500px; margin: 0 auto; padding: 60px 40px 100px; }
.woocommerce-account .woocommerce-MyAccount-navigation{ margin-bottom: 32px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul{ display: flex; flex-wrap: wrap; gap: 8px; }
.woocommerce-account .woocommerce-MyAccount-navigation li a{
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color .2s, border-color .2s;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a{
  color: var(--off-white);
  border-color: var(--off-white);
}
.woocommerce-account .woocommerce-MyAccount-content{ color: var(--grey); line-height: 1.8; }
.woocommerce-account .woocommerce-MyAccount-content a{ color: var(--off-white); text-decoration: underline; }
.woocommerce-account h2,
.woocommerce-account h3{ font-family: var(--font-display); text-transform: uppercase; font-size: 20px; font-weight: 700; color: var(--off-white); margin: 0 0 20px; }

/* Cart page */
.cart-layout{ display: grid; grid-template-columns: 1fr 380px; gap: 60px; padding: 20px 0 100px; align-items: start; }
.cart-item{ display: grid; grid-template-columns: 110px 1fr auto; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.cart-item .ph-art{ aspect-ratio: 3/4; }
.cart-item img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.cart-item-name{ font-size: 15px; margin: 0 0 6px; }
.cart-item-meta{ font-size: 12.5px; color: var(--grey); margin: 0 0 14px; }
.qty-stepper{ display: inline-flex; align-items: center; border: 1px solid var(--line); }
.qty-stepper button{ width: 30px; height: 30px; background: none; border: none; color: var(--off-white); font-size: 14px; }
.qty-stepper button:hover{ color: var(--navy-light); }
.qty-stepper span{ width: 30px; text-align: center; font-size: 13px; }
.cart-item-price{ text-align: right; font-size: 14.5px; }
.remove-link{ display: block; margin-top: 14px; font-size: 12px; color: var(--grey-dim); text-decoration: underline; cursor: pointer; }
.remove-link:hover{ color: var(--off-white); }
.cart-empty{ text-align: center; padding: 100px 0; }
.cart-empty svg{ width: 60px; height: 60px; stroke: var(--grey-dim); margin-bottom: 24px; }
.cart-empty h2{ font-family: var(--font-display); font-size: 28px; font-weight: 700; margin: 0 0 12px; text-transform: uppercase; }
.cart-empty p{ color: var(--grey); margin: 0 0 30px; }
.summary{ background: var(--black-2); border: 1px solid var(--line-soft); padding: 32px; position: sticky; top: calc(var(--nav-h) + 40px); }
.summary h3{ font-family: var(--font-display); font-size: 20px; margin: 0 0 24px; font-weight: 700; text-transform: uppercase; }
.summary-row{ display: flex; justify-content: space-between; font-size: 13.5px; color: var(--grey); margin-bottom: 14px; }
.summary-row.total{ color: var(--off-white); font-size: 16px; border-top: 1px solid var(--line-soft); padding-top: 18px; margin-top: 10px; }
.summary-row.total .amt{ color: var(--navy-light); }

/* Cart drawer */
.drawer-overlay{ position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 200; }
.drawer-overlay.active{ opacity: 1; pointer-events: auto; }
.drawer{ position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw; background: var(--black-2); border-left: 1px solid var(--line-soft); transform: translateX(100%); transition: transform .4s ease; z-index: 201; display: flex; flex-direction: column; }
.drawer.active{ transform: translateX(0); }
.drawer-head{ display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid var(--line-soft); }
.drawer-head h4{ font-family: var(--font-display); font-size: 18px; margin: 0; font-weight: 700; text-transform: uppercase; }
.drawer-close{ background: none; border: none; color: var(--off-white); font-size: 20px; }
.drawer-body{ flex: 1; overflow-y: auto; padding: 20px 24px; }
.drawer-foot{ padding: 24px; border-top: 1px solid var(--line-soft); }
.cart-empty-msg{ color: var(--grey); font-size: 13.5px; }

/* WC notices */
.woocommerce-message, .woocommerce-error, .woocommerce-info{
  background: var(--black-2);
  border-left: 3px solid var(--navy-light);
  padding: 14px 20px;
  margin: 0 0 24px;
  font-size: 13.5px;
  color: var(--off-white);
  list-style: none;
}
.woocommerce-error{ border-color: #c0392b; }

/* Responsive */
@media (max-width: 1100px){
  .product-grid{ grid-template-columns: repeat(3, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr 1fr; }
  .pdp{ grid-template-columns: 1fr; }
  .pdp-info{ position: static; }
  .cart-layout{ grid-template-columns: 1fr; }
  .summary{ position: static; }
}
@media (max-width: 860px){
  .nav-links{ display: none; }
  .menu-toggle{ display: flex; }
  .cat-grid{ grid-template-columns: 1fr 1fr; }
  .product-grid{ grid-template-columns: 1fr 1fr; }
  .editorial{ grid-template-columns: 1fr; }
  .editorial-text{ padding: 50px 30px; }
  .shop-layout{ grid-template-columns: 1fr; }
  .filters{ display: none; }
  .container{ padding: 0 20px; }
  .nav-top{ padding: 0 16px; }
  .nav-left .nav-icon-btn span, .nav-right .nav-icon-btn span{ display: none; }
  .logo-img{ height: 30px; }
  .hero-content{ padding: 0 20px 60px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

/* Mobile nav overlay — full-screen, direct body child (outside backdrop-filter header) */
.mobile-nav-overlay{
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0a0a0a;
  z-index: 99999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.mobile-nav-overlay.open{ display: flex; }
.mobile-nav-overlay a{
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
}
.mobile-nav-overlay a.active{ color: var(--grey); }
.mobile-nav-overlay-close{
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 520px){
  .announce{ font-size: 10px; padding: 9px 16px; }
  .nav-top{ height: 60px; }
  .hero-title{ font-size: clamp(48px, 15vw, 80px); }
  .hero-content{ padding: 0 16px 50px; }
  .hero-sub{ font-size: 13.5px; }
  .hero-actions{ flex-direction: column; gap: 10px; }
  .hero-actions .btn{ width: 100%; text-align: center; }
  .cat-grid{ grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-grid{ grid-template-columns: 1fr 1fr; gap: 16px 10px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .section{ padding: 48px 0; }
  .section-head{ flex-direction: column; gap: 10px; align-items: flex-start; }
  .p-name{ font-size: 13px; }
  .cart-item{ grid-template-columns: 64px 1fr auto; gap: 12px; }
  .drawer{ width: 100%; right: 0; }
  .newsletter-form{ flex-direction: column; gap: 10px; }
  .newsletter-form input, .newsletter-form button{ width: 100%; }
  /* Mobile PDP — swipeable carousel gallery */
  .pdp{ padding: 0 0 100px; gap: 0; }
  .pdp-gallery{
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    margin: 0 -20px;
  }
  .pdp-gallery::-webkit-scrollbar{ display: none; }
  .pdp-gallery > *{
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    grid-column: auto;
  }
  .pdp-gallery img{ aspect-ratio: 4/5; object-fit: cover; height: auto; }
  .pdp-gallery .ph-art{ aspect-ratio: 4/5; min-width: 100%; }
  .pdp-info{ padding: 24px 0 0; }

  /* Mobile sticky add-to-bag bar */
  .mobile-sticky-atc{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--black);
    border-top: 1px solid var(--line);
    padding: 12px 20px;
    z-index: 800;
    gap: 12px;
  }
  .mobile-sticky-price{
    font-size: 16px;
    color: var(--off-white);
    font-weight: 600;
    flex-shrink: 0;
  }
  .mobile-sticky-btn{
    flex: 1;
    background: var(--off-white);
    color: var(--black);
    border: none;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
  }

  /* WC form inputs — dark on mobile account page */
  .woocommerce-account .woocommerce,
  .woocommerce-account .entry-content{ padding: 40px 20px 120px; }

}

/* Hide WC variation "Clear" link and replace dropdown with custom buttons */
.reset_variations{ display: none !important; }
.variations_form .variations{ display: none !important; }


/* WC form inputs — dark globally */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select{
  background: var(--black-2);
  border: 1px solid var(--line);
  color: var(--off-white);
  padding: 12px 16px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus{
  outline: none;
  border-color: var(--navy-light);
}
.woocommerce form .form-row label{ font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: 6px; display: block; }
.woocommerce-form-login__submit,
.woocommerce-form-register__submit,
.woocommerce button[type="submit"]{
  background: var(--off-white) !important;
  color: var(--black) !important;
  border: none !important;
  padding: 14px 28px !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 0 !important;
}
.woocommerce-form-login__submit:hover,
.woocommerce-form-register__submit:hover{ background: var(--navy-bright) !important; color: var(--white) !important; }
.woocommerce-privacy-policy-text,
.woocommerce-form__label-for-checkbox{ color: var(--grey); font-size: 13px; }
.woocommerce-LostPassword a,
.woocommerce-form__label a{ color: var(--navy-light) !important; }
.woocommerce-account .col2-set{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media(max-width: 860px){ .woocommerce-account .col2-set{ grid-template-columns: 1fr; } }

/* Mobile sticky ATC hidden on desktop */
.mobile-sticky-atc{ display: none; }
@media(max-width: 860px){ .mobile-sticky-atc{ display: flex; } }

/* WooCommerce checkout — dark inputs (classic + blocks) */
.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.wc-block-checkout input,
.wc-block-checkout select,
.wc-block-checkout textarea,
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-textarea textarea{
  background: var(--black-2) !important;
  background-color: var(--black-2) !important;
  border: 1px solid var(--line) !important;
  border-color: var(--line) !important;
  color: var(--off-white) !important;
  font-family: var(--font-body) !important;
  padding: 12px 16px !important;
}
.woocommerce-checkout input:focus,
.wc-block-checkout input:focus,
.wc-block-components-text-input input:focus{
  outline: none !important;
  border-color: var(--navy-light) !important;
  box-shadow: none !important;
}
/* WC Blocks text inputs: extra top padding so floating label has room */
.wc-block-components-text-input{ position: relative; }
.wc-block-components-text-input input{
  padding: 24px 16px 8px 16px !important;
}
.wc-block-components-text-input label,
.wc-block-components-select label,
.wc-block-checkout .wc-block-components-form .wc-block-components-label,
.woocommerce-checkout label{ color: var(--grey) !important; font-size: 12px !important; letter-spacing: 0.04em !important; text-transform: none !important; }
.wc-block-checkout .wc-block-components-notice,
.wc-block-checkout .wc-block-cart__submit-button,
.wc-block-checkout__actions .wc-block-components-button{
  background: var(--off-white) !important;
  color: var(--black) !important;
}
.wc-block-checkout .wc-block-components-order-summary{ color: var(--off-white); }
/* Placeholder text */
.wc-block-checkout input::placeholder,
.woocommerce-checkout input::placeholder{ color: var(--grey-dim) !important; }
