/*
Theme Name: Rumoha
Theme URI: https://rumoha.in
Author: Rumoha
Author URI: https://rumoha.in
Description: A soft, feminine custom WooCommerce theme for Rumoha — handcrafted chikankari from Lucknow.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: rumoha
*/

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --rose:       #f2e0dc;
  --rose-mid:   #e8c9c3;
  --rose-deep:  #c49a91;
  --rose-text:  #7a4f49;
  --blush:      #faf5f4;
  --cream:      #fdfaf8;
  --sage:       #d4ddd0;
  --sage-text:  #4a5e47;
  --sand:       #e8e0d5;
  --ink:        #2c2420;
  --ink-light:  #6b5c58;
  --white:      #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --max-width:  1200px;
  --transition: 0.25s ease;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }
ul { list-style: none; }
input, select, textarea { font-family: var(--font-body); }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}
.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-text);
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

/* ─────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 5rem 0; }
.section--blush { background: var(--blush); }
.section--sand  { background: var(--sand); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn--primary {
  background: var(--rose-text);
  color: var(--white);
}
.btn--primary:hover { background: var(--ink); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--rose-text);
  border: 1px solid var(--rose-mid);
}
.btn--outline:hover { border-color: var(--rose-text); background: var(--rose); }
.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover { background: var(--rose-text); }
.btn--full { width: 100%; text-align: center; display: block; padding: 16px; }

/* ─────────────────────────────────────────
   ANNOUNCEMENT BAR
───────────────────────────────────────── */
.announce-bar {
  background: var(--rose-text);
  color: var(--white);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 9px 1rem;
  font-weight: 400;
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--rose-mid);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--ink);
  font-style: italic;
  flex-shrink: 0;
}
.site-logo span { color: var(--rose-text); font-style: normal; }
.site-nav { display: flex; gap: 2rem; }
.site-nav a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
  transition: color var(--transition);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.current-menu-item { color: var(--rose-text); }
.header-actions { display: flex; gap: 1rem; align-items: center; }
.header-actions__btn {
  background: none;
  border: none;
  color: var(--ink-light);
  padding: 6px;
  position: relative;
  transition: color var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.header-actions__btn:hover { color: var(--rose-text); }
.header-actions__btn svg { width: 20px; height: 20px; stroke-width: 1.5; }
.cart-count {
  position: absolute;
  top: -2px; right: -4px;
  background: var(--rose-text);
  color: var(--white);
  font-size: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  padding: 6px;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}
.hero__text {
  background: var(--blush);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
  position: relative;
}
.hero__text::after {
  content: '';
  position: absolute;
  bottom: 3rem; left: 6rem;
  width: 60px; height: 1px;
  background: var(--rose-deep);
}
.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-bottom: 1.5rem;
  font-weight: 400;
  display: block;
}
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero__heading em { color: var(--rose-text); font-style: italic; }
.hero__sub {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-light);
  max-width: 360px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__image {
  position: relative;
  overflow: hidden;
  background: var(--rose);
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 2.5rem; left: 2rem;
  background: var(--white);
  border: 1px solid var(--rose-mid);
  padding: 1rem 1.25rem;
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 0.05em;
}
.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--rose-text);
  font-weight: 400;
}

