/*
Theme Name: Fashion Women
Theme URI: https://github.com/checkout-handoff/wp-theme-fashion-women
Author: Checkout Handoff
Description: Elegant women's fashion theme matching the Next.js "fashion-women" template. WooCommerce-ready, optimized for the Checkout Handoff plugin (Shopify-to-WooCommerce cart handoff).
Version: 1.0.0
Tested up to: 6.6
Requires PHP: 7.4
License: Proprietary
Text Domain: fashion-women
Tags: e-commerce, fashion, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ──────────────────────────────────────────────────────────────────
   Color palette + typography
   ────────────────────────────────────────────────────────────────── */
:root {
  --fw-bg:          #fbf6f3;
  --fw-bg-alt:      #f5ecdf;
  --fw-fg:          #2c2724;
  --fw-fg-muted:    #6b5e57;
  --fw-accent:      #c47e8a;
  --fw-accent-soft: #f1d7dc;
  --fw-border:      #e6dad1;
  --fw-success:     #6b8e6b;
  --fw-radius:      4px;
  --fw-shadow:      0 2px 12px rgba(60, 30, 30, 0.06);
  --fw-shadow-hover: 0 8px 28px rgba(60, 30, 30, 0.12);
  --fw-container:   1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fw-fg);
  background: var(--fw-bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0 0 0.4em 0;
  color: var(--fw-fg);
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.4rem; }

a { color: var(--fw-fg); text-decoration: none; }
a:hover { color: var(--fw-accent); }
img { max-width: 100%; height: auto; display: block; }

.fw-container {
  max-width: var(--fw-container);
  margin: 0 auto;
  padding: 0 24px;
}
.fw-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 500;
}

/* ──────────────────────────────────────────────────────────────────
   Header / navigation
   ────────────────────────────────────────────────────────────────── */
.fw-header {
  background: var(--fw-bg);
  border-bottom: 1px solid var(--fw-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.fw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 24px;
}
.fw-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fw-fg);
}
.fw-logo:hover { color: var(--fw-accent); }
.fw-nav { display: flex; gap: 32px; }
.fw-nav a {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  color: var(--fw-fg-muted);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.fw-nav a:hover, .fw-nav a.current-menu-item {
  color: var(--fw-fg);
  border-bottom-color: var(--fw-accent);
}
.fw-header-actions { display: flex; align-items: center; gap: 18px; }
.fw-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--fw-fg);
}
.fw-cart-count {
  background: var(--fw-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 1px 8px;
  min-width: 20px;
  text-align: center;
}

/* ──────────────────────────────────────────────────────────────────
   Language switcher (FR/ES/EN dropdown in the header)
   Mirrors LangSwitcher.tsx from the Next.js template visually so a
   visitor switching between the storefronts can't tell them apart.
   ────────────────────────────────────────────────────────────────── */
.fw-lang-switcher {
  position: relative;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.fw-lang-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--fw-fg);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--fw-radius);
  transition: background 0.2s;
}
.fw-lang-button:hover { background: var(--fw-bg-alt); }
.fw-lang-flag { font-size: 1rem; line-height: 1; }
.fw-lang-caret { width: 12px; height: 12px; opacity: 0.6; }
.fw-lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 180px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: white;
  border: 1px solid var(--fw-border);
  border-radius: 6px;
  box-shadow: var(--fw-shadow);
  z-index: 200;
}
.fw-lang-menu[hidden] { display: none; }
.fw-lang-menu li { margin: 0; }
.fw-lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--fw-fg-muted);
  font-family: inherit;
  font-size: 0.85rem;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.fw-lang-menu button:hover { background: var(--fw-bg-alt); color: var(--fw-fg); }
.fw-lang-menu button[aria-selected="true"] { color: var(--fw-fg); font-weight: 500; }
.fw-lang-name { flex: 1; }
.fw-lang-code-mini {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--fw-fg-muted);
}
.fw-lang-check { width: 14px; height: 14px; color: var(--fw-fg); }

