/*
Theme Name: Rumoha Final
Theme URI: https://rumoha.com
Description: Premium handcrafted chikankari — clean minimal D2C theme
Author: Rumoha
Version: 4.0.0
Text Domain: rumoha
*/

/* ─── DESIGN TOKENS ─── */
:root {
  --bg:       #ffffff;
  --bg2:      #f5f1ec;
  --bg3:      #f0ece6;
  --bg4:      #ede8e0;
  --ink:      #111111;
  --ink2:     #333333;
  --mid:      #777777;
  --light:    #aaaaaa;
  --border:   #e8e4de;
  --border2:  #d4cfc8;
  --rust:     #b85c3c;
  --gold:     #c8a060;
  --F:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max:      1280px;
  --nav-h:    60px;
  --gap:      1px;
  --section:  56px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--F);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ─── UTILITY ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.section-title strong { font-weight: 600; }
.view-all {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.view-all:hover { color: var(--ink); border-color: var(--ink); }

/* ─── ANNOUNCE BAR ─── */
#rumoha-announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
#rumoha-announce .ann-sep { opacity: .3; margin: 0 16px; }

/* ─── NAV ─── */
#rumoha-nav {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 90;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.nav-logo span { color: var(--rust); }
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
}
.nav-links a { transition: color .15s; cursor: pointer; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 2px; }
.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 18px;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s;
  position: relative;
}
.nav-icon-btn:hover { color: var(--ink); }
.cart-count {
  position: absolute;
  top: 3px; right: 3px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-hamburger {
  background: none; border: none;
  font-size: 20px; color: var(--mid);
  cursor: pointer; padding: 8px;
  display: none;
}

/* ─── MOBILE NAV ─── */
#mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
#mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav-logo { font-size: 18px; font-weight: 600; text-transform: uppercase; color: #fff; letter-spacing: .02em; }
.mobile-nav-logo span { color: var(--rust); }
.mobile-close { background: none; border: none; font-size: 22px; color: rgba(255,255,255,.4); cursor: pointer; }
.mobile-nav-links { padding: 32px 28px; flex: 1; }
.mobile-nav-links a {
  display: block;
  font-size: 32px;
  font-weight: 300;
  color: rgba(255,255,255,.2);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  letter-spacing: -.02em;
  transition: color .2s, padding-left .2s;
}
.mobile-nav-links a:hover { color: #fff; padding-left: 8px; }
.mobile-nav-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}

/* ─── SEARCH OVERLAY ─── */
#search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
#search-overlay.open { opacity: 1; pointer-events: all; }
.search-box { width: 100%; max-width: 540px; padding: 0 32px; }
.search-box input[type="search"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--ink);
  font-family: var(--F);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  padding: 12px 0;
  outline: none;
  letter-spacing: -.01em;
}
.search-box input::placeholder { color: var(--border2); }
.search-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none; border: none;
  font-size: 22px; color: var(--mid); cursor: pointer;
}

/* ─── CART DRAWER ─── */
<style>
  #cart-drawer {
    transform: translateX(100%);
    transition: transform .35s ease;
    top: 0 !important;
    height: 100vh !important;
    z-index: 99999 !important;
  }
  #cart-drawer.open { transform: translateX(0); }
  body.admin-bar #cart-drawer { top: 32px !important; height: calc(100vh - 32px) !important; }
</style>
#cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 99999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,.06);
}
#cart-drawer.open { transform: translateX(0); }
body.admin-bar #cart-drawer { top: 32px; height: calc(100vh - 32px); }
#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  min-height: 58px;
  flex-shrink: 0;
}
.cart-drawer-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
}
.cart-close-btn {
  background: none; border: none;
  font-size: 18px; color: var(--mid); cursor: pointer;
  padding: 4px;
  transition: color .15s;
}
.cart-close-btn:hover { color: var(--ink); }
#cart-items-wrap { flex: 1; overflow-y: auto; padding: 0 20px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 68px; height: 80px;
  background: var(--bg2);
  flex-shrink: 0;
  object-fit: cover;
}
.cart-item-name { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 3px; line-height: 1.3; }
.cart-item-meta { font-size: 10.5px; color: var(--mid); margin-bottom: 8px; }
.cart-qty-row { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--border2);
  background: none;
  font-size: 14px;
  color: var(--mid);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.qty-btn:hover { border-color: var(--ink); color: var(--ink); }