/* ─────────────────────────────────────────
   CATEGORY GRID
───────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cat-card { cursor: pointer; overflow: hidden; }
.cat-card__image {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.cat-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-card__image img { transform: scale(1.04); }
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,36,32,0);
  transition: background 0.35s;
}
.cat-card:hover .cat-card__overlay { background: rgba(44,36,32,0.12); }
.cat-card__label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-top: 0.75rem;
}
.cat-card__count { font-size: 11px; color: var(--ink-light); letter-spacing: 0.06em; margin-top: 2px; }

/* ─────────────────────────────────────────
   PRODUCT CARDS
───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  transition: transform var(--transition);
}
.product-card:hover { transform: translateY(-4px); }
.product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--rose);
}
.product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--rose-text);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 400;
}
.product-card__badge--sale { background: var(--sage-text); }
.product-card__badge--new  { background: var(--ink); }
.product-card__wishlist {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  background: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--rose-text);
  transition: background var(--transition);
}
.product-card__wishlist:hover { background: var(--rose); }
.product-card__quick {
  position: absolute;
  bottom: -44px; left: 0; right: 0;
  background: rgba(122,79,73,0.92);
  color: var(--white);
  border: none;
  padding: 13px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: bottom 0.25s ease;
  font-weight: 400;
}
.product-card:hover .product-card__quick { bottom: 0; }
.product-card__info { padding: 1.1rem 1.1rem 1.25rem; }
.product-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 3px;
  display: block;
}
.product-card__name:hover { color: var(--rose-text); }
.product-card__meta { font-size: 11px; color: var(--ink-light); letter-spacing: 0.05em; margin-bottom: 10px; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.product-card__price { font-size: 15px; font-weight: 400; color: var(--rose-text); }
.product-card__price-old { font-size: 12px; color: var(--ink-light); text-decoration: line-through; margin-left: 6px; }
.product-card__colors { display: flex; gap: 5px; }
.color-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 2px solid var(--white);
  outline: 1px solid var(--rose-mid);
}

/* ─────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--rose-mid);
  border-bottom: 1px solid var(--rose-mid);
  padding: 3rem 0;
}
.trust-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item svg { width: 22px; height: 22px; margin: 0 auto 0.75rem; color: var(--rose-text); stroke-width: 1.5; display: block; }
.trust-item strong { display: block; font-size: 12px; letter-spacing: 0.08em; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.trust-item span { font-size: 11px; color: var(--ink-light); }

/* ─────────────────────────────────────────
   BRAND STORY SPLIT
───────────────────────────────────────── */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.story-split__image { position: relative; overflow: hidden; background: var(--sand); }
.story-split__image img { width: 100%; height: 100%; object-fit: cover; }
.story-split__text {
  background: var(--cream);
  padding: 5rem 5rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-split__text p {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* ─────────────────────────────────────────
   SHOP PAGE (PLP)
───────────────────────────────────────── */
.shop-hero {
  background: var(--blush);
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--rose-mid);
}
.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.shop-hero p { font-size: 13px; color: var(--ink-light); letter-spacing: 0.06em; }

.shop-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Filters sidebar */
.shop-filters { position: sticky; top: 88px; }
.filter-group {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--rose-mid);
  padding-bottom: 1.5rem;
}
.filter-group:last-child { border-bottom: none; }
.filter-title {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 400;
}
.filter-option { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--rose-text); width: 14px; height: 14px; }
.filter-option label { font-size: 12px; color: var(--ink-light); cursor: pointer; letter-spacing: 0.03em; }
.filter-option label:hover { color: var(--rose-text); }

.size-filter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.size-filter-btn {
  border: 1px solid var(--rose-mid);
  background: none;
  padding: 7px 4px;
  font-size: 11px;
  color: var(--ink-light);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  letter-spacing: 0.06em;
}
.size-filter-btn:hover,
.size-filter-btn.active { background: var(--rose-text); color: var(--white); border-color: var(--rose-text); }

.color-filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.color-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  outline: 1px solid rgba(0,0,0,0.1);
  transition: outline-color 0.2s, border-color 0.2s;
}
.color-swatch:hover,
.color-swatch.active { outline-color: var(--rose-text); outline-width: 2px; border-color: var(--white); }