/* ──────────────────────────────────────────────────────────────────
   Hero
   ────────────────────────────────────────────────────────────────── */
.fw-hero {
  background: linear-gradient(135deg, var(--fw-bg-alt) 0%, var(--fw-accent-soft) 100%);
  padding: 100px 0 110px;
  text-align: center;
}
.fw-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 14px;
}
.fw-hero p {
  font-size: 1.15rem;
  color: var(--fw-fg-muted);
  max-width: 540px;
  margin: 0 auto 28px;
}
.fw-btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--fw-fg);
  color: white;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid var(--fw-fg);
  border-radius: var(--fw-radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  text-decoration: none;
}
.fw-btn:hover { background: var(--fw-accent); border-color: var(--fw-accent); color: white; transform: translateY(-1px); }
.fw-btn-ghost {
  background: transparent;
  color: var(--fw-fg);
}
.fw-btn-ghost:hover { background: var(--fw-fg); color: white; }

/* ──────────────────────────────────────────────────────────────────
   Product grid (WooCommerce override)
   ────────────────────────────────────────────────────────────────── */
.woocommerce ul.products, ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  list-style: none;
  padding: 0;
  margin: 40px 0;
}
@media (max-width: 1080px) { .woocommerce ul.products, ul.products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .woocommerce ul.products, ul.products { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; } }

.woocommerce ul.products li.product, ul.products li.product {
  margin: 0 !important;
  width: auto !important;
  background: white;
  border-radius: var(--fw-radius);
  overflow: hidden;
  box-shadow: var(--fw-shadow);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products li.product:hover { box-shadow: var(--fw-shadow-hover); transform: translateY(-3px); }
.woocommerce ul.products li.product a img { margin: 0; border-radius: 0; aspect-ratio: 4/5; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 1.05rem !important;
  padding: 16px 18px 4px !important;
  text-align: left !important;
  color: var(--fw-fg) !important;
}
.woocommerce ul.products li.product .price {
  padding: 0 18px 14px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  color: var(--fw-fg) !important;
  font-weight: 500 !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product .price del { color: var(--fw-fg-muted); font-weight: normal; margin-right: 8px; }
.woocommerce ul.products li.product .button {
  margin: 0 18px 18px !important;
  background: var(--fw-fg) !important;
  color: white !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 0.72rem !important;
  padding: 11px 18px !important;
  border-radius: var(--fw-radius) !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--fw-accent) !important; }
.woocommerce span.onsale {
  background: var(--fw-accent) !important;
  color: white !important;
  border-radius: 0 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-size: 0.65rem !important;
  padding: 5px 12px !important;
  top: 14px !important;
  left: 14px !important;
  min-height: 0 !important;
  line-height: 1.2 !important;
  min-width: 0 !important;
}

/* Single product page */
.woocommerce div.product .product_title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 2.2rem;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: var(--fw-fg) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.4rem !important;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button {
  background: var(--fw-fg) !important;
  color: white !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.16em !important;
  font-size: 0.85rem !important;
  padding: 14px 30px !important;
  border-radius: var(--fw-radius) !important;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover { background: var(--fw-accent) !important; }

/* Cart + checkout */
.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout .woocommerce-checkout-review-order h3#order_review_heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: var(--fw-fg) !important;
  color: white !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  border-radius: var(--fw-radius) !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
  background: var(--fw-accent) !important;
  color: white !important;
}
.woocommerce-cart-form table.shop_table img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
  border-radius: var(--fw-radius);
}

/* ──────────────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────────────── */
.fw-footer {
  background: var(--fw-bg-alt);
  border-top: 1px solid var(--fw-border);
  padding: 56px 0 28px;
  margin-top: 100px;
}
.fw-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .fw-footer-grid { grid-template-columns: 1fr 1fr; } }
.fw-footer h4 {
  font-family: 'Inter', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.fw-footer ul { list-style: none; padding: 0; margin: 0; }
.fw-footer li { margin: 6px 0; font-size: 0.92rem; color: var(--fw-fg-muted); }
.fw-footer a { color: var(--fw-fg-muted); }
.fw-footer a:hover { color: var(--fw-accent); }
.fw-footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--fw-border);
  text-align: center;
  font-size: 0.78rem;
  color: var(--fw-fg-muted);
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
}