.qty-value { font-size: 13px; font-weight: 500; min-width: 20px; text-align: center; }
.cart-item-remove {
  background: none; border: none;
  color: var(--light); font-size: 15px;
  cursor: pointer; padding: 0 2px;
  transition: color .15s;
  margin-left: auto;
  align-self: flex-start;
  padding-top: 2px;
}
.cart-item-remove:hover { color: var(--rust); }
.cart-item-price { font-size: 14px; font-weight: 600; color: var(--ink); align-self: flex-start; white-space: nowrap; }
.cart-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.cart-subtotal-label { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); }
.cart-subtotal-val { font-size: 16px; font-weight: 600; color: var(--ink); }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; margin-bottom: 14px;
  border-top: 1px solid var(--border);
}
.cart-total-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.cart-total-val { font-size: 22px; font-weight: 600; color: var(--ink); }
.btn-checkout {
  display: block; width: 100%;
  background: var(--ink); color: #fff;
  text-align: center;
  padding: 14px;
  font-family: var(--F);
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: opacity .15s;
  margin-bottom: 10px;
}
.btn-checkout:hover { opacity: .85; }
.cart-cod-note {
  text-align: center;
  font-size: 10.5px;
  color: var(--mid);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.cart-empty {
  text-align: center; padding: 48px 24px; color: var(--light);
}
.cart-empty i { font-size: 36px; display: block; margin-bottom: 10px; opacity: .3; }
.cart-empty p { font-size: 13px; }

/* ─── HERO ─── */
.hero-section {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 560px;
  border-bottom: 1px solid var(--border);
}
.hero-img-side {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-placeholder {
  width: 100%; height: 100%; min-height: 520px;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-placeholder i { font-size: 64px; color: var(--border2); }
.hero-campaign-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,.9);
  padding: 5px 10px;
  font-size: 9px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid);
}
.hero-content-side {
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.hero-eyebrow { margin-bottom: 16px; }
.hero-h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.hero-h1 strong { font-weight: 600; }
.hero-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary {
  background: var(--ink); color: #fff;
  padding: 13px 24px;
  font-family: var(--F);
  font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: opacity .15s;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-primary:hover { opacity: .85; }
.btn-secondary {
  background: transparent; color: var(--ink);
  padding: 12px 20px;
  font-family: var(--F);
  font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--border2); cursor: pointer;
  transition: border-color .15s;
}
.btn-secondary:hover { border-color: var(--ink); }
.hero-stats {
  display: flex; gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 22px; font-weight: 600;
  color: var(--ink); line-height: 1; margin-bottom: 3px;
}
.hero-stat-label {
  font-size: 10px; font-weight: 400;
  color: var(--mid); letter-spacing: .06em;
}

/* ─── MARQUEE ─── */
.marquee-section {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; animation: marquee 20s linear infinite; }
.marquee-item {
  font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mid);
  padding: 0 28px;
  display: flex; align-items: center; gap: 10px;
}
.marquee-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--border2); flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── SECTION HEADER ─── */
.section-head {
  max-width: var(--max); margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── COLLECTIONS ─── */
.collections-section { padding: var(--section) 0 0; }
.collections-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3px;
}
.coll-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg2);
  display: block;
}
.coll-card.large { grid-row: span 2; }
.coll-inner {
  display: flex; align-items: center; justify-content: center;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.coll-card.large .coll-inner { min-height: 424px; }
.coll-inner-sm { min-height: 210px; }
.coll-card:hover .coll-inner { transform: scale(1.04); }
.coll-inner img { width: 100%; height: 100%; object-fit: cover; }
.coll-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
}
.coll-name { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.coll-card.large .coll-name { font-size: 20px; }
.coll-count { font-size: 10px; color: rgba(255,255,255,.55); letter-spacing: .06em; }
.coll-badge {
  position: absolute; top: 12px; left: 12px;
  background: #fff; color: var(--ink);
  font-size: 9px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 8px;
}
.coll-sub-col { display: flex; flex-direction: column; gap: 3px; }

/* ─── PRODUCTS ─── */
.products-section { padding: var(--section) 0 0; }
.products-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.product-card { background: var(--bg); cursor: pointer; }
.product-card-img {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}
.product-card-img-inner {
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.product-card-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.product-card-img-inner i { font-size: 36px; color: var(--border); }
.product-card:hover .product-card-img-inner { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 9px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px;
}
.badge-new { background: var(--ink); color: #fff; }
.badge-sale { background: var(--rust); color: #fff; }
.product-quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--ink); color: #fff;
  text-align: center; padding: 12px;
  font-family: var(--F);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  border: none; cursor: pointer; width: 100%;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.product-card:hover .product-quick-add { transform: translateY(0); }
.product-meta { padding: 12px 14px 16px; }
.product-name { font-size: 13px; font-weight: 400; color: var(--ink); margin-bottom: 3px; line-height: 1.3; }
.product-fabric { font-size: 10.5px; color: var(--mid); margin-bottom: 7px; }
.product-price-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-current { font-size: 14px; font-weight: 600; color: var(--ink); }
.price-original { font-size: 12px; color: var(--light); text-decoration: line-through; font-weight: 400; }
.price-save { font-size: 10px; color: var(--rust); font-weight: 500; }

/* ─── CRAFT BANNER ─── */
.craft-banner {
  max-width: var(--max); margin: var(--section) auto 0;
  padding: 0 32px;
}
.craft-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  min-height: 280px;
}
.craft-img {
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
}
.craft-img i { font-size: 48px; color: var(--border2); }
.craft-content {
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.craft-eyebrow { margin-bottom: 14px; }
.craft-title {
  font-size: 28px; font-weight: 300; color: var(--ink);
  line-height: 1.2; margin-bottom: 20px; letter-spacing: -.01em;
}
.craft-title strong { font-weight: 600; }
.craft-stats { display: flex; gap: 32px; padding-top: 20px; border-top: 1px solid var(--border); }
.craft-stat-num { font-size: 24px; font-weight: 600; color: var(--ink); line-height: 1; margin-bottom: 3px; }
.craft-stat-label { font-size: 10px; font-weight: 400; color: var(--mid); }

/* ─── PDP ─── */
.pdp-wrap {
  max-width: var(--max); margin: 0 auto;
  padding: 40px 32px;
}
.pdp-breadcrumb {
  font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--light);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.pdp-breadcrumb a { cursor: pointer; transition: color .15s; }
.pdp-breadcrumb a:hover { color: var(--ink); }
.pdp-breadcrumb span { color: var(--border2); }
.pdp-grid { display: grid; grid-template-columns: 68px 1fr 1fr; gap: 0; }
.pdp-thumbs { display: flex; flex-direction: column; gap: 6px; padding-right: 12px; }
.pdp-thumb {
  width: 52px; height: 62px;
  border: 1.5px solid transparent;
  cursor: pointer;
  background: var(--bg2);
  overflow: hidden;
  transition: border-color .15s;
  flex-shrink: 0;
}
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--ink); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main-img {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-main-placeholder {
  aspect-ratio: 3/4;
  max-height: 640px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2);
}
.pdp-main-placeholder i { font-size: 64px; color: var(--border2); }
.pdp-details { padding: 0 0 0 40px; }
.pdp-category {
  font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 12px;
}
.pdp-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 5px;
}
.pdp-title strong { font-weight: 600; }
.pdp-fabric-sub {
  font-size: 11px; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 8px;
}
.pdp-sensation {
  font-size: 13px; font-style: italic; font-weight: 300;
  color: var(--rust); line-height: 1.55;
  margin-bottom: 18px;
}
.pdp-price-block {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 4px;
}
.pdp-price { font-size: 26px; font-weight: 600; color: var(--ink); }
.pdp-orig { font-size: 15px; color: var(--light); text-decoration: line-through; font-weight: 400; }
.pdp-save-badge {
  background: var(--rust); color: #fff;
  font-size: 9px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px;
}
.pdp-fit-note {
  background: var(--bg2);
  border-left: 2px solid var(--border2);
  padding: 10px 14px;
  font-size: 12px; color: var(--mid);
  line-height: 1.55; margin: 16px 0; font-weight: 400;
}
.pdp-fit-note strong { font-weight: 500; color: var(--ink); }
.pdp-size-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.pdp-size-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--mid);
}
.pdp-size-guide {
  font-size: 10px; color: var(--mid);
  text-decoration: underline; cursor: pointer; font-weight: 400;
}
.pdp-sizes { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.size-option {
  min-width: 42px; height: 42px;
  border: 1px solid var(--border2);
  background: transparent;
  font-family: var(--F);
  font-size: 11px; font-weight: 500;
  color: var(--mid); cursor: pointer;
  padding: 0 10px;
  transition: all .15s;
}
.size-option:hover { border-color: var(--ink); color: var(--ink); }
.size-option.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.size-option.sold-out { opacity: .35; text-decoration: line-through; cursor: not-allowed; }
.pdp-atc-row { display: flex; gap: 8px; margin-bottom: 12px; }
.pdp-atc {
  flex: 1;
  background: var(--ink); color: #fff;
  padding: 14px 20px;
  font-family: var(--F);
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: opacity .15s;
}
.pdp-atc:hover { opacity: .85; }
.pdp-wish {
  width: 48px; height: 48px;
  border: 1px solid var(--border2);
  background: transparent; font-size: 18px;
  color: var(--mid); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.pdp-wish:hover { border-color: var(--ink); color: var(--ink); }
.pdp-cod {
  font-size: 11.5px; color: var(--mid);
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 18px; font-weight: 400;
}
.pdp-cod i { font-size: 15px; color: var(--ink); }
.pdp-perks { display: flex; flex-direction: column; gap: 9px; padding-top: 16px; border-top: 1px solid var(--border); }
.pdp-perk { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--mid); }
.pdp-perk i { font-size: 15px; color: var(--ink); flex-shrink: 0; }
.pdp-accordion { border-top: 1px solid var(--border); margin-top: 20px; }
.pdp-accordion-item { border-bottom: 1px solid var(--border); }
.pdp-accordion-trigger {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  padding: 14px 0; background: none; border: none;
  cursor: pointer; text-align: left;
}
.pdp-accordion-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
}
.pdp-accordion-icon { font-size: 16px; color: var(--mid); transition: transform .25s; }
.pdp-accordion-item.open .pdp-accordion-icon { transform: rotate(45deg); }
.pdp-accordion-body {
  font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.pdp-accordion-item.open .pdp-accordion-body { max-height: 400px; padding-bottom: 16px; }
.pdp-artisan-note {
  margin-top: 20px;
  background: var(--bg2);
  border-left: 2px solid var(--border2);
  padding: 12px 16px;
  font-size: 12.5px; font-style: italic; font-weight: 300;
  color: var(--mid); line-height: 1.6;
}
.pdp-urgency {
  background: #fff8f6;
  border: 1px solid rgba(184,92,60,.15);
  padding: 10px 14px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--rust);
}
.urgency-code {
  background: var(--rust); color: #fff;
  padding: 2px 8px; margin-left: 4px;
}