/* Shop top bar */
.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rose-mid);
}
.shop-topbar__count { font-size: 12px; color: var(--ink-light); letter-spacing: 0.05em; }
.shop-sort {
  border: 1px solid var(--rose-mid);
  background: var(--white);
  padding: 8px 14px;
  font-size: 11px;
  color: var(--ink-light);
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b5c58'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.plp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ─────────────────────────────────────────
   PRODUCT DETAIL PAGE (PDP)
───────────────────────────────────────── */
.pdp-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.pdp-gallery__main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--rose);
  margin-bottom: 0.75rem;
  position: relative;
}
.pdp-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-gallery__thumbs { display: flex; gap: 0.5rem; }
.pdp-thumb {
  width: 72px;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: var(--rose-mid);
  flex-shrink: 0;
}
.pdp-thumb.active { border-color: var(--rose-text); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info { padding-top: 0.5rem; }
.pdp-breadcrumb {
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.pdp-breadcrumb a { color: var(--rose-text); }
.pdp-breadcrumb a:hover { text-decoration: underline; }

.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 0.4rem;
}
.pdp-subtitle { font-size: 13px; color: var(--ink-light); letter-spacing: 0.06em; margin-bottom: 1.25rem; }

.pdp-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 1.5rem; }
.pdp-stars { color: var(--rose-deep); font-size: 13px; letter-spacing: 2px; }
.pdp-rating span { font-size: 12px; color: var(--ink-light); }

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rose-mid);
}
.pdp-price { font-size: 28px; font-weight: 400; color: var(--rose-text); font-family: var(--font-display); }
.pdp-price-old { font-size: 17px; color: var(--ink-light); text-decoration: line-through; font-family: var(--font-display); }
.pdp-discount { font-size: 11px; background: var(--sage); color: var(--sage-text); padding: 3px 8px; letter-spacing: 0.05em; }

.option-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.75rem;
  font-weight: 400;
  display: block;
}
.option-label em { text-transform: none; letter-spacing: 0; font-style: italic; color: var(--rose-text); margin-left: 4px; }

.pdp-colors { display: flex; gap: 10px; margin-bottom: 1.75rem; }
.pdp-color-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--white);
  outline: 1px solid var(--rose-mid);
  transition: outline-color 0.2s, outline-width 0.2s;
}
.pdp-color-swatch.active { outline-color: var(--rose-text); outline-width: 2px; }

.pdp-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 0.5rem; }
.pdp-size-btn {
  padding: 9px 20px;
  border: 1px solid var(--rose-mid);
  background: none;
  font-size: 12px;
  color: var(--ink-light);
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.pdp-size-btn:hover,
.pdp-size-btn.active { background: var(--rose-text); color: var(--white); border-color: var(--rose-text); }
.pdp-size-btn.disabled { opacity: 0.35; pointer-events: none; }

.pdp-size-guide { font-size: 11px; color: var(--rose-text); letter-spacing: 0.06em; cursor: pointer; margin-bottom: 1.75rem; display: inline-block; }
.pdp-size-guide:hover { text-decoration: underline; }

.pdp-actions { display: flex; gap: 0.75rem; margin-bottom: 2rem; }
.btn-add-to-cart {
  flex: 1;
  background: var(--rose-text);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
  transition: background var(--transition);
}
.btn-add-to-cart:hover { background: var(--ink); }
.btn-wishlist-icon {
  width: 54px;
  background: none;
  border: 1px solid var(--rose-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--rose-text);
  transition: background var(--transition);
}
.btn-wishlist-icon:hover { background: var(--rose); }

.pdp-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; }
.perk { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--ink-light); letter-spacing: 0.03em; }
.perk svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--rose-text); stroke-width: 1.5; }

/* Accordion */
.pdp-accordion { border-top: 1px solid var(--rose-mid); }
.accordion-item { border-bottom: 1px solid var(--rose-mid); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  cursor: pointer;
}
.accordion-trigger .acc-icon { font-size: 20px; color: var(--rose-text); transition: transform 0.25s; font-weight: 300; }
.accordion-trigger.open .acc-icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-light);
  font-weight: 300;
}
.accordion-content.open { max-height: 400px; padding-bottom: 1.25rem; }