/* === Journal (blog) === */
.fw-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
@media (max-width: 900px) {
  .fw-journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .fw-journal-grid { grid-template-columns: 1fr; gap: 28px; }
}
.fw-journal-card { background: transparent; }
.fw-journal-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.fw-journal-card-link:hover { opacity: 0.85; }
.fw-journal-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--fw-bg-soft, #f6f4f1);
}
.fw-journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fw-journal-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.fw-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 56px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.88rem;
}
.fw-pagination-item a, .fw-pagination-item span {
  padding: 8px 12px;
  display: inline-block;
  color: var(--fw-fg-muted);
  border: 1px solid transparent;
}
.fw-pagination-item a:hover {
  color: var(--fw-accent);
  border-color: var(--fw-border);
}
.fw-pagination-item .current {
  color: var(--fw-fg);
  border-color: var(--fw-border);
}

/* ──────────────────────────────────────────────────────────────────
   Single-product page: external-image gallery
   Renders the two AI-generated angles side-by-side on desktop and
   stacked on mobile. Replaces WooCommerce's flexslider gallery for
   any product whose images are hot-linked (no native featured image).
   ────────────────────────────────────────────────────────────────── */
.fw-product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  .fw-product-gallery {
    grid-template-columns: 1fr;
    /* Two-column layout when the product has 2 angles. The CSS
       `:has()` selector lets us scale up automatically without
       needing a server-side flag — modern browsers (>= 2023) all
       support it; older browsers fall back to single-column which
       is still perfectly readable. */
  }
  .fw-product-gallery:has(.fw-product-gallery__image--1) {
    grid-template-columns: 1fr 1fr;
  }
}
.fw-product-gallery__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--fw-radius);
  background: var(--fw-bg-alt);
  aspect-ratio: 3 / 4;
}
.fw-product-gallery__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ──────────────────────────────────────────────────────────────────
   Homepage (1:1 port of the Next.js fashion-women template)
   ────────────────────────────────────────────────────────────────── */

.fw-home { background: #ffffff; color: var(--fw-fg); }

/* Hero ─ full-bleed image with bottom-aligned text on dark gradient. */
.fw-home-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
}
@media (min-width: 640px) { .fw-home-hero { height: 80vh; } }
.fw-home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fw-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.fw-home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 0 20px 64px;
  text-align: center;
  color: #fff;
}
.fw-home-hero__label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.8;
  margin: 0 0 12px;
}
.fw-home-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.1;
  max-width: 680px;
  margin: 0;
  color: #fff;
}
.fw-home-hero__desc {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 300;
  opacity: 0.85;
  max-width: 460px;
  line-height: 1.6;
}
.fw-home-hero__cta {
  margin-top: 32px;
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.85);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.fw-home-hero__cta:hover {
  background: #fff;
  color: #1c1917;
}