/* ─── SHOP PLP ─── */
.shop-hero {
  background: var(--bg2);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.shop-layout {
  max-width: var(--max); margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}
.shop-sidebar { position: sticky; top: 24px; }
.filter-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.filter-head-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.filter-clear { font-size: 10px; color: var(--mid); cursor: pointer; text-decoration: underline; }
.filter-group { margin-bottom: 24px; }
.filter-group-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.filter-option {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--mid); cursor: pointer;
  margin-bottom: 8px; font-weight: 400;
  transition: color .15s;
}
.filter-option:hover { color: var(--ink); }
.filter-option input[type="checkbox"] { accent-color: var(--ink); width: 14px; height: 14px; }
.filter-count { font-size: 10px; color: var(--light); margin-left: auto; }
.shop-sort-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.shop-count { font-size: 13px; color: var(--mid); }
.shop-sort-select {
  background: transparent; border: 1px solid var(--border2);
  padding: 6px 10px;
  font-family: var(--F); font-size: 11px; font-weight: 500;
  letter-spacing: .08em; color: var(--ink); cursor: pointer; outline: none;
}
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }

/* ─── MY ACCOUNT ─── */
.account-hero { background: var(--bg2); padding: 44px 0; border-bottom: 1px solid var(--border); }
.account-greeting {
  font-size: 32px; font-weight: 300;
  color: var(--ink); letter-spacing: -.02em;
}
.account-greeting strong { font-weight: 600; }
.account-layout {
  max-width: var(--max); margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.account-sidebar { position: sticky; top: 24px; }
.account-profile {
  padding-bottom: 20px; margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.account-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--mid);
  margin-bottom: 10px;
}
.account-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.account-email { font-size: 11px; color: var(--mid); }
.account-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; font-size: 13px; font-weight: 400;
  color: var(--mid); cursor: pointer;
  border-left: 2px solid transparent;
  margin-bottom: 2px;
  transition: all .15s;
}
.account-nav-item i { font-size: 15px; }
.account-nav-item:hover { color: var(--ink); background: var(--bg2); }
.account-nav-item.active { color: var(--ink); border-left-color: var(--ink); background: var(--bg2); font-weight: 500; }
.account-content { min-height: 400px; }
.account-section-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 18px;
}
.order-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.order-row:last-child { border-bottom: none; }
.order-img { width: 52px; height: 62px; background: var(--bg2); flex-shrink: 0; object-fit: cover; }
.order-name { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.order-meta { font-size: 11px; color: var(--mid); }
.order-status {
  margin-left: auto;
  font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px;
  background: var(--bg2); color: var(--ink);
}
.order-price { font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; }

/* ─── CHECKOUT ─── */
.checkout-hero { background: var(--bg2); padding: 36px 0; border-bottom: 1px solid var(--border); text-align: center; }
.checkout-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; max-width: 440px; margin: 20px auto 0;
}
.checkout-step {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--light); flex: 1; justify-content: center;
}
.checkout-step.active { color: var(--ink); }
.checkout-step-num {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; flex-shrink: 0;
}
.checkout-step.active .checkout-step-num { background: var(--ink); color: #fff; border-color: var(--ink); }
.step-line { flex: 1; height: 1px; background: var(--border); max-width: 32px; }
.woocommerce-checkout { max-width: 900px; margin: 0 auto; padding: 40px 32px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid var(--border); border-radius: 0;
  padding: 11px 14px;
  font-family: var(--F); font-size: 14px; color: var(--ink);
  background: var(--bg); width: 100%;
  transition: border-color .15s; outline: none;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus { border-color: var(--ink); }
.woocommerce form .form-row label {
  font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--mid);
}
.woocommerce #place_order {
  background: var(--ink); color: #fff;
  font-family: var(--F); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 14px 32px; border: none; cursor: pointer;
  transition: opacity .15s; width: 100%;
}
.woocommerce #place_order:hover { opacity: .85; }