/* ─────────────────────────────────────────
   CART DRAWER
───────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(44,36,32,0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: -440px;
  width: 440px; height: 100vh;
  background: var(--cream);
  z-index: 201;
  display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid var(--rose-mid);
  box-shadow: -8px 0 32px rgba(44,36,32,0.06);
}
.cart-drawer.open { right: 0; }
.cart-drawer__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--rose-mid);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-drawer__title { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--ink); }
.cart-close-btn { background: none; border: none; font-size: 22px; color: var(--ink-light); padding: 4px; }
.cart-close-btn:hover { color: var(--rose-text); }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--rose-mid);
}
.cart-item__img { aspect-ratio: 3/4; background: var(--rose); overflow: hidden; }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { font-family: var(--font-display); font-size: 17px; color: var(--ink); margin-bottom: 3px; }
.cart-item__meta { font-size: 11px; color: var(--ink-light); letter-spacing: 0.04em; margin-bottom: 8px; }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--rose-mid);
  background: none;
  font-size: 15px;
  color: var(--ink-light);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.qty-btn:hover { background: var(--rose); color: var(--rose-text); border-color: var(--rose-text); }
.qty-val { font-size: 13px; min-width: 22px; text-align: center; }
.cart-item__price { font-size: 15px; color: var(--rose-text); font-family: var(--font-display); white-space: nowrap; align-self: start; }
.cart-remove { background: none; border: none; font-size: 11px; color: var(--ink-light); margin-top: 6px; letter-spacing: 0.06em; text-decoration: underline; cursor: pointer; padding: 0; display: block; }
.cart-remove:hover { color: var(--rose-text); }
.cart-empty { text-align: center; padding: 3rem 1rem; }
.cart-empty p { font-family: var(--font-display); font-size: 24px; color: var(--ink-light); font-style: italic; margin-bottom: 0.5rem; }
.cart-empty span { font-size: 12px; color: var(--ink-light); }
.cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--rose-mid); }
.cart-line { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-light); margin-bottom: 6px; }
.cart-total-row { display: flex; justify-content: space-between; padding-top: 0.75rem; margin-bottom: 1.5rem; border-top: 1px solid var(--rose-mid); }
.cart-total-row span { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.cart-total-row strong { font-family: var(--font-display); font-size: 20px; color: var(--rose-text); font-weight: 400; }
.cart-note { text-align: center; font-size: 11px; color: var(--ink-light); letter-spacing: 0.06em; margin-top: 0.75rem; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 4rem 0 2rem; }
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand__logo { font-family: var(--font-display); font-size: 26px; color: var(--white); font-weight: 300; font-style: italic; letter-spacing: 0.08em; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 12px; line-height: 1.9; max-width: 260px; }
.footer-col h4 { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1.25rem; font-weight: 400; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 10px; letter-spacing: 0.04em; transition: color 0.2s; }
.footer-col a:hover { color: var(--rose-mid); }
.site-footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────
   TOAST
───────────────────────────────────────── */
.rumoha-toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--white);
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 0.08em;
  z-index: 300;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.rumoha-toast.show { transform: translateX(-50%) translateY(0); }

/* ─────────────────────────────────────────
   WOOCOMMERCE OVERRIDES
───────────────────────────────────────── */
.woocommerce-notices-wrapper { max-width: var(--max-width); margin: 1rem auto; padding: 0 2rem; }
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: var(--blush);
  border-top: 3px solid var(--rose-text);
  padding: 1rem 1.5rem;
  font-size: 13px;
  color: var(--ink);
  list-style: none;
  margin-bottom: 1rem;
}
.woocommerce-error { border-color: #c0392b; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__text { padding: 4rem 3rem; }
  .hero__text::after { left: 3rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .plp-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image { height: 55vw; min-height: 260px; }
  .hero__text { padding: 3rem 1.5rem 3.5rem; }
  .hero__text::after { left: 1.5rem; }
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; display: none; }
  .shop-filters.open { display: block; }
  .pdp-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .story-split { grid-template-columns: 1fr; }
  .story-split__image { height: 50vw; }
  .story-split__text { padding: 3rem 1.5rem; }
  .cart-drawer { width: 100vw; right: -100vw; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