/* Sections ─ shared spacing, eyebrow heading. */
.fw-home-section { padding: 64px 0; }
@media (min-width: 640px) { .fw-home-section { padding: 80px 0; } }
.fw-home-section__eyebrow {
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a8a29e;
  margin: 0 0 40px;
}
.fw-home-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.fw-home-section__header .fw-home-section__eyebrow {
  margin: 0;
  text-align: left;
}
.fw-home-section__link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #78716c;
  text-decoration: none;
  transition: color 0.2s;
}
.fw-home-section__link:hover { color: #1c1917; }

/* Categories ─ 2 cols on mobile, 4 cols on desktop. */
.fw-home-section--categories { padding-top: 64px; padding-bottom: 64px; }
.fw-home-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .fw-home-categories { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.fw-home-category {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  background: #f5f5f4;
  text-decoration: none;
}
.fw-home-category__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.fw-home-category:hover .fw-home-category__image { transform: scale(1.05); }
.fw-home-category__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.fw-home-category__label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 640px) {
  .fw-home-category__label { left: 24px; right: 24px; bottom: 24px; font-size: 15px; }
}

/* Featured strip ─ stone-50 background. */
.fw-home-section--featured { background: #fafaf9; }
.fw-home-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 1024px) { .fw-home-featured-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.fw-home-featured-card { display: block; text-decoration: none; color: inherit; }
.fw-home-featured-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f4;
  margin-bottom: 12px;
}
.fw-home-featured-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.fw-home-featured-card:hover .fw-home-featured-card__image img { transform: scale(1.05); }
.fw-home-featured-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1c1917;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.fw-home-featured-card__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1c1917;
  margin: 0;
  letter-spacing: 0;
  transition: color 0.2s;
}
.fw-home-featured-card:hover .fw-home-featured-card__title { color: #57534e; }
.fw-home-featured-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
}
.fw-home-featured-card__price-current { color: #1c1917; }
.fw-home-featured-card__price-compare {
  font-size: 12px;
  color: #a8a29e;
  text-decoration: line-through;
}
.fw-home-featured-card__price .woocommerce-Price-amount { font-weight: inherit; }
/* Force WooCommerce currency markup to inherit our card styling. */
.fw-home-featured-card__price del,
.fw-home-newarrival-card__price del { display: none; }

/* New arrivals ─ 2 cols on mobile, 3 on desktop. */
.fw-home-newarrivals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .fw-home-newarrivals-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.fw-home-newarrival-card { display: block; text-decoration: none; color: inherit; }
.fw-home-newarrival-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f4;
  margin-bottom: 12px;
}
.fw-home-newarrival-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.fw-home-newarrival-card:hover .fw-home-newarrival-card__image img { transform: scale(1.05); }
.fw-home-newarrival-card__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1c1917;
  margin: 0;
  transition: color 0.2s;
}
.fw-home-newarrival-card:hover .fw-home-newarrival-card__title { color: #57534e; }
.fw-home-newarrival-card__cat {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a8a29e;
  margin: 2px 0 0;
}
.fw-home-newarrival-card__price {
  display: block;
  margin-top: 2px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #1c1917;
}

/* Lookbook ─ full-bleed editorial image. */
.fw-home-lookbook {
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
}
@media (min-width: 640px) { .fw-home-lookbook { height: 60vh; } }
.fw-home-lookbook__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fw-home-lookbook__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.fw-home-lookbook__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  color: #fff;
  text-align: center;
}
.fw-home-lookbook__label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.85;
  margin: 0 0 12px;
}
.fw-home-lookbook__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
}
.fw-home-lookbook__cta {
  margin-top: 24px;
  display: inline-block;
  padding: 11px 24px;
  border: 1px solid rgba(255,255,255,0.85);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.fw-home-lookbook__cta:hover { background: #fff; color: #1c1917; }

/* Trust badges row ─ thin top border, 4 columns on desktop. */
.fw-home-trust {
  padding: 56px 0;
  border-top: 1px solid #f5f5f4;
}
.fw-home-trust__grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) { .fw-home-trust__grid { grid-template-columns: repeat(4, 1fr); } }
.fw-home-trust__icon {
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 1;
}
.fw-home-trust__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #44403c;
  font-weight: 500;
  margin: 0;
}
.fw-home-trust__sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  color: #a8a29e;
  margin: 2px 0 0;
}

/* ──────────────────────────────────────────────────────────────────
   Single product page — 1:1 port of the Next.js product/[slug]
   layout. Stone-200 frames, ample whitespace, color/size pickers,
   trust strip, related grid.
   ────────────────────────────────────────────────────────────────── */
.fw-product-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 16px 80px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #1c1917;
}
@media (min-width: 640px) { .fw-product-page { padding: 48px 24px 96px; } }
@media (min-width: 1024px) { .fw-product-page { padding: 48px 32px 96px; } }