/* ─── WOOCOMMERCE NOTICES ─── */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: var(--bg2);
  border: none;
  border-left: 3px solid var(--ink);
  padding: 12px 16px 12px 20px;
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); list-style: none;
  margin: 16px 0; display: block;
}

/* ─── REVIEWS ─── */
.reviews-section { padding: var(--section) 0 0; }
.reviews-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 24px;
}
.review-card { background: var(--bg); padding: 24px; }
.review-stars { color: var(--gold); font-size: 12px; margin-bottom: 12px; }
.review-text { font-size: 13px; font-weight: 300; color: var(--ink2); line-height: 1.65; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.review-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--mid);
}
.review-name { font-size: 12px; font-weight: 500; color: var(--ink); }
.review-loc { font-size: 10px; color: var(--mid); }

/* ─── TRUST STRIP ─── */
.trust-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: var(--section);
  background: var(--bg2);
}
.trust-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; color: var(--ink); flex-shrink: 0; }
.trust-title { font-size: 12px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.trust-sub { font-size: 10.5px; color: var(--mid); }

/* ─── FOOTER ─── */
#rumoha-footer { background: var(--ink); color: rgba(255,255,255,.55); padding: 56px 0 28px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; color: #fff; margin-bottom: 6px; }
.footer-logo span { color: var(--rust); }
.footer-tagline { font-size: 12px; font-weight: 300; line-height: 1.65; max-width: 210px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 14px; font-size: 18px; color: rgba(255,255,255,.3); }
.footer-social a { transition: color .15s; }
.footer-social a:hover { color: rgba(255,255,255,.7); }
.footer-col h4 {
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fff; margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 12px; font-weight: 300;
  margin-bottom: 9px; cursor: pointer;
  transition: color .15s;
}
.footer-col a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: 10px; color: rgba(255,255,255,.2); }
.footer-craft { font-size: 11px; color: rgba(255,255,255,.2); font-style: italic; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  :root { --section: 40px; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-img-side { display: none; }
  .hero-content-side { padding: 40px 24px; border-left: none; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .coll-card.large { grid-column: span 2; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-banner-inner { grid-template-columns: 1fr; }
  .craft-img { display: none; }
  .craft-content { padding: 32px 24px; }
  .reviews-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; padding-right: 0; padding-bottom: 10px; }
  .pdp-details { padding: 24px 0 0; }
  .account-layout { grid-template-columns: 1fr; }
  #cart-drawer { width: 100%; }
  .nav-inner { padding: 0 20px; }
  .section-head { padding: 0 20px; }
  .collections-grid, .products-grid, .reviews-grid { padding: 0 20px; }
  .craft-banner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr; }
}