.fw-product-breadcrumb {
  font-size: 11px;
  color: #a8a29e;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.fw-product-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.fw-product-breadcrumb a:hover { color: #44403c; }
.fw-product-breadcrumb .fw-bc-sep { margin: 0 8px; }
.fw-product-breadcrumb .fw-bc-current { color: #57534e; }

.fw-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .fw-product-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

/* Media column ─────────────────────────────────────────────── */
.fw-product-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f5f5f4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.fw-product-main-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fw-product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #1c1917;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.fw-product-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.fw-product-thumb {
  width: 80px;
  height: 96px;
  padding: 0;
  background: #f5f5f4;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.fw-product-thumb:hover { border-color: #d6d3d1; }
.fw-product-thumb.is-active { border-color: #1c1917; }
.fw-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Summary column ───────────────────────────────────────────── */
.fw-product-summary {
  padding-top: 0;
}
@media (min-width: 1024px) {
  .fw-product-summary { padding-top: 16px; }
}

.fw-product-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a8a29e;
  margin: 0 0 8px;
}
.fw-product-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #1c1917;
  margin: 0 0 12px;
}
@media (min-width: 640px) {
  .fw-product-title { font-size: 1.75rem; }
}

.fw-product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.fw-product-price-current {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1c1917;
}
.fw-product-price-current .woocommerce-Price-currencySymbol { margin-left: 2px; }
.fw-product-price-current ins { background: transparent; text-decoration: none; }
.fw-product-price-current del { display: none; }
.fw-product-price-compare {
  font-size: 0.875rem;
  color: #a8a29e;
  text-decoration: line-through;
}
.fw-product-price-compare bdi { text-decoration: line-through; }

.fw-product-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #57534e;
  margin: 0 0 24px;
  font-family: 'Inter', system-ui, sans-serif;
}

.fw-product-field { margin-bottom: 24px; }
.fw-product-field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.fw-product-field-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #78716c;
  display: block;
  margin-bottom: 8px;
}
.fw-product-color-name {
  text-transform: none;
  letter-spacing: 0.02em;
  color: #44403c;
  font-weight: 400;
  margin-left: 6px;
}

.fw-product-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fw-product-swatch {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid #e7e5e4;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fw-product-swatch:hover { border-color: #a8a29e; }
.fw-product-swatch.is-active {
  border-color: #1c1917;
  box-shadow: 0 0 0 2px #fff inset, 0 0 0 4px #1c1917;
}

.fw-product-size-guide {
  font-size: 11px;
  color: #a8a29e;
  text-decoration: underline;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.fw-product-size-guide:hover { color: #44403c; }

.fw-product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fw-product-size {
  min-width: 48px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #e7e5e4;
  background: #fff;
  color: #57534e;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.fw-product-size:hover { border-color: #a8a29e; }
.fw-product-size.is-active {
  background: #1c1917;
  color: #fff;
  border-color: #1c1917;
}
.fw-product-size-required {
  font-size: 11px;
  color: #d97706;
  margin: 6px 0 0;
  display: none;
}

.fw-product-cart-form { margin: 0; }
.fw-product-add {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-radius: 8px;
  background: #1c1917;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.fw-product-add:hover { background: #292524; }
.fw-product-add.is-disabled,
.fw-product-add[disabled] {
  background: #d6d3d1;
  cursor: not-allowed;
}

.fw-product-trust {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 8px;
  font-size: 11px;
  color: #78716c;
}
.fw-product-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fw-product-details {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f5f5f4;
}
.fw-product-details-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #78716c;
  margin: 0 0 12px;
}
.fw-product-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.fw-product-details-list li {
  font-size: 14px;
  color: #57534e;
  padding-left: 14px;
  position: relative;
}
.fw-product-details-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d6d3d1;
}

/* Related products ─────────────────────────────────────────── */
.fw-product-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #f5f5f4;
}
.fw-product-related-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a8a29e;
  margin: 0 0 32px;
  font-weight: 500;
}
.fw-product-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .fw-product-related-grid { gap: 24px; } }
@media (min-width: 768px) { .fw-product-related-grid { grid-template-columns: repeat(4, 1fr); } }

.fw-product-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.fw-product-related-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f5f5f4;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}
.fw-product-related-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.fw-product-related-card:hover .fw-product-related-img img {
  transform: scale(1.05);
}
.fw-product-related-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1c1917;
  margin: 0;
  transition: color 0.2s;
}
.fw-product-related-card:hover .fw-product-related-name {
  color: #57534e;
}
.fw-product-related-price {
  display: block;
  margin-top: 2px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #1c1917;
}
.fw-product-related-price .woocommerce-Price-amount { color: inherit; }

/* ──────────────────────────────────────────────────────────────────
   Shop archive page — 1:1 port of vitrine/shop/page.tsx
   ────────────────────────────────────────────────────────────────── */
.fw-shop-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 16px 96px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #1c1917;
}
@media (min-width: 640px) { .fw-shop-page { padding: 56px 24px 96px; } }
@media (min-width: 1024px) { .fw-shop-page { padding: 56px 32px 96px; } }

.fw-shop-breadcrumb {
  font-size: 11px;
  color: #a8a29e;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.fw-shop-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.fw-shop-breadcrumb a:hover { color: #44403c; }
.fw-shop-breadcrumb .fw-bc-sep { margin: 0 8px; }
.fw-shop-breadcrumb .fw-bc-current { color: #57534e; }

.fw-shop-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #1c1917;
  margin: 0 0 32px;
}
@media (min-width: 640px) { .fw-shop-title { font-size: 1.875rem; } }

.fw-shop-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f5f5f4;
}
.fw-shop-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}
.fw-shop-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #e7e5e4;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #78716c;
  text-decoration: none;
  background: #fff;
  transition: all 0.2s;
  white-space: nowrap;
}
.fw-shop-pill:hover { border-color: #a8a29e; }
.fw-shop-pill.is-active {
  background: #1c1917;
  color: #fff;
  border-color: #1c1917;
}
.fw-shop-sort {
  margin-left: auto;
}
.fw-shop-sort select {
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #78716c;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
}
.fw-shop-sort select:focus {
  outline: none;
  box-shadow: 0 0 0 1px #d6d3d1;
}

.fw-shop-count {
  font-size: 12px;
  color: #a8a29e;
  margin: 0 0 24px;
}

.fw-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .fw-shop-grid { gap: 24px; } }
@media (min-width: 768px) { .fw-shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .fw-shop-grid { grid-template-columns: repeat(4, 1fr); } }

.fw-shop-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.fw-shop-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f5f5f4;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
.fw-shop-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.fw-shop-card:hover .fw-shop-card-img img {
  transform: scale(1.05);
}
.fw-shop-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1c1917;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.fw-shop-card-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1c1917;
  margin: 0;
  line-height: 1.35;
  transition: color 0.2s;
}
.fw-shop-card:hover .fw-shop-card-name {
  color: #57534e;
}
.fw-shop-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8a29e;
  margin: 2px 0 0;
}
.fw-shop-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.fw-shop-card-price-current {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #1c1917;
}
.fw-shop-card-price-current ins { background: transparent; text-decoration: none; }
.fw-shop-card-price-current del { display: none; }
.fw-shop-card-price-compare {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: #a8a29e;
  text-decoration: line-through;
}
.fw-shop-card-price-compare bdi { text-decoration: line-through; }
.fw-shop-card-swatches {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.fw-shop-card-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #e7e5e4;
  display: inline-block;
}
.fw-shop-empty {
  text-align: center;
  padding: 80px 0;
  color: #a8a29e;
}
.fw-shop-empty p { font-size: 18px; margin: 0; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; }
.fw-shop-empty-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  text-decoration: underline;
  color: #57534e;
}
.fw-shop-empty-cta:hover { color: #1c1917; }

/* ──────────────────────────────────────────────────────────────────
   About page — 1:1 port of vitrine/about/page.tsx
   ────────────────────────────────────────────────────────────────── */
.fw-about-page {
  max-width: 896px;
  margin: 0 auto;
  padding: 48px 16px 96px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #1c1917;
}
@media (min-width: 640px) { .fw-about-page { padding: 64px 24px 96px; } }
@media (min-width: 1024px) { .fw-about-page { padding: 64px 32px 96px; } }

.fw-about-breadcrumb {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #a8a29e;
  margin-bottom: 32px;
}
.fw-about-breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.fw-about-breadcrumb a:hover { color: #44403c; }
.fw-about-breadcrumb .fw-bc-sep { margin: 0 8px; }
.fw-about-breadcrumb .fw-bc-current { color: #57534e; }

.fw-about-hero {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}
.fw-about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fw-about-header {
  text-align: center;
  margin-bottom: 56px;
}
.fw-about-eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a8a29e;
  margin: 0 0 12px;
}
.fw-about-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 1.875rem;
  letter-spacing: 0.02em;
  color: #1c1917;
  margin: 0;
}
@media (min-width: 640px) { .fw-about-title { font-size: 2.25rem; } }

.fw-about-company {
  max-width: 672px;
  margin: 0 auto 56px;
  background: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  padding: 32px;
}
.fw-about-company-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #78716c;
  margin: 0 0 16px;
  font-weight: 500;
}
.fw-about-company-name {
  font-size: 14px;
  color: #1c1917;
  margin: 0 0 12px;
  line-height: 1.6;
}
.fw-about-company-address {
  font-size: 14px;
  color: #57534e;
  margin: 0 0 12px;
  line-height: 1.6;
  white-space: pre-line;
}
.fw-about-company-contact {
  font-size: 14px;
  color: #57534e;
  margin: 0;
  line-height: 1.7;
}
.fw-about-company-contact a {
  color: #1c1917;
  text-decoration: underline;
}
.fw-about-company-contact a:hover { color: #44403c; }

.fw-about-story {
  text-align: center;
  margin-bottom: 56px;
}
.fw-about-story p {
  font-size: 16px;
  line-height: 1.7;
  color: #57534e;
  max-width: 672px;
  margin: 0 auto;
}
@media (min-width: 640px) { .fw-about-story p { font-size: 18px; } }

.fw-about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media (min-width: 768px) { .fw-about-values { grid-template-columns: repeat(3, 1fr); } }
.fw-about-value {
  text-align: center;
}
.fw-about-value-icon {
  font-size: 24px;
  color: #a8a29e;
  margin-bottom: 12px;
  line-height: 1;
}
.fw-about-value-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1c1917;
  font-weight: 500;
  margin: 0 0 8px;
}
.fw-about-value-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #78716c;
  margin: 0;
}

.fw-about-quote {
  border-top: 1px solid #f5f5f4;
  border-bottom: 1px solid #f5f5f4;
  padding: 48px 0;
  margin: 48px 0;
  text-align: center;
}
.fw-about-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: #44403c;
  max-width: 672px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width: 640px) { .fw-about-quote blockquote { font-size: 20px; } }
.fw-about-quote-author {
  margin-top: 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a8a29e;
}

.fw-about-cta {
  text-align: center;
}
.fw-about-cta-button {
  display: inline-block;
  background: #1c1917;
  color: #fff;
  padding: 12px 32px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.fw-about-cta-button:hover { background: #292524; }

/* ──────────────────────────────────────────────────────────────────
   Top promo bar — 1:1 with the Next.js layout's announcement strip
   ────────────────────────────────────────────────────────────────── */
.fw-promo-bar {
  background: #1c1917;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.3;
  /* Hide on print so PDF order receipts stay clean. */
  -webkit-print-color-adjust: exact;
}
@media (min-width: 640px) { .fw-promo-bar { font-size: 12px; } }
@media print { .fw-promo-bar { display: none; } }

/* ──────────────────────────────────────────────────────────────────
   Cart drawer + toast — 1:1 with CartDrawer.tsx
   ────────────────────────────────────────────────────────────────── */
.fw-cart-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  background: #1c1917;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.fw-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fw-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(28, 25, 23, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.fw-cart-backdrop.is-open { opacity: 1; pointer-events: auto; }

.fw-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  max-width: 460px;
  background: #fff;
  box-shadow: -16px 0 36px rgba(0,0,0,0.18);
  z-index: 9100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  font-family: 'Inter', system-ui, sans-serif;
  color: #1c1917;
  will-change: transform;
}
.fw-cart-drawer.is-open { transform: translateX(0); }

.fw-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #f5f5f4;
}
.fw-cart-drawer-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1c1917;
  font-weight: 500;
  margin: 0;
}
.fw-cart-drawer-count {
  font-size: 11px;
  color: #a8a29e;
  margin: 2px 0 0;
}
.fw-cart-drawer-close {
  background: none;
  border: 0;
  padding: 8px;
  margin-right: -8px;
  color: #78716c;
  cursor: pointer;
  transition: color 0.2s;
}
.fw-cart-drawer-close:hover { color: #1c1917; }

.fw-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.fw-cart-drawer-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 0;
}
.fw-cart-drawer-empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f5f5f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8a29e;
  margin-bottom: 16px;
}
.fw-cart-drawer-empty-title { font-size: 14px; color: #44403c; margin: 0 0 4px; }
.fw-cart-drawer-empty-hint { font-size: 12px; color: #a8a29e; margin: 0 0 24px; max-width: 260px; }
.fw-cart-drawer-empty-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #57534e;
  text-decoration: none;
  border: 1px solid #d6d3d1;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.2s;
}
.fw-cart-drawer-empty-cta:hover { color: #1c1917; border-color: #1c1917; }

.fw-cart-drawer-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fw-cart-drawer-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f4;
}
.fw-cart-drawer-item:last-child { border-bottom: 0; }
.fw-cart-drawer-item-img {
  position: relative;
  width: 80px;
  height: 96px;
  flex-shrink: 0;
  background: #f5f5f4;
  border-radius: 6px;
  overflow: hidden;
}
.fw-cart-drawer-item-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fw-cart-drawer-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.fw-cart-drawer-item-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.fw-cart-drawer-item-name {
  font-size: 14px;
  color: #1c1917;
  text-decoration: none;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.fw-cart-drawer-item-name:hover { color: #57534e; }
.fw-cart-drawer-item-price {
  font-size: 14px;
  color: #1c1917;
  white-space: nowrap;
}
.fw-cart-drawer-item-meta {
  font-size: 11px;
  color: #a8a29e;
  margin-top: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.fw-cart-drawer-item-color {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fw-cart-drawer-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #e7e5e4;
}
.fw-cart-drawer-item-actions {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fw-cart-drawer-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
}
.fw-cart-drawer-qty-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: 0;
  font-size: 16px;
  color: #78716c;
  cursor: pointer;
  transition: color 0.2s;
}
.fw-cart-drawer-qty-btn:hover { color: #1c1917; }
.fw-cart-drawer-qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.fw-cart-drawer-qty-value {
  width: 28px;
  text-align: center;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.fw-cart-drawer-item-remove {
  background: none;
  border: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a8a29e;
  cursor: pointer;
  transition: color 0.2s;
  font-family: inherit;
}
.fw-cart-drawer-item-remove:hover { color: #1c1917; }

.fw-cart-drawer-footer {
  border-top: 1px solid #f5f5f4;
  padding: 16px 24px 20px;
  background: #fafaf9;
}
.fw-cart-drawer-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.fw-cart-drawer-subtotal-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #57534e;
}
.fw-cart-drawer-subtotal-value {
  font-size: 18px;
  font-weight: 500;
  color: #1c1917;
}
.fw-cart-drawer-subtotal-value .woocommerce-Price-amount { color: inherit; }
.fw-cart-drawer-shipping {
  font-size: 11px;
  color: #a8a29e;
  margin: 0 0 16px;
}
.fw-cart-drawer-checkout {
  display: block;
  width: 100%;
  background: #1c1917;
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.fw-cart-drawer-checkout:hover { background: #292524; }
.fw-cart-drawer-continue {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: none;
  border: 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #78716c;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
.fw-cart-drawer-continue:hover { color: #1c1917; }





