/* ═══════════════════════════════════════════════
   VEAMODA v3 — Main Stylesheet
   Tokens derived 1:1 from React source (index.css)
   ═══════════════════════════════════════════════ */

/* ── Google Fonts are enqueued via functions.php ── */

/* ── Reset & tokens ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #F5EDE4;
  --fg:        #1A1A1A;
  --card:      #FDF9F5;
  --gold:      #b8965a;
  --gold-lt:   #c9a96e;
  --beige-50:  #fdf9f5;
  --beige-100: #F5EDE4;
  --beige-200: #EDE5DA;
  --beige-300: #d4c5a9;
  --beige-400: #c19a6b;
  --border:    #DDD5C8;
  --muted:     #8A7968;
  --stone-100: #f5f4f2;
  --stone-200: #e7e5e4;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-900: #1c1917;
  --footer-bg: #1a1410;
  --radius:    4px;
  --font-sans:    'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-serif:   'Playfair Display', serif;
}

html { scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }

/* ── Branded text selection ── */
::selection { background: #E8E0D5; color: #1c1917; }
::-moz-selection { background: #E8E0D5; color: #1c1917; }

/* ── Admin bar completely removed on frontend ── */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

/* ── Smooth page transition — white overlay fades out on load, in on navigate ── */
#vm-page-transition {
  position: fixed; inset: 0; z-index: 99999;
  background: #faf9f7; pointer-events: none;
  opacity: 0; transition: opacity 0.28s ease;
}
#vm-page-transition.vm-pt-in  { opacity: 1; pointer-events: all; }

/* ── WooCommerce notices — branded instead of default WC blue/yellow ── */
.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error li,
.woocommerce-error {
  border: none !important; border-radius: 0 !important;
  box-shadow: none !important; padding: 0 !important;
  background: transparent !important;
  list-style: none !important;
}
.woocommerce-notices-wrapper {
  max-width: var(--max-w, 1280px);
  margin: 0 auto 0; padding: 0 24px !important;
}
.woocommerce-message,
.woocommerce-info {
  display: flex !important; align-items: center; gap: 12px;
  padding: 13px 20px !important;
  background: #faf9f7 !important;
  border-left: 3px solid #d4c5a9 !important;
  font-size: 13px !important; color: #44403c !important;
  margin: 0 0 16px !important;
}
.woocommerce-message::before,
.woocommerce-info::before { display: none !important; }
.woocommerce-error {
  background: #fff8f7 !important;
  border-left: 3px solid #f87171 !important;
  padding: 13px 20px !important;
  margin: 0 0 16px !important;
  font-size: 13px !important; color: #7f1d1d !important;
}
.woocommerce-error li { padding: 2px 0 !important; }
.woocommerce-message .button,
.woocommerce-info .button {
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: 0.16em !important; text-transform: uppercase !important;
  padding: 8px 16px !important; background: #E8E0D5 !important;
  color: #1c1917 !important; border: none !important;
  border-radius: 0 !important; margin-left: auto !important;
}

/* ── Mobile bottom navigation bar ── */
.vm-bottom-nav {
  display: none; /* shown only on mobile via media query */
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: #faf9f7;
  border-top: 1px solid rgba(212,197,169,0.4);
  padding: 0 0 env(safe-area-inset-bottom, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.vm-bn-inner {
  display: flex; align-items: stretch;
  height: 56px;
}
.vm-bn-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  text-decoration: none; background: none; border: none; cursor: pointer;
  color: #a8a29e; padding: 0;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color .2s; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.vm-bn-item:hover,
.vm-bn-item.vm-bn-active { color: #1c1917; }
.vm-bn-item svg { width: 20px; height: 20px; stroke-width: 1.75; }
.vm-bn-badge {
  position: absolute; top: 8px; right: calc(50% - 18px);
  min-width: 15px; height: 15px; border-radius: 99px;
  background: #1c1917; color: #faf9f7;
  font-size: 8px; font-weight: 700; letter-spacing: 0;
  display: none; align-items: center; justify-content: center;
  padding: 0 4px;
}
.vm-bn-badge.vm-bn-badge-vis { display: flex; }

/* Space at bottom so content isn't hidden behind bottom nav */
@media (max-width: 768px) {
  .vm-bottom-nav { display: block; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
  /* Don't add padding on checkout/cart pages where content extends to edge */
  body.woocommerce-checkout,
  body.woocommerce-cart { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--fg);
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  overflow-x: hidden;
}

h1 { font-family: var(--font-serif); font-size: 42px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-family: var(--font-serif); font-size: 32px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 600; letter-spacing: -0.01em; }
h4, h5, h6 { font-family: var(--font-serif); font-weight: 600; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: var(--font-sans); }

/* ── Container ── */
.vm-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── Utilities ── */
.vm-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.vm-serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.vm-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #E8E0D5; color: var(--fg);
  padding: 14px 48px;
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em;
  transition: background 0.2s;
  border: none;
}
.vm-btn-primary:hover { background: var(--beige-300); }
.vm-btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--fg); color: #fff;
  padding: 14px 48px;
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em;
  transition: background 0.2s;
}
.vm-btn-dark:hover { background: #333; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANNOUNCEMENT TICKER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-ticker {
  background: var(--fg);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.vm-ticker-inner {
  display: inline-flex;
  gap: 64px;
  padding-left: 24px;
  animation: vm-marquee 40s linear infinite;
}
@keyframes vm-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  transition: box-shadow 0.3s, background 0.3s;
}
.vm-header.vm-scrolled {
  background: rgba(245,237,228,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.vm-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.vm-logo img { height: 48px; width: auto; object-fit: contain; max-width: 160px; }
.vm-logo { display: flex; justify-content: center; }
.vm-logo:hover { opacity: 0.8; }

/* Desktop nav */
.vm-nav { display: none; gap: 24px; align-items: center; height: 100%; }

/* Mega-parent wrapper: must be same height/alignment as bare <a> links */
.vm-mega-parent {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

/* ALL nav links — absolutely identical size, weight, and vertical alignment */
.vm-nav-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-bottom: 0;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.vm-nav-link:hover, .vm-nav-link.active { border-color: var(--gold); }

/* Actions */
.vm-actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.vm-action-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--fg);
  transition: color 0.2s;
  position: relative;
}
.vm-action-btn:hover { color: var(--muted); }
.vm-action-btn svg { width: 20px; height: 20px; }
.vm-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--fg); color: #fff;
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vm-mobile-btn { display: flex; color: var(--fg); }

/* ── Mega menu — full-width drop from header ── */
.vm-mega-parent { position: static; }

.vm-nav-link.vm-active { border-color: var(--gold); }

/* The header must be position:relative so the drops anchor to it */
.vm-header { position: sticky; top: 0; }

.vm-mega-drop {
  /* hidden by default */
  display: none;
  position: absolute;
  /* Stretch full width of the viewport, aligned to left edge of header */
  left: 0;
  right: 0;
  width: 100%;
  top: 100%;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
  border-top: 1px solid var(--stone-100);
  z-index: 100;
  /* Prevent overflow clipping from parent */
  overflow: visible;
}
.vm-mega-drop.vm-mega-active { display: block; }

.vm-mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding: 40px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.vm-mega-col ul { list-style: none; }
.vm-mega-col-title {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--stone-400);
  margin-bottom: 20px;
}
.vm-mega-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--stone-600);
  padding: 5px 0; font-weight: 500;
  transition: color 0.15s;
}
.vm-mega-link:hover { color: var(--stone-900); }
.vm-mega-link svg { width: 11px; height: 11px; color: var(--stone-200); flex-shrink: 0; transition: color 0.15s; }
.vm-mega-link:hover svg { color: var(--stone-500); }
.vm-mega-sale { color: #dc2626 !important; font-weight: 600; }
.vm-mega-sale svg { color: #fca5a5 !important; }
.vm-mega-sale:hover { color: #991b1b !important; }
.vm-mega-image-cta {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 11px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px; margin-top: 8px;
  transition: border-color 0.15s;
}
.vm-mega-image-col:hover .vm-mega-image-cta { border-color: #fff; }
.vm-mega-image-col {
  position: relative; border-radius: 8px; overflow: hidden;
  min-height: 240px; background: var(--stone-100);
  display: flex; align-items: flex-end; padding: 24px;
  cursor: pointer;
}
.vm-mega-image-col img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s;
}
.vm-mega-image-col:hover img { transform: scale(1.05); }
.vm-mega-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.05) 60%, transparent 100%);
}
.vm-mega-image-text { position: relative; z-index: 2; color: #fff; }
.vm-mega-image-eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.7; margin-bottom: 4px; }
.vm-mega-image-title { font-size: 18px; font-weight: 600; line-height: 1.25; }

/* ── Mobile menu ── */
.vm-mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 1000; /* just below mobile menu (1001) */
}
.vm-mobile-overlay.vm-open { display: block; }
.vm-mobile-menu {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(340px, 85vw);
  background: #fff; z-index: 1001; /* above bottom nav (900) and cookie bar */
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  box-shadow: 4px 0 40px rgba(0,0,0,0.15);
}
.vm-mobile-menu.vm-open { transform: translateX(0); }
.vm-mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--stone-100);
}
.vm-mobile-header img { height: 40px; }
.vm-mobile-close { color: var(--stone-400); transition: color 0.2s; }
.vm-mobile-close:hover { color: var(--stone-900); }
.vm-mobile-close svg { width: 20px; height: 20px; }
.vm-mobile-body { flex: 1; overflow-y: auto; padding: 24px; }
.vm-mobile-section-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 8px;
  font-size: 15px; font-weight: 600; color: var(--stone-900);
  border-bottom: 1px solid var(--stone-100);
}
.vm-chevron { width: 16px; height: 16px; color: var(--stone-300); transition: transform 0.2s; }
.vm-mobile-sub {
  display: none; flex-direction: column; gap: 2px;
  padding: 8px 0 16px 12px;
}
.vm-mobile-sub a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px;
  font-size: 13px; color: var(--stone-600);
  transition: color 0.15s;
}
.vm-mobile-sub a:hover { color: var(--stone-900); }
.vm-mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 8px;
  font-size: 15px; font-weight: 600; color: var(--stone-900);
  border-bottom: 1px solid var(--stone-100);
}
.vm-mobile-secondary { padding: 24px 8px; }
.vm-mobile-secondary-title {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.25em; color: var(--stone-400); margin-bottom: 12px;
}
.vm-mobile-secondary a {
  display: block; font-size: 13px; color: var(--stone-600);
  padding: 6px 0; transition: color 0.15s;
}
.vm-mobile-secondary a:hover { color: var(--stone-900); }
.vm-mobile-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--stone-100);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--stone-100);
  gap: 12px;
}
.vm-mobile-footer a, .vm-mobile-footer button {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--stone-700);
}
.vm-mobile-currency { display: flex; align-items: center; }
.vm-currency-select--mobile {
  appearance: none; -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--stone-300);
  border-radius: 6px;
  padding: 6px 28px 6px 10px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  color: var(--stone-700);
  cursor: pointer;
  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='%2378716c'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-hero {
  position: relative;
  height: 90vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.vm-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%; /* Ansikten klippta - visar kläder från halsen ned */
}
.vm-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.vm-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center;
  padding: 0 24px; max-width: 900px; width: 100%;
}
.vm-hero-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.4em; margin-bottom: 24px; color: rgba(255,255,255,0.8);
}
.vm-hero-title {
  font-family: var(--font-serif); font-size: clamp(40px, 7vw, 88px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 0.95;
  margin-bottom: 40px; color: #fff;
}
.vm-hero-title em { font-style: italic; font-weight: 400; }
.vm-hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 24px; }
.vm-hero-btn-light {
  padding: 14px 48px;
  background: #E8E0D5; color: var(--fg);
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em;
  transition: background 0.2s; display: inline-block;
}
.vm-hero-btn-light:hover { background: var(--beige-300); }
.vm-hero-btn-outline {
  padding: 14px 48px;
  border: 1px solid rgba(255,255,255,0.7); color: #fff;
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em;
  transition: all 0.2s; display: inline-block;
}
.vm-hero-btn-outline:hover { background: #fff; color: var(--fg); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VALUE PROPS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-values {
  background: var(--beige-200);
  border-bottom: 1px solid rgba(212,197,169,0.4);
}
.vm-values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  max-width: 1280px; margin: 0 auto;
}
.vm-value-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 40px 24px; gap: 8px;
  border-right: 1px solid rgba(212,197,169,0.4);
}
.vm-value-item:nth-child(2n) { border-right: none; }
.vm-value-icon { width: 20px; height: 20px; color: var(--gold); margin-bottom: 4px; }
.vm-value-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--stone-900); }
.vm-value-desc { font-size: 12px; color: var(--stone-500); line-height: 1.5; display: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STYLE PILLARS MARQUEE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-pillars {
  background: var(--beige-100);
  padding: 40px 0;
  border-bottom: 1px solid rgba(212,197,169,0.3);
  overflow: hidden;
}
.vm-pillars-label { text-align: center; margin-bottom: 24px; }
.vm-pillars-strip { display: flex; overflow: hidden; }
.vm-pillars-inner {
  display: flex; gap: 48px; align-items: center;
  white-space: nowrap;
  animation: vm-marquee 40s linear infinite;
}
.vm-pillar {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--stone-400);
  transition: color 0.2s; cursor: default;
}
.vm-pillar:hover { color: var(--stone-700); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CATEGORY SPLIT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-categories { display: grid; grid-template-columns: 1fr; }
.vm-category-card {
  position: relative; height: 70vh; min-height: 400px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.vm-category-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%; /* Ansikten klippta - visar kläder från halsen ned */
  transition: transform 1s ease;
}
.vm-category-card:hover img { transform: scale(1.05); }
.vm-category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}
.vm-category-content {
  position: relative; z-index: 2;
  padding: 40px; width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.vm-category-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.vm-category-name { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(36px, 5vw, 56px); color: #fff; line-height: 1; }
.vm-category-cta {
  display: flex; align-items: center; gap: 6px; color: #fff;
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em;
  border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.vm-category-card:hover .vm-category-cta { border-color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT GRID (HOME + SHOP)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-products-section { padding: 112px 0; }
.vm-products-section.vm-bg-secondary { background: var(--beige-200); border-top: 1px solid rgba(212,197,169,0.4); border-bottom: 1px solid rgba(212,197,169,0.4); }
.vm-section-head {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 56px;
}
.vm-section-head-row { display: flex; flex-direction: column; gap: 16px; }
.vm-section-title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--stone-900); }
.vm-section-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--stone-900); transition: color 0.2s;
}
.vm-section-link:hover { color: var(--gold); }
.vm-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
}
.vm-product-card { display: flex; flex-direction: column; gap: 12px; cursor: pointer; }
.vm-product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--stone-100);
}
.vm-product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.vm-product-card:hover .vm-product-img-wrap img { transform: scale(1.05); }
.vm-product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--fg); color: #fff;
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 8px;
}
.vm-product-badge.sale { background: #c0392b; }
.vm-product-brand { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); }
.vm-product-name { font-size: 13px; color: var(--stone-700); line-height: 1.4; }
.vm-product-price { display: flex; align-items: center; gap: 8px; }
.vm-product-price-now { font-size: 14px; font-weight: 600; color: var(--stone-900); }
.vm-product-price-was { font-size: 12px; color: var(--stone-400); text-decoration: line-through; }
.vm-product-price-sale { color: #c0392b; }

/* WooCommerce product loop overrides */
.vm-wc-wrap { width: 100%; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT GRID — FIXED (4 kolumner desktop, 2 mobil)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 48px 0 !important;
}

/* Tablet: 3 kolumner */
@media (min-width: 768px) {
  ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
  }
}

/* Desktop: 4 kolumner */
@media (min-width: 1024px) {
  ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px !important;
  }
}

/* Stor desktop: 4 kolumner med mer spacing */
@media (min-width: 1280px) {
  ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
  }
}

/* Fixa varje produkt så den inte blir för liten */
ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
}

/* Bilder – fyll hela kolumnen */
ul.products li.product a img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3 / 4 !important;
  object-fit: cover !important;
}

/* Ta bort alla WC standard-styling på produkttitel/pris */
ul.products li.product .woocommerce-loop-product__title {
  font-size: 13px !important;
  margin: 8px 0 4px !important;
  padding: 0 !important;
}

ul.products li.product .price {
  font-size: 14px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  padding: 0 !important;
}

ul.products li.product .price del {
  font-size: 12px !important;
  color: var(--stone-400) !important;
  font-weight: 400 !important;
}

ul.products li.product .price ins {
  text-decoration: none !important;
  color: #c0392b !important;
}

ul.products li.product a.button {
  display: block; width: 100%; margin-top: 10px;
  padding: 10px; text-align: center;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--fg); color: #fff; transition: background 0.2s;
}
ul.products li.product a.button:hover { background: #333; }

/* Dölj "Featured" badge på shop/women */
.woocommerce-shop .vm-badge-pill.vm-badge-featured,
.tax-product_cat .vm-badge-pill.vm-badge-featured,
.post-type-archive-product .vm-badge-pill.vm-badge-featured {
  display: none !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EDITORIAL BANNER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-editorial {
  margin: 0 24px 96px;
  border-radius: 16px; overflow: hidden;
  position: relative; min-height: 50vh;
  display: flex; align-items: center;
  background: var(--stone-900);
}
.vm-editorial img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%; /* Ansikten klippta - visar kläder från halsen ned */
  opacity: 0.5;
}
.vm-editorial-content {
  position: relative; z-index: 2;
  padding: 48px; max-width: 560px;
}
.vm-editorial-eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.vm-editorial-title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 24px; }
.vm-editorial-title em { font-style: italic; font-weight: 400; }
.vm-editorial-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--fg);
  padding: 14px 32px;
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em;
  transition: background 0.2s;
}
.vm-editorial-btn:hover { background: var(--stone-100); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MANIFESTO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-manifesto {
  padding: 128px 24px;
  text-align: center; max-width: 760px; margin: 0 auto;
}
.vm-manifesto-label { margin-bottom: 32px; }
.vm-manifesto-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(28px, 4vw, 48px); color: var(--stone-900);
  line-height: 1.3; margin-bottom: 32px;
}
.vm-manifesto-author {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.25em; color: var(--stone-400);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHOP PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-shop-header {
  padding: 48px 0 32px;
  background: var(--beige-200);
  border-bottom: 1px solid var(--border);
}
.vm-shop-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--muted); margin-bottom: 24px;
}
.vm-shop-breadcrumb a:hover { color: var(--fg); }
.vm-shop-title {
  font-family: var(--font-display); font-size: clamp(28px, 5vw, 48px);
  font-weight: 700; letter-spacing: -0.02em; color: var(--stone-900);
  margin-bottom: 16px;
}
.vm-shop-desc { font-size: 14px; color: var(--muted); max-width: 640px; }
.vm-shop-layout { display: flex; flex-direction: column; gap: 24px; padding: 40px 0 80px; }
.vm-shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.vm-filter-btn {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--stone-700); padding: 8px 16px;
  border: 1px solid var(--border); border-radius: 4px;
  transition: all 0.2s;
}
.vm-filter-btn:hover { background: var(--stone-900); color: #fff; border-color: var(--stone-900); }
.vm-sort-select {
  font-size: 12px; font-weight: 600; color: var(--stone-700);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 8px 12px; background: #fff; outline: none;
}
.vm-results-count { font-size: 12px; color: var(--muted); }
.vm-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CART PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-cart-page { max-width: 1100px; margin: 0 auto; padding: 48px 24px 80px; }
.vm-cart-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.vm-back-btn { display: flex; color: var(--muted); transition: color 0.2s; }
.vm-back-btn:hover { color: var(--fg); }
.vm-back-btn svg { width: 20px; height: 20px; }
.vm-cart-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 600;
  display: flex; align-items: center; gap: 12px;
}
.vm-cart-count {
  font-size: 14px; font-weight: 400; color: var(--muted);
  background: var(--beige-200); padding: 2px 10px; border-radius: 999px;
}
.vm-cart-grid { display: flex; flex-direction: column; gap: 32px; }
.vm-cart-items { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.vm-cart-item {
  display: flex; gap: 16px; padding: 20px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.vm-cart-item:last-child { border-bottom: none; }
.vm-cart-item:hover { background: rgba(237,229,218,0.3); }
.vm-cart-item-img {
  width: 96px; height: 128px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden; background: var(--beige-200);
}
.vm-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.vm-cart-item-body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.vm-cart-item-brand { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-bottom: 4px; }
.vm-cart-item-name { font-size: 13px; color: var(--stone-700); margin-bottom: 8px; line-height: 1.4; }
.vm-cart-item-meta { font-size: 12px; color: var(--stone-400); margin-bottom: 16px; }
.vm-cart-item-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.vm-qty-wrap { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 6px; }
.vm-qty-btn {
  padding: 8px 10px; color: var(--muted); display: flex; align-items: center;
  transition: color 0.15s;
}
.vm-qty-btn:hover { color: var(--fg); }
.vm-qty-btn svg { width: 12px; height: 12px; }
.vm-qty-display { width: 32px; text-align: center; font-size: 13px; font-weight: 500; }
.vm-qty-wrap input[type=number] {
  width: 40px; text-align: center; border: none; background: none;
  font-size: 13px; font-weight: 500; outline: none;
  -moz-appearance: textfield;
}
.vm-qty-wrap input::-webkit-outer-spin-button,
.vm-qty-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.vm-cart-item-price { font-size: 14px; font-weight: 600; color: var(--stone-900); }
.vm-cart-remove {
  display: flex; align-items: flex-start;
  color: var(--muted); transition: color 0.2s;
  padding: 2px;
}
.vm-cart-remove:hover { color: #c0392b; }
.vm-cart-remove svg { width: 16px; height: 16px; }
.vm-cart-summary {
  border: 1px solid var(--border); border-radius: 12px;
  background: rgba(237,229,218,0.3);
  padding: 24px; display: flex; flex-direction: column; gap: 20px;
}
.vm-cart-summary h2 { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.vm-summary-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
.vm-summary-total { display: flex; justify-content: space-between; font-size: 17px; font-weight: 700; color: var(--fg); padding-top: 12px; border-top: 1px solid var(--border); }
.vm-checkout-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px;
  background: #E8E0D5; color: var(--fg);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em;
  border-radius: 6px; transition: background 0.2s;
}
.vm-checkout-btn:hover { background: var(--beige-300); }
.vm-continue-shopping { text-align: center; font-size: 13px; color: var(--muted); transition: color 0.2s; }
.vm-continue-shopping:hover { color: var(--fg); }
.vm-cart-empty {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 48px 24px; text-align: center; gap: 24px;
}
.vm-cart-empty-icon {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--beige-200);
  display: flex; align-items: center; justify-content: center;
}
.vm-cart-empty-icon svg { width: 40px; height: 40px; color: var(--muted); }
.vm-cart-empty h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.vm-cart-empty p { color: var(--muted); margin-bottom: 8px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CHECKOUT — LUXURY REDESIGN v4
   Two-column desktop, single-column mobile.
   Left: form. Right: order summary with thumbnails.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Body */
.vm-co-body {
  background: #f5f3f0;
  min-height: 100vh; margin: 0; padding: 0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* ── Top bar ── */
.vm-co-topbar {
  background: rgba(245,243,240,0.96);
  border-bottom: 1px solid rgba(220,215,208,0.7);
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.vm-co-topbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.vm-co-back {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.04); border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--stone-500); text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.vm-co-back:hover { background: rgba(0,0,0,0.08); color: var(--stone-900); }
.vm-co-brand-link { text-decoration: none; }
.vm-co-topbar-logo { height: 32px; width: auto; object-fit: contain; }
.vm-co-brand {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.38em; font-size: 14px;
  text-transform: uppercase; color: var(--stone-900);
}
.vm-co-secure-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--stone-400);
  background: rgba(0,0,0,0.04); border-radius: 20px;
  padding: 5px 10px;
}

/* ── Progress stepper ── */
.vm-co-stepper {
  display: flex; align-items: center; justify-content: center;
  padding: 20px 24px 24px; gap: 0;
}
.vm-co-step-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.vm-co-step-circle {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; transition: all 0.3s;
}
.vm-co-step-done .vm-co-step-circle  { background: #1c1917; color: #fff; }
.vm-co-step-active .vm-co-step-circle {
  background: #fff; color: #1c1917;
  box-shadow: 0 0 0 2px #1c1917;
}
.vm-co-step-future .vm-co-step-circle { background: #e7e5e4; color: #a8a29e; }
.vm-co-step-lbl {
  font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
}
.vm-co-step-done .vm-co-step-lbl   { color: var(--stone-500); }
.vm-co-step-active .vm-co-step-lbl { color: #1c1917; }
.vm-co-step-future .vm-co-step-lbl { color: #d6d3d1; }
.vm-co-step-line {
  width: 60px; height: 1px; background: #e7e5e4; margin-bottom: 22px; flex-shrink: 0;
  transition: background 0.3s;
}
.vm-co-step-line-done { background: #1c1917; }

/* ── Two-column layout ── */
.vm-co-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  max-width: 1200px; margin: 0 auto;
  min-height: calc(100vh - 130px);
  align-items: start;
}
.vm-co-left {
  padding: 8px 48px 80px 24px;
  border-right: 1px solid rgba(220,215,208,0.5);
}
.vm-co-right {
  padding: 8px 24px 80px 40px;
  position: sticky; top: 72px;
}

/* ── Mobile order toggle ── */
.vm-co-mobile-order-toggle {
  display: none;
  align-items: center; justify-content: space-between;
  background: #1c1917; color: #fff;
  padding: 14px 16px; border-radius: 12px;
  margin-bottom: 16px; cursor: pointer;
  font-size: 12px; font-weight: 600;
  user-select: none;
}
.vm-co-mot-left { display: flex; align-items: center; gap: 8px; }
.vm-co-mot-chevron { transition: transform 0.25s; }
.vm-co-mobile-order-toggle.vm-open .vm-co-mot-chevron { transform: rotate(180deg); }
.vm-co-mobile-order-panel {
  display: none; margin-bottom: 16px;
  background: #fff; border-radius: 16px;
  border: 1px solid rgba(220,215,208,0.6);
  overflow: hidden;
}
.vm-co-mobile-order-toggle.vm-open + .vm-co-mobile-order-panel { display: block; }

/* ── Cards ── */
.vm-co-card {
  background: #fff;
  border: 1px solid rgba(220,215,208,0.6);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
  overflow: hidden;
  margin-bottom: 14px;
  transition: box-shadow 0.2s;
}
.vm-co-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04); }

.vm-co-card-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(220,215,208,0.45);
  background: rgba(245,243,240,0.6);
}
.vm-co-card-step {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  color: #a8a29e; background: #f0ece7;
  border-radius: 6px; padding: 3px 7px;
}
.vm-co-card-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #1c1917;
  flex: 1;
}
.vm-co-pay-icons { display: flex; gap: 6px; }
.vm-co-pay-chip {
  font-size: 9px; font-weight: 700; letter-spacing: 0.06em;
  color: #78716c; background: #f5f3f0; border: 1px solid #e7e5e4;
  border-radius: 5px; padding: 2px 6px;
}

.vm-co-card-body { padding: 20px 22px 22px; }
.vm-co-pay-body { padding: 0; }
.vm-co-pay-body .woocommerce-checkout-review-order { display: none; }

/* ── Field grid ── */
.vm-co-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.vm-co-field-w { grid-column: 1 / -1; }
.vm-co-field    { position: relative; }

/* WC field wrapper reset */
.vm-co-form .form-row { margin: 0 !important; padding: 0 !important; }
.vm-co-form .form-row-wide { grid-column: 1 / -1; }

/* Labels */
.vm-co-form .form-row label,
.vm-co-lbl {
  display: block !important;
  font-size: 9px !important; font-weight: 800 !important;
  text-transform: uppercase !important; letter-spacing: 0.2em !important;
  color: #a8a29e !important; margin-bottom: 7px !important;
}
.vm-co-form .form-row label .required { display: none !important; }

/* Inputs */
.vm-co-form .input-text,
.vm-co-form select,
.vm-co-inp {
  width: 100% !important;
  height: 48px !important;
  padding: 0 16px !important;
  border: 1.5px solid #e7e5e4 !important;
  border-radius: 10px !important;
  background: #faf9f7 !important;
  color: #1c1917 !important;
  font-size: 13px !important;
  font-family: var(--font-body) !important;
  outline: none !important;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
}
.vm-co-form .input-text:focus,
.vm-co-form select:focus,
.vm-co-inp:focus {
  border-color: #1c1917 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(28,25,23,0.07) !important;
}
.vm-co-form .input-text::placeholder,
.vm-co-inp::placeholder { color: #d6d3d1 !important; }

/* Select chevron */
.vm-co-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a8a29e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 40px !important;
}

/* Validation states */
.vm-co-form .form-row.woocommerce-validated .input-text { border-color: #10b981 !important; }
.vm-co-form .form-row.woocommerce-invalid  .input-text { border-color: #ef4444 !important; }
.vm-co-form .form-row .woocommerce-error    { color: #ef4444; font-size: 11px; margin-top: 4px; }

/* ── Payment section inside card ── */
.vm-co-pay-card #payment {
  padding: 20px 22px 22px;
}
.vm-co-pay-card #payment ul.wc_payment_methods {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.vm-co-pay-card #payment .wc_payment_method {
  padding: 12px 0; border-bottom: 1px solid #f0ece7;
}
.vm-co-pay-card #payment .wc_payment_method:last-child { border-bottom: none; }
.vm-co-pay-card #payment label {
  font-size: 13px !important; font-weight: 500 !important;
  text-transform: none !important; letter-spacing: 0 !important;
  color: #1c1917 !important;
}
/* Place order button */
.vm-co-form #place_order,
.vm-co-pay-card .button.alt,
.vm-co-pay-card #place_order {
  width: 100% !important;
  height: 52px !important; padding: 0 !important;
  background: #1c1917 !important; color: #fff !important;
  font-size: 10px !important; font-weight: 800 !important;
  text-transform: uppercase !important; letter-spacing: 0.3em !important;
  border-radius: 12px !important; border: none !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.1s !important;
  font-family: var(--font-body) !important;
  box-shadow: 0 4px 14px rgba(28,25,23,0.25) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
}
.vm-co-form #place_order:hover { background: #292524 !important; transform: translateY(-1px) !important; }
.vm-co-form #place_order:active { transform: translateY(0) !important; }

/* Hide unwanted WC review table */
.vm-co-pay-card .woocommerce-checkout-review-order-table { display: none; }
.vm-co-pay-card .shop_table.woocommerce-checkout-review-order-table { display: none; }

/* WC notices re-styled */
.vm-co-form .woocommerce-info,
.vm-co-form .woocommerce-message {
  background: #fff !important; border: 1.5px solid #e7e5e4 !important;
  border-radius: 12px !important; color: #78716c !important;
  padding: 12px 16px !important; font-size: 12px !important;
  box-shadow: none !important; margin-bottom: 14px !important;
}
.vm-co-form .woocommerce-info a { color: #1c1917 !important; font-weight: 700 !important; }
.woocommerce-error { list-style: none; }

/* ── Trust bar ── */
.vm-co-trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 16px; padding: 12px 0 4px;
}
.vm-co-trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: #a8a29e;
}
.vm-co-trust-sep { width: 1px; height: 10px; background: #e7e5e4; }

/* ── Right panel: order summary ── */
.vm-co-summary {
  background: #fff; border-radius: 16px;
  border: 1.5px solid rgba(220,215,208,0.7);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.vm-co-summary-title {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.25em; color: #a8a29e;
  margin: 0 0 18px;
}
.vm-co-sum-items { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 14px; }
.vm-co-sum-item  { display: flex; align-items: flex-start; gap: 12px; }
.vm-co-sum-thumb-wrap { position: relative; flex-shrink: 0; }
.vm-co-sum-thumb {
  width: 58px; height: 78px; border-radius: 8px;
  object-fit: cover; background: #f5f3f0;
  border: 1px solid rgba(220,215,208,0.5);
  display: block;
}
.vm-co-sum-qty {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #1c1917; color: #fff;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.vm-co-sum-info { flex: 1; min-width: 0; padding-top: 2px; }
.vm-co-sum-name {
  font-size: 12px; font-weight: 600; color: #1c1917;
  line-height: 1.4; margin: 0 0 3px;
}
.vm-co-sum-meta { font-size: 10px; color: #a8a29e; margin: 0; line-height: 1.5; }
.vm-co-sum-price { font-size: 12px; font-weight: 700; color: #1c1917; white-space: nowrap; padding-top: 2px; }

.vm-co-sum-divider { height: 1px; background: #f0ece7; margin: 14px 0; }
.vm-co-sum-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #78716c; margin-bottom: 8px;
}
.vm-co-sum-muted { color: #a8a29e; }
.vm-co-sum-free  { color: #22c55e; font-weight: 700; }
.vm-co-sum-total {
  font-size: 15px; font-weight: 800; color: #1c1917;
  margin-bottom: 0;
}
.vm-co-sum-empty { color: #a8a29e; font-size: 13px; text-align: center; padding: 16px 0; }
.vm-co-sum-promise {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; color: #a8a29e; margin-top: 16px;
  padding-top: 14px; border-top: 1px solid #f0ece7;
}

/* Deprecated class */
.vm-checkout-page { background: #f5f3f0; min-height: 100vh; }
.vm-checkout-topbar {
  background: #f5f4f2;
  border-bottom: 1px solid rgba(231,229,228,0.6);
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(8px);
}
.vm-checkout-topbar-inner {
  max-width: 560px; margin: 0 auto;
  padding: 0 20px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.vm-checkout-brand {
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: 0.35em; font-size: 13px;
  text-transform: uppercase; color: var(--stone-900);
}
.vm-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 24px 32px 32px;
}
.vm-progress-step { display: flex; flex-direction: column; align-items: center; }
.vm-progress-circle {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.vm-progress-circle.done { background: var(--stone-900); color: #fff; }
.vm-progress-circle.active { background: #fff; color: var(--stone-900); outline: 2px solid var(--stone-900); }
.vm-progress-circle.future { background: var(--stone-100); color: var(--stone-300); }
.vm-progress-label {
  font-size: 8px; text-transform: uppercase; letter-spacing: 0.15em;
  font-weight: 600; margin-top: 6px;
}
.vm-progress-label.done { color: var(--stone-500); }
.vm-progress-label.active { color: var(--stone-900); }
.vm-progress-label.future { color: var(--stone-300); }
.vm-progress-line { width: 80px; height: 1px; margin-bottom: 16px; }
.vm-progress-line.done { background: var(--stone-900); }
.vm-progress-line.future { background: var(--stone-200); }
.vm-checkout-body { flex: 1; max-width: 560px; width: 100%; margin: 0 auto; padding: 0 16px 80px; }
.vm-checkout-card {
  background: #fff; border-radius: 16px;
  border: 1px solid var(--stone-100);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  overflow: hidden; margin-bottom: 12px;
}
.vm-checkout-card-inner { padding: 24px; }
.vm-field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vm-field-group .vm-field-wide { grid-column: 1 / -1; }
.vm-field-label {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-400);
  margin-bottom: 6px;
}
.vm-field-input {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--stone-200); border-radius: 8px;
  background: #fff; font-size: 13px; color: var(--stone-800);
  outline: none; transition: border-color 0.15s;
}
.vm-field-input:focus { border-color: var(--stone-900); box-shadow: 0 0 0 3px rgba(28,25,23,0.05); }
.vm-field-input::placeholder { color: var(--stone-300); }
.vm-section-divider { margin: 0 24px; height: 1px; background: var(--stone-100); }
.vm-section-title-sm {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--stone-400); margin-bottom: 20px;
}
.vm-continue-btn {
  width: 100%; padding: 16px; border-radius: 10px;
  background: #E8E0D5; color: var(--fg);
  font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.vm-continue-btn:hover { background: var(--beige-300); }
.vm-continue-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.vm-trust-row {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 9px; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.1em;
  padding: 8px 0;
}
.vm-trust-divider { width: 1px; height: 12px; background: var(--stone-200); }

/* WooCommerce checkout overrides */
.woocommerce-checkout #customer_details { display: none; }
.woocommerce-checkout .vm-checkout-card .woocommerce-billing-fields h3,
.woocommerce-checkout .vm-checkout-card .woocommerce-shipping-fields h3 { display: none; }
form.checkout .form-row label { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-400); }
form.checkout .form-row input,
form.checkout .form-row select {
  border: 1px solid var(--stone-200); border-radius: 8px;
  padding: 14px 16px; font-size: 13px; width: 100%;
}
form.checkout .form-row input:focus,
form.checkout .form-row select:focus { border-color: var(--stone-900); outline: none; }
#place_order {
  background: #E8E0D5 !important; color: var(--fg) !important;
  font-family: var(--font-sans) !important;
  font-size: 10px !important; font-weight: 500 !important;
  text-transform: uppercase !important; letter-spacing: 0.25em !important;
  padding: 16px !important; width: 100% !important;
  border: none !important; border-radius: 10px !important;
  transition: background 0.15s !important;
}
#place_order:hover { background: var(--beige-300) !important; }
.woocommerce-order-review { display: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SINGLE PRODUCT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.single-product .woocommerce-product-gallery { margin-bottom: 24px; }
.single-product .entry-summary { padding: 24px 0; }
.single-product .product_title { font-family: var(--font-serif); font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.single-product .woocommerce-product-rating { margin-bottom: 12px; }
.single-product .price { font-size: 22px; font-weight: 700; color: var(--stone-900); margin-bottom: 20px; }
.single-product .price del { font-size: 16px; color: var(--stone-400); font-weight: 400; }
.single-product .price ins { text-decoration: none; color: #c0392b; }
.single-product button.single_add_to_cart_button {
  background: var(--fg) !important; color: #fff !important;
  font-size: 11px !important; font-weight: 600 !important;
  text-transform: uppercase !important; letter-spacing: 0.15em !important;
  padding: 14px 32px !important; border: none !important;
  transition: background 0.2s !important; width: 100% !important;
  border-radius: 4px !important;
}
.single-product button.single_add_to_cart_button:hover { background: #333 !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-footer {
  background: var(--footer-bg);
  color: var(--stone-400);
  padding: 96px 0 48px;
}
.vm-footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; margin-bottom: 80px;
}
.vm-footer-brand-name {
  font-family: var(--font-serif); font-style: italic;
  font-size: 24px; letter-spacing: 0.05em; color: #fff;
  display: inline-block; margin-bottom: 16px;
}
.vm-footer-tagline { font-size: 13px; color: var(--stone-500); line-height: 1.6; max-width: 280px; margin-bottom: 16px; }
.vm-footer-social { display: flex; gap: 16px; margin-bottom: 16px; }
.vm-footer-social a { color: var(--stone-600); transition: color 0.2s; }
.vm-footer-social a:hover { color: var(--beige-300); }
.vm-footer-social svg { width: 16px; height: 16px; }
.vm-footer-address { font-size: 11px; color: var(--stone-700); line-height: 1.7; }
.vm-footer-address strong { color: var(--stone-600); }
.vm-footer-col-title {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.25em; color: var(--gold); margin-bottom: 20px;
}
.vm-footer-links { display: flex; flex-direction: column; gap: 14px; }
.vm-footer-links a { font-size: 13px; color: var(--stone-500); transition: color 0.2s; }
.vm-footer-links a:hover { color: var(--beige-300); }
.vm-newsletter-desc { font-size: 13px; color: var(--stone-500); line-height: 1.6; margin-bottom: 16px; }
.vm-newsletter-form { display: flex; margin-bottom: 8px; }
.vm-newsletter-input {
  background: var(--stone-900); border: 1px solid var(--stone-700);
  color: #fff; padding: 12px 16px;
  flex: 1; font-size: 13px; outline: none;
  transition: border-color 0.2s;
  border-right: none; border-radius: 0;
}
.vm-newsletter-input:focus { border-color: var(--gold); }
.vm-newsletter-input::placeholder { color: var(--stone-600); }
.vm-newsletter-btn {
  background: var(--gold); color: #fff;
  padding: 12px 20px; white-space: nowrap;
  font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em;
  transition: background 0.2s; border-radius: 0;
}
.vm-newsletter-btn:hover { background: var(--gold-lt); }
.vm-newsletter-btn:disabled { opacity: 0.7; }
.vm-newsletter-msg { font-size: 12px; margin-top: 8px; display: none; }
.vm-newsletter-msg.success { color: #6ee7b7; }
.vm-footer-bottom {
  border-top: 1px solid #2a2018; padding-top: 32px;
  display: flex; flex-direction: column; gap: 24px;
  align-items: center;
}
.vm-footer-legal { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.vm-footer-legal-text { font-size: 11px; color: var(--stone-700); }
.vm-footer-legal-links { display: flex; gap: 16px; }
.vm-footer-legal-links a { font-size: 11px; color: var(--stone-600); transition: color 0.2s; }
.vm-footer-legal-links a:hover { color: var(--beige-300); }
.vm-payment-icons { display: flex; align-items: center; gap: 8px; }
.vm-payment-icon { opacity: 0.5; transition: opacity 0.2s; }
.vm-payment-icon:hover { opacity: 1; }
.vm-payment-icon svg { height: 24px; width: auto; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATIC PAGES (about, faq etc.)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-page-content {
  max-width: 760px; margin: 0 auto;
  padding: 64px 24px 96px;
}
.vm-page-content h1 { margin-bottom: 32px; }
.vm-page-content h2 { font-size: 22px; margin-top: 40px; margin-bottom: 16px; }
.vm-page-content p { font-size: 15px; color: var(--stone-600); line-height: 1.8; margin-bottom: 16px; }
.vm-page-content ul { padding-left: 20px; margin-bottom: 16px; }
.vm-page-content ul li { font-size: 15px; color: var(--stone-600); line-height: 1.8; margin-bottom: 6px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WooCommerce notices
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.woocommerce-info, .woocommerce-message, .woocommerce-error {
  padding: 12px 16px; margin-bottom: 16px;
  border-radius: 8px; font-size: 13px;
  list-style: none;
}
.woocommerce-info, .woocommerce-message { background: #e0f2fe; color: #0369a1; border-left: 4px solid #0369a1; }
.woocommerce-error { background: #fee2e2; color: #991b1b; border-left: 4px solid #991b1b; }
.woocommerce-info a, .woocommerce-message a { color: inherit; font-weight: 600; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 640px) {
  .vm-value-desc { display: block; }
}

@media (min-width: 768px) {
  .vm-nav { display: flex; }
  .vm-mobile-btn { display: none; }
  .vm-values-grid { grid-template-columns: repeat(4, 1fr); }
  .vm-value-item:nth-child(2n) { border-right: 1px solid rgba(212,197,169,0.4); }
  .vm-value-item:nth-child(4n) { border-right: none; }
  .vm-categories { grid-template-columns: 1fr 1fr; }
  .vm-category-card { height: 70vh; }
  .vm-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .vm-footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .vm-footer-legal { flex-direction: row; text-align: left; }
  .vm-section-head-row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .vm-cart-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .vm-cart-items { grid-column: 1 / 3; }
  .vm-cart-summary { grid-column: 3; position: sticky; top: 96px; height: fit-content; }
}

@media (min-width: 1024px) {
  .vm-product-grid { grid-template-columns: repeat(4, 1fr); }
  .vm-shop-grid { grid-template-columns: repeat(4, 1fr); }
  .vm-header-inner { padding: 0 40px; }
  .vm-container { padding: 0 40px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-about-page { padding-bottom: 96px; }
.vm-about-hero {
  text-align: center;
  padding: 80px 24px 64px;
  max-width: 760px; margin: 0 auto;
}
.vm-about-brand-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.vm-about-subtitle { font-size: 17px; color: var(--stone-500); line-height: 1.7; }
.vm-about-who-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; margin-bottom: 80px;
  padding: 0 24px;
}
.vm-about-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700; margin-bottom: 20px;
}
.vm-about-body p { font-size: 15px; color: var(--stone-600); line-height: 1.8; margin-bottom: 16px; }
.vm-about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vm-about-stat {
  background: var(--stone-50, #f5f4f2);
  border-radius: 12px; padding: 24px;
  text-align: center;
}
.vm-about-stat-value { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.vm-about-stat-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--stone-400); }
.vm-about-values-section { margin-bottom: 80px; padding: 0 24px; }
.vm-about-values-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.vm-about-value-card { border-top: 2px solid var(--stone-900); padding-top: 24px; }
.vm-about-value-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.vm-about-value-card p  { font-size: 13px; color: var(--stone-500); line-height: 1.7; }
.vm-about-promise {
  background: var(--stone-900); color: #fff;
  margin: 0 24px 64px;
  border-radius: 16px; padding: 64px 40px;
  text-align: center;
}
.vm-about-promise-inner { max-width: 560px; margin: 0 auto; }
.vm-about-promise-title { font-family: var(--font-display); font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-bottom: 16px; }
.vm-about-promise-desc { font-size: 14px; color: var(--stone-400); line-height: 1.7; }
.vm-about-cta { text-align: center; padding: 0 24px 64px; }

@media (min-width: 768px) {
  .vm-about-who-grid { grid-template-columns: 1fr 1fr; }
  .vm-about-values-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INFO PAGES (shipping, faq, etc.)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-info-page { padding-bottom: 96px; }
.vm-info-hero {
  text-align: center;
  padding: 72px 24px 56px;
  max-width: 680px; margin: 0 auto;
}
.vm-info-title { font-family: var(--font-display); font-size: clamp(30px, 5vw, 48px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.vm-info-subtitle { font-size: 15px; color: var(--stone-500); line-height: 1.7; }
.vm-info-subtitle a { color: var(--stone-900); text-decoration: underline; }
.vm-info-section { padding-bottom: 56px; }
.vm-info-section-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  padding-bottom: 12px; border-bottom: 1px solid var(--stone-200);
  margin-bottom: 24px;
}
.vm-info-body p { font-size: 14px; color: var(--stone-600); line-height: 1.8; margin-bottom: 16px; }
.vm-info-body p a { color: var(--stone-900); text-decoration: underline; }
.vm-info-body ul, .vm-info-body ol { padding-left: 20px; margin-bottom: 16px; }
.vm-info-body ul li, .vm-info-body ol li { font-size: 14px; color: var(--stone-600); line-height: 1.8; margin-bottom: 6px; }
.vm-info-note { font-size: 12px !important; color: var(--stone-400) !important; }
.vm-info-steps-box {
  background: var(--stone-50, #f5f4f2);
  border-radius: 12px; padding: 24px; margin-top: 8px;
}
.vm-info-steps-box h3 { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.vm-info-steps-box ol { padding-left: 20px; margin-bottom: 20px; }
.vm-info-steps-box li { font-size: 14px; color: var(--stone-600); line-height: 1.8; margin-bottom: 8px; }
.vm-info-table-wrap { overflow-x: auto; border: 1px solid var(--stone-200); border-radius: 12px; margin-bottom: 16px; }
.vm-info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.vm-info-table thead { background: var(--stone-50, #f5f4f2); }
.vm-info-table th { text-align: left; padding: 12px 16px; font-weight: 600; color: var(--stone-900); white-space: nowrap; }
.vm-info-table td { padding: 12px 16px; color: var(--stone-500); border-top: 1px solid var(--stone-100); }
.vm-info-table tr:hover td { background: var(--stone-50, #f5f4f2); }
.vm-shipping-sections { padding: 0; }

/* Shipping highlights */
.vm-shipping-highlights {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-bottom: 56px;
}
.vm-shipping-highlight {
  background: var(--stone-50, #f5f4f2);
  border-radius: 12px; padding: 24px;
  text-align: center;
}
.vm-shipping-highlight svg { margin: 0 auto 12px; display: block; color: var(--stone-700); }
.vm-shipping-highlight h3 { font-size: 13px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.vm-shipping-highlight p  { font-size: 12px; color: var(--stone-500); line-height: 1.6; }

@media (min-width: 768px) {
  .vm-shipping-highlights { grid-template-columns: repeat(4, 1fr); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; padding: 0 0 80px;
}
.vm-contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.vm-contact-info-card {
  background: var(--stone-50, #f5f4f2);
  border-radius: 12px; padding: 24px;
}
.vm-contact-info-card svg { color: var(--stone-700); margin-bottom: 12px; }
.vm-contact-info-card h3 { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.vm-contact-info-card a { font-size: 12px; color: var(--stone-500); text-decoration: underline; transition: color 0.2s; }
.vm-contact-info-card a:hover { color: var(--stone-900); }
.vm-contact-info-card p { font-size: 12px; color: var(--stone-500); line-height: 1.7; }
.vm-contact-tip-card {
  border: 1px solid var(--stone-200); border-radius: 12px; padding: 20px;
}
.vm-contact-tip-card strong { font-size: 13px; display: block; margin-bottom: 6px; }
.vm-contact-tip-card p { font-size: 12px; color: var(--stone-500); line-height: 1.6; }
.vm-contact-form-wrap {}
.vm-contact-form {
  background: #fff; border: 1px solid var(--stone-200);
  border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.vm-form-row-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.vm-form-field { display: flex; flex-direction: column; gap: 6px; }
.vm-form-error {
  background: #fee2e2; border: 1px solid #fca5a5;
  color: #991b1b; font-size: 13px;
  padding: 12px 16px; border-radius: 8px;
}
.vm-contact-submit {
  width: 100%; padding: 14px;
  background: var(--stone-900); color: #fff;
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em;
  border: none; border-radius: 8px;
  cursor: pointer; transition: background 0.2s;
}
.vm-contact-submit:hover { background: #333; }
.vm-form-privacy { font-size: 11px; color: var(--stone-400); text-align: center; }
.vm-form-privacy a { text-decoration: underline; color: var(--stone-600); }
.vm-contact-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 48px 24px; gap: 16px;
  background: #fff; border: 1px solid var(--stone-200); border-radius: 16px;
}
.vm-contact-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #d1fae5;
  display: flex; align-items: center; justify-content: center;
}
.vm-contact-success-icon svg { color: #10b981; }
.vm-contact-success h2 { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.vm-contact-success p { font-size: 14px; color: var(--stone-500); max-width: 340px; }
.vm-contact-another { font-size: 12px; color: var(--stone-400); text-decoration: underline; margin-top: 4px; }
@media (min-width: 640px) {
  .vm-form-row-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .vm-contact-grid { grid-template-columns: 320px 1fr; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-faq-wrap { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
.vm-faq-section { margin-bottom: 40px; }
.vm-faq-category-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.25em; color: var(--stone-400); margin-bottom: 16px;
}
.vm-faq-card {
  background: #fff; border: 1px solid var(--stone-100);
  border-radius: 12px; overflow: hidden;
  padding: 0 24px;
}
.vm-faq-item { border-bottom: 1px solid var(--stone-100); }
.vm-faq-item:last-child { border-bottom: none; }
.vm-faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; text-align: left;
  font-size: 14px; font-weight: 500; color: var(--stone-900);
  gap: 16px; transition: color 0.15s;
}
.vm-faq-btn:hover { color: var(--stone-500); }
.vm-faq-chevron { width: 16px; height: 16px; color: var(--stone-400); flex-shrink: 0; transition: transform 0.2s; }
.vm-faq-answer { padding-bottom: 16px; }
.vm-faq-answer p { font-size: 14px; color: var(--stone-500); line-height: 1.7; }
.vm-faq-cta-box {
  background: var(--stone-50, #f5f4f2);
  border-radius: 12px; padding: 32px;
  text-align: center; margin-top: 48px;
}
.vm-faq-cta-title { font-size: 15px; font-weight: 600; color: var(--stone-900); margin-bottom: 8px; }
.vm-faq-cta-desc  { font-size: 14px; color: var(--stone-500); margin-bottom: 20px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EDITORIAL PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-editorial-page-header { text-align: center; margin-bottom: 48px; }
.vm-editorial-page-title { font-family: var(--font-display); font-size: clamp(36px, 7vw, 64px); font-weight: 700; letter-spacing: -0.02em; margin: 12px 0 16px; }
.vm-editorial-page-subtitle { font-size: 15px; color: var(--stone-500); max-width: 480px; margin: 0 auto; }
.vm-ed-stories-top { margin-bottom: 24px; }
.vm-ed-story-hero {
  display: block; position: relative; overflow: hidden;
  border-radius: 16px; width: 100%; min-height: 400px;
  background: var(--stone-900);
}
.vm-ed-story-hero img { 
  position: absolute; inset: 0; width: 100%; height: 100%; 
  object-fit: cover;
  object-position: center 22%; /* Ansikten klippta - visar kläder från halsen ned */
  transition: transform 0.7s; 
}
.vm-ed-story-hero:hover img { transform: scale(1.05); }
.vm-ed-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, transparent 100%); }
.vm-ed-story-hero-content {
  position: absolute; bottom: 0; left: 0;
  padding: 48px; color: #fff;
}
.vm-ed-eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; opacity: 0.7; display: block; margin-bottom: 8px; }
.vm-ed-story-hero-title { font-family: var(--font-display); font-size: clamp(24px, 4vw, 44px); font-weight: 700; margin-bottom: 12px; }
.vm-ed-story-hero-desc { font-size: 14px; color: rgba(255,255,255,0.7); max-width: 440px; margin-bottom: 20px; display: none; }
.vm-ed-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 2px; transition: border-color 0.2s; }
.vm-ed-story-hero:hover .vm-ed-cta { border-color: #fff; }
.vm-ed-cta-sm { font-size: 11px; }
.vm-ed-stories-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
.vm-ed-story-card {
  display: block; position: relative; overflow: hidden;
  border-radius: 16px; aspect-ratio: 4/5;
  background: var(--stone-900);
}
.vm-ed-story-card img { 
  position: absolute; inset: 0; width: 100%; height: 100%; 
  object-fit: cover;
  object-position: center 22%; /* Ansikten klippta - visar kläder från halsen ned */
  transition: transform 0.7s; 
}
.vm-ed-story-card:hover img { transform: scale(1.05); }
.vm-ed-story-card-content { position: absolute; bottom: 0; left: 0; padding: 24px; color: #fff; }
.vm-ed-story-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.vm-ed-journal { border-top: 1px solid var(--stone-200); padding-top: 48px; }
.vm-ed-journal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.vm-ed-journal-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.vm-ed-features-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.vm-ed-feature { cursor: pointer; }
.vm-ed-feature-img-wrap { aspect-ratio: 4/3; overflow: hidden; border-radius: 12px; }
.vm-ed-feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.vm-ed-feature:hover .vm-ed-feature-img-wrap img { transform: scale(1.05); }
.vm-ed-feature-title { font-size: 15px; font-weight: 600; color: var(--stone-900); transition: color 0.2s; }
.vm-ed-feature:hover .vm-ed-feature-title { color: var(--stone-400); }

@media (min-width: 768px) {
  .vm-ed-stories-grid { grid-template-columns: 1fr 1fr; }
  .vm-ed-story-hero { min-height: 500px; }
  .vm-ed-story-hero-desc { display: block; }
  .vm-ed-features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RETURNS PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-returns-wrap { max-width: 640px; margin: 0 auto; padding: 48px 24px 80px; }
.vm-returns-tabs { display: flex; border: 1px solid var(--stone-200); border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
.vm-returns-tab {
  flex: 1; padding: 14px;
  font-size: 13px; font-weight: 500;
  background: #fff; color: var(--stone-500);
  transition: all 0.15s;
}
.vm-returns-tab:hover { color: var(--stone-900); }
.vm-returns-tab-active { background: var(--stone-900); color: #fff !important; }
.vm-returns-card {
  background: #fff; border: 1px solid var(--stone-200);
  border-radius: 12px; padding: 24px; margin-bottom: 16px;
}
.vm-returns-form { display: flex; flex-direction: column; gap: 0; }
.vm-returns-success {
  background: #fff; border: 1px solid var(--stone-200);
  border-radius: 16px; padding: 40px 24px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
}
.vm-returns-success h2 { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.vm-returns-success p  { font-size: 14px; color: var(--stone-500); max-width: 400px; }
.vm-returns-next-steps { background: var(--stone-50, #f5f4f2); border-radius: 12px; padding: 20px; width: 100%; max-width: 400px; }
.vm-returns-next-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--stone-900); margin-bottom: 16px; }
.vm-returns-step { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.vm-returns-step-num { width: 20px; height: 20px; border-radius: 50%; background: var(--stone-200); color: var(--stone-600); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.vm-returns-step p { font-size: 12px; color: var(--stone-600); line-height: 1.6; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WISHLIST PAGE — Luxury (v3.15.12)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Header */
.vm-wl-page { padding-bottom: 100px; }
.vm-wl-header {
  background: #faf9f7;
  border-bottom: 1px solid rgba(212,197,169,0.3);
  padding: 36px 0 32px;
  margin-bottom: 48px;
}
.vm-wl-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em;
  color: #a8a29e; margin-bottom: 16px;
}
.vm-wl-breadcrumb a { color: #a8a29e; text-decoration: none; }
.vm-wl-breadcrumb a:hover { color: #1c1917; }
.vm-wl-breadcrumb span { color: #d6d3d1; }
.vm-wl-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; letter-spacing: -0.02em;
  color: #1c1917; margin: 0 0 8px;
}
.vm-wl-subtitle {
  font-size: 12px; color: #a8a29e;
  letter-spacing: 0.08em; min-height: 18px;
}

/* Empty state */
.vm-wl-empty {
  flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 24px; text-align: center; gap: 18px;
  color: #d6d3d1;
}
.vm-wl-empty-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: #44403c; margin: 0;
}
.vm-wl-empty-sub {
  font-size: 13px; color: #a8a29e;
  line-height: 1.6; max-width: 300px; margin: 0;
}
.vm-wl-shop-btn {
  display: inline-block;
  margin-top: 8px; padding: 14px 32px;
  background: #E8E0D5; color: #1c1917;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}
.vm-wl-shop-btn:hover { background: #d4c5a9; }

/* Grid */
.vm-wl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}
@media (min-width: 768px)  { .vm-wl-grid { grid-template-columns: repeat(3, 1fr); gap: 48px 28px; } }
@media (min-width: 1100px) { .vm-wl-grid { grid-template-columns: repeat(4, 1fr); gap: 56px 32px; } }

/* Card */
.vm-wl-card {
  position: relative;
  display: flex; flex-direction: column;
}
.vm-wl-remove {
  position: absolute; top: 10px; right: 10px; z-index: 10;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #a8a29e;
  opacity: 0;
  transition: opacity .25s, color .2s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.vm-wl-card:hover .vm-wl-remove { opacity: 1; }
.vm-wl-remove:hover { color: #1c1917; }

/* Image */
.vm-wl-img-link { display: block; text-decoration: none; }
.vm-wl-img-wrap {
  aspect-ratio: 3/4; overflow: hidden;
  background: #f7f5f2; margin-bottom: 0;
  position: relative;
}
.vm-wl-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 1s cubic-bezier(.16,1,.3,1);
}
.vm-wl-card:hover .vm-wl-img-wrap img { transform: scale(1.05); }
.vm-wl-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #d6d3d1;
}

/* Info */
.vm-wl-card-info {
  display: flex; flex-direction: column;
  gap: 0; padding: 14px 2px 0;
}
.vm-wl-brand {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: #a8a29e; display: block; margin-bottom: 5px;
}
.vm-wl-name {
  font-size: 13px; font-weight: 400;
  color: #292524; line-height: 1.45;
  text-decoration: none; display: block;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vm-wl-name:hover { color: #1c1917; }
.vm-wl-price {
  font-size: 13px; font-weight: 500;
  color: #1c1917; display: block;
  margin-bottom: 14px;
}
.vm-wl-atb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px;
  background: #E8E0D5; color: #1c1917;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.vm-wl-atb:hover { background: #d4c5a9; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WISHLIST HEART BUTTON (on product cards)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-wish-btn {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--stone-400); transition: color 0.2s, background 0.2s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  z-index: 3;
}
.vm-wish-btn:hover, .vm-wish-btn.active { color: #e53e3e; }
.vm-wish-btn svg { width: 15px; height: 15px; }
.vm-wish-btn.active svg { fill: #e53e3e; stroke: #e53e3e; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CART PAGE v2 — identical to React CartPage
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-cart-page { background: var(--beige, #f5f4f2); min-height: 60vh; padding-bottom: 80px; }
.vm-cart-wrap { max-width: 1024px; margin: 0 auto; padding: 40px 20px; }

.vm-cart-header-row {
  display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
}
.vm-cart-back {
  color: var(--stone-400); transition: color 0.2s;
}
.vm-cart-back:hover { color: var(--stone-900); }
.vm-cart-title {
  font-family: var(--font-display); font-size: clamp(22px, 4vw, 30px);
  font-weight: 600; display: flex; align-items: center; gap: 12px;
}
.vm-cart-count-badge {
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: var(--stone-400); background: var(--stone-100);
  padding: 2px 10px; border-radius: 99px;
}

/* Layout */
.vm-cart-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; align-items: start;
}
@media (min-width: 1024px) {
  .vm-cart-layout { grid-template-columns: 1fr 380px; }
}

/* Items list */
.vm-cart-list {
  list-style: none; padding: 0; margin: 0;
  border: 1px solid var(--stone-200); border-radius: 16px;
  overflow: hidden; background: #fff;
}
.vm-cart-item {
  display: flex; gap: 16px; padding: 20px;
  border-bottom: 1px solid var(--stone-100);
  transition: background 0.15s;
}
.vm-cart-item:last-child { border-bottom: none; }
.vm-cart-item:hover { background: var(--stone-50, #f9f8f7); }

.vm-cart-item-thumb {
  width: 96px; height: 128px; flex-shrink: 0;
  background: var(--stone-100); border-radius: 8px; overflow: hidden;
}
.vm-cart-item-thumb img, .vm-cart-item-thumb a img {
  width: 100%; height: 100%; object-fit: cover;
}

.vm-cart-item-details { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.vm-cart-item-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.vm-cart-item-info { flex: 1; min-width: 0; }
.vm-cart-item-brand { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--stone-400); margin-bottom: 4px; }
.vm-cart-item-name { font-size: 14px; font-weight: 500; color: var(--stone-900); line-height: 1.4; margin-bottom: 6px; }
.vm-cart-item-name a { color: inherit; }
.vm-cart-item-name a:hover { text-decoration: underline; }
.vm-cart-item-meta { font-size: 12px; color: var(--stone-400); }
.vm-cart-item-meta .variation { display: block; margin-bottom: 2px; }

.vm-cart-remove {
  color: var(--stone-300); padding: 4px; transition: color 0.2s; flex-shrink: 0;
}
.vm-cart-remove:hover { color: #dc2626; }
.vm-cart-remove svg { width: 16px; height: 16px; }

.vm-cart-item-bottom {
  display: flex; align-items: center; justify-content: space-between; margin-top: auto;
}
.vm-qty-ctrl {
  display: flex; align-items: center;
  border: 1px solid var(--stone-200); border-radius: 8px; overflow: hidden;
}
.vm-qty-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  color: var(--stone-400); transition: color 0.15s, background 0.15s;
}
.vm-qty-btn:hover { color: var(--stone-900); background: var(--stone-50, #f9f8f7); }
.vm-qty-input {
  width: 36px; height: 36px; text-align: center; font-size: 13px; font-weight: 500;
  border: none; border-left: 1px solid var(--stone-200); border-right: 1px solid var(--stone-200);
  outline: none; background: transparent; color: var(--stone-900);
  -moz-appearance: textfield;
}
.vm-qty-input::-webkit-inner-spin-button,
.vm-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.vm-cart-item-price { font-size: 15px; font-weight: 600; color: var(--stone-900); }

/* Summary card */
.vm-cart-summary-col {}
.vm-cart-summary-card {
  background: var(--stone-50, #f5f4f2);
  border: 1px solid var(--stone-200); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 20px;
  position: sticky; top: 90px;
}
.vm-summary-heading { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.vm-summary-lines { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.vm-summary-line { display: flex; justify-content: space-between; align-items: center; color: var(--stone-500); }
.vm-summary-note { font-style: italic; font-size: 12px; }
.vm-summary-discount { color: #10b981; }
.vm-summary-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 17px; font-weight: 700; color: var(--stone-900);
  padding-top: 16px; border-top: 1px solid var(--stone-200);
}
.vm-checkout-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: #e8e0d5; color: #1a1a1a;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em;
  border-radius: 10px; transition: background 0.2s, box-shadow 0.2s;
}
.vm-checkout-cta:hover { background: #ddd5c8; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.vm-continue-link {
  text-align: center; font-size: 13px; font-weight: 500;
  color: var(--stone-400); transition: color 0.2s;
}
.vm-continue-link:hover { color: var(--stone-900); }

/* Coupon */
.vm-coupon-wrap { border-top: 1px solid var(--stone-200); padding-top: 16px; }
.vm-coupon-form { display: flex; gap: 8px; }
.vm-coupon-input {
  flex: 1; height: 38px; padding: 0 12px;
  border: 1px solid var(--stone-200); border-radius: 8px;
  font-size: 13px; color: var(--stone-900); outline: none;
  transition: border-color 0.2s;
}
.vm-coupon-input:focus { border-color: var(--stone-700); }
.vm-coupon-btn {
  height: 38px; padding: 0 16px;
  background: var(--stone-900); color: #fff;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: 8px; transition: background 0.2s;
}
.vm-coupon-btn:hover { background: #333; }

/* Trust */
.vm-cart-trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 10px; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.12em;
  justify-content: center;
}
.vm-trust-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--stone-300); }

/* Empty state */
.vm-cart-empty-state {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 50vh; gap: 20px; text-align: center; padding: 40px 24px;
}
.vm-cart-empty-icon {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--stone-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--stone-400);
}
.vm-cart-empty-state h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.vm-cart-empty-state p  { font-size: 14px; color: var(--stone-400); line-height: 1.7; max-width: 320px; }

/* ── Checkout responsive ── */
@media (max-width: 900px) {
  .vm-co-layout {
    grid-template-columns: 1fr;
  }
  .vm-co-left {
    padding: 8px 16px 48px;
    border-right: none;
  }
  .vm-co-right { display: none; }
  .vm-co-mobile-order-toggle { display: flex; }
  .vm-co-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .vm-co-grid { grid-template-columns: 1fr; }
  .vm-co-field-w { grid-column: 1; }
  .vm-co-stepper { gap: 0; }
  .vm-co-step-line { width: 32px; }
}
@media (min-width: 901px) {
  .vm-co-mobile-order-toggle,
  .vm-co-mobile-order-panel { display: none !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EU CURRENCY CONVERTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-currency-wrap { display: flex; align-items: center; }
.vm-currency-select {
  height: 32px; padding: 0 24px 0 10px;
  border: 1px solid var(--stone-200); border-radius: 8px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23a8a29e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 6px center;
  -webkit-appearance: none; appearance: none;
  font-size: 11px; font-weight: 600; color: var(--stone-600);
  cursor: pointer; transition: border-color 0.2s;
  max-width: 130px;
}
.vm-currency-select:focus { outline: none; border-color: var(--stone-500); }
.vm-currency-select:hover { border-color: var(--stone-400); }

/* Mobile: tighten up */
@media (max-width: 640px) {
  .vm-currency-wrap { display: none; } /* hidden on mobile, shown in mobile menu instead */
  .vm-cart-item-thumb { width: 72px; height: 96px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CART DRAWER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Overlay */
.vm-cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  cursor: pointer;
}
.vm-cart-overlay.vm-open { display: block; }

/* Drawer panel */
.vm-cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 450px;
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -8px 0 60px rgba(0,0,0,0.15);
}
.vm-cart-drawer.vm-open { transform: translateX(0); }

/* Drawer header */
.vm-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #e8e3dd;
  flex-shrink: 0;
  gap: 10px;
}
.vm-drawer-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  letter-spacing: 0.01em; line-height: 1; flex: 1;
  margin: 0;
}
.vm-drawer-count {
  font-size: 12px; font-weight: 400; color: #78716c;
  /* Plain text, no pill — matches outleaitalia */
}
.vm-drawer-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--stone-400);
  transition: background 0.15s, color 0.15s;
}
.vm-drawer-close:hover { background: var(--stone-100); color: var(--stone-900); }
.vm-drawer-close svg { width: 20px; height: 20px; }

/* Drawer scrollable body */
.vm-drawer-body {
  flex: 1; overflow-y: auto; overflow-x: hidden;
}

/* Item list */
.vm-drawer-list { list-style: none; margin: 0; padding: 0; }
.vm-drawer-item {
  display: flex; gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid #f0ece7;
}

/* Thumbnail — square like outleaitalia */
.vm-drawer-thumb {
  width: 80px; height: 100px;
  flex-shrink: 0; overflow: hidden;
  background: #f5f0eb;
}
.vm-drawer-thumb img, .vm-drawer-thumb a img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Item info */
.vm-drawer-item-info { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.vm-drawer-item-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 8px;
}
.vm-drawer-brand {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: #78716c; margin-bottom: 3px;
}
.vm-drawer-name {
  font-size: 13px; font-weight: 500; color: #1c1917;
  line-height: 1.35; margin-bottom: 6px;
}
.vm-drawer-name a { color: inherit; }
.vm-drawer-name a:hover { text-decoration: underline; }

/* Meta: Size / Color on separate lines — outleaitalia style */
.vm-drawer-meta {
  font-size: 12px; color: #78716c; margin-bottom: 10px; line-height: 1.6;
}
.vm-drawer-meta dl { margin: 0; display: flex; flex-direction: column; }
.vm-drawer-meta dt { display: none; }
.vm-drawer-meta dd { margin: 0; }
.vm-drawer-meta .wc-item-meta-label { font-weight: 500; }

/* Remove button */
.vm-drawer-remove {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; flex-shrink: 0;
  color: #a8a29e;
  transition: color 0.15s;
}
.vm-drawer-remove:hover { color: #dc2626; }

/* Qty + price row */
.vm-drawer-item-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 10px;
}
.vm-drawer-qty {
  display: flex; align-items: center;
  border: 1px solid #d6cfc7; border-radius: 4px;
  overflow: hidden; height: 28px;
}
.vm-drawer-qbtn {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  color: #57534e;
  transition: background 0.12s;
  text-decoration: none; font-size: 14px;
}
.vm-drawer-qbtn:hover { background: #f5f0eb; }
.vm-drawer-qty-val {
  width: 26px; text-align: center;
  font-size: 13px; font-weight: 600; color: #1c1917;
  border-left: 1px solid #d6cfc7; border-right: 1px solid #d6cfc7;
  line-height: 28px;
}
.vm-drawer-price {
  font-size: 14px; font-weight: 600; color: #1c1917;
}

/* Footer — exactly like outleaitalia */
.vm-drawer-footer {
  border-top: 1px solid #e8e3dd;
  background: #faf8f5;
  padding: 20px 20px 24px;
  display: flex; flex-direction: column; gap: 0;
  flex-shrink: 0;
}
.vm-drawer-totals { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.vm-drawer-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #78716c;
}
.vm-drawer-note { font-size: 12px; color: #a8a29e; font-style: italic; }
.vm-drawer-total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 700; color: #1c1917;
  padding-top: 14px; margin-top: 4px;
  border-top: 1px solid #e8e3dd;
}

/* PROCEED TO CHECKOUT — dark button exactly like outleaitalia */
.vm-drawer-checkout {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #1c1917; color: #fff;
  padding: 15px 24px; margin-top: 16px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  width: 100%;
  transition: background 0.2s;
}
.vm-drawer-checkout:hover { background: #333; color: #fff; }

/* ══════════════════════════════════════════════════════════════════
   CART DRAWER v3.6 — luxurious AJAX-based mini cart (.vm-mc-*)
═══════════════════════════════════════════════════════════════════ */
.vm-mc-loading {
  display: flex; align-items: center; justify-content: center;
  height: 200px; font-size: 13px; color: #a8a29e;
  letter-spacing: 0.05em;
}

/* Empty state */
.vm-mc-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 32px 60px; gap: 16px; color: #57534e;
}
.vm-mc-empty svg { color: #d6cfc7; margin-bottom: 8px; }
.vm-mc-empty-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 600; color: #1c1917; margin: 0;
}
.vm-mc-empty-sub { font-size: 13px; color: #78716c; margin: 0; max-width: 240px; line-height: 1.6; }
.vm-mc-empty-btn {
  display: inline-block; margin-top: 12px;
  background: #E8E0D5; color: #1c1917;
  padding: 13px 32px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  transition: background 0.2s;
}
.vm-mc-empty-btn:hover { background: #d4c5a9; color: #1c1917; }

/* Item list */
.vm-mc-list { list-style: none; margin: 0; padding: 0; }
.vm-mc-item {
  display: flex; gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid #f0ece7;
  transition: opacity 0.2s;
}
.vm-mc-item:last-child { border-bottom: none; }

/* Thumbnail */
.vm-mc-thumb {
  width: 84px; height: 110px; flex-shrink: 0;
  overflow: hidden; background: #f5f0eb; display: block;
}
.vm-mc-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.vm-mc-thumb:hover img { transform: scale(1.04); }

/* Info column */
.vm-mc-info { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.vm-mc-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 10px; margin-bottom: auto;
}
.vm-mc-brand {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.22em; color: #78716c; margin: 0 0 4px;
}
.vm-mc-name {
  display: block;
  font-size: 13px; font-weight: 500; color: #1c1917;
  line-height: 1.4; text-decoration: none;
  margin-bottom: 6px;
}
.vm-mc-name:hover { text-decoration: underline; text-underline-offset: 3px; }
.vm-mc-metas { display: flex; flex-direction: column; gap: 2px; }
.vm-mc-meta { font-size: 11px; color: #78716c; line-height: 1.5; }
.vm-mc-meta em { font-style: normal; color: #a8a29e; font-weight: 500; }

.vm-mc-remove {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: transparent; border: 0; cursor: pointer;
  color: #a8a29e; transition: all 0.15s;
}
.vm-mc-remove:hover { background: #faf6f1; color: #1c1917; }

/* Bottom row: qty + price */
.vm-mc-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px;
}
.vm-mc-qty {
  display: inline-flex; align-items: center;
  border: 1px solid #e8e3dd; height: 30px;
}
.vm-mc-qty button {
  width: 30px; height: 30px;
  background: transparent; border: 0; cursor: pointer;
  font-size: 16px; line-height: 1; color: #57534e;
  transition: background 0.12s;
}
.vm-mc-qty button:hover { background: #faf6f1; color: #1c1917; }
.vm-mc-qty span {
  min-width: 32px; text-align: center;
  font-size: 13px; font-weight: 600; color: #1c1917;
  border-left: 1px solid #e8e3dd; border-right: 1px solid #e8e3dd;
  line-height: 30px;
}
.vm-mc-price {
  font-size: 14px; font-weight: 600; color: #1c1917;
  letter-spacing: 0.01em;
}

/* Footer */
.vm-mc-foot {
  flex-shrink: 0;
  border-top: 1px solid #e8e3dd;
  background: #faf8f5;
  padding: 22px 24px 26px;
}
.vm-mc-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #1c1917; padding: 4px 0;
}
.vm-mc-muted { color: #78716c; font-size: 12px; }
.vm-mc-total {
  font-size: 15px; font-weight: 700;
  padding-top: 14px; margin-top: 8px;
  border-top: 1px solid #e8e3dd;
}
.vm-mc-checkout {
  display: flex; align-items: center; justify-content: center;
  background: #1c1917; color: #fff !important;
  padding: 16px 24px; margin-top: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; text-decoration: none;
  width: 100%; transition: background 0.2s;
}
.vm-mc-checkout:hover { background: #44403c; color: #fff !important; }
.vm-mc-viewcart {
  display: block; text-align: center; margin-top: 12px;
  font-size: 11px; color: #57534e; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 600;
  text-decoration: underline; text-underline-offset: 4px;
}
.vm-mc-viewcart:hover { color: #1c1917; }

/* Continue Shopping link */
.vm-drawer-continue {
  display: block; text-align: center;
  font-size: 12px; font-weight: 500; color: #78716c;
  margin-top: 12px;
  transition: color 0.15s; text-decoration: none;
}
.vm-drawer-continue:hover { color: #1c1917; }

/* Empty state */
.vm-drawer-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 48px 32px;
  text-align: center; gap: 12px; min-height: 320px;
}
.vm-drawer-empty-icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--stone-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.vm-drawer-empty-icon svg { width: 36px; height: 36px; color: var(--stone-400); }
.vm-drawer-empty h3 { font-size: 18px; font-weight: 500; color: var(--stone-900); }
.vm-drawer-empty p { font-size: 13px; color: var(--stone-400); }
.vm-drawer-start-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--fg); color: #fff;
  padding: 14px 40px; margin-top: 12px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.25em;
  border-radius: 8px; width: 100%;
  transition: background 0.2s;
}
.vm-drawer-start-btn:hover { background: #333; }

/* ── Header left/actions flex helpers (needed for new header.php) ── */
.vm-header-left {
  display: flex; align-items: center; gap: 32px;
}
@media (min-width: 768px) {
  .vm-nav { display: flex; gap: 28px; align-items: center; }
  .vm-mobile-btn { display: none; }
}
@media (max-width: 767px) {
  .vm-mega-drop { display: none !important; }
  .vm-cart-drawer { max-width: 100%; }
}

/* ── Cart page: hide WP "Cart" page title (we use our own "Shopping Bag" header) ── */
.woocommerce-cart .entry-title,
.woocommerce-cart h1.page-title,
.woocommerce-cart .page-title,
.woocommerce-cart .wp-block-post-title { display: none !important; }

/* ── Checkout: hide WC extra fields ── */
.woocommerce-billing-fields .woocommerce-form-row--wide.form-row-wide:is(p:has(#billing_company)),
p#billing_company_field,
p#billing_address_2_field,
p#order_comments_field { display: none !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHOP FILTER BAR (gender tabs + sub-cat pills)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--stone-100);
  padding: 0 0 4px;
  margin-bottom: 8px;
}
.vm-filter-bar .vm-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Gender tabs */
.vm-gender-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--stone-100);
}
.vm-gender-tab {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 20px;
  color: var(--stone-400);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.vm-gender-tab:hover { color: var(--stone-700); }
.vm-gender-tab.vm-active {
  color: var(--stone-900);
  border-bottom-color: var(--stone-900);
}

/* Sub-category pills */
.vm-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0 10px;
}
.vm-cat-pill {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 1px solid var(--stone-200);
  border-radius: 99px;
  color: var(--stone-500);
  background: transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.vm-cat-pill:hover {
  background: var(--stone-100);
  color: var(--stone-800);
  border-color: var(--stone-300);
}
.vm-cat-pill.vm-active {
  background: var(--stone-900);
  color: #fff;
  border-color: var(--stone-900);
}

@media (max-width: 640px) {
  .vm-gender-tab { padding: 14px 14px; font-size: 11px; }
  .vm-cat-pills  { gap: 6px; padding: 12px 0 8px; }
  .vm-cat-pill   { font-size: 10px; padding: 5px 12px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRIVATE SALE HEADER (dark bg)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-sale-header {
  background: #1c1917;
  color: #fff;
  padding: 40px 0 32px;
}
.vm-sale-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.vm-sale-breadcrumb a { color: rgba(255,255,255,0.4); transition: color .15s; }
.vm-sale-breadcrumb a:hover { color: #fff; }
.vm-sale-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.3em; color: #ef4444; margin-bottom: 12px;
}
.vm-sale-title {
  font-family: var(--font-display); font-size: clamp(32px,5vw,56px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1;
  color: #fff; margin-bottom: 12px;
}
.vm-sale-title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.vm-sale-desc { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 560px; margin-bottom: 24px; }
.vm-sale-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.vm-sale-pill {
  padding: 8px 20px; border-radius: 99px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.6);
  transition: background .15s, color .15s, border-color .15s;
}
.vm-sale-pill:hover { border-color: #fff; color: #fff; }
.vm-sale-pill.vm-active { background: #fff; color: #1c1917; border-color: #fff; }
.vm-sale-subcats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.vm-sale-subcat {
  padding: 5px 14px; border-radius: 99px;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5);
  transition: all .15s;
}
.vm-sale-subcat:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.85); }
.vm-sale-subcat.vm-active { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHOP BODY — sidebar + grid
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-shop-body { padding: 0 0 80px; }
.vm-shop-body-inner { display: flex; gap: 40px; align-items: flex-start; padding-top: 32px; }

/* ── Sidebar ── */
.vm-shop-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky; top: 88px;
}
.vm-sidebar-title {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.25em; color: var(--stone-400); margin-bottom: 16px;
}
.vm-sidebar-search {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--stone-200); border-radius: 6px;
  padding: 8px 12px; margin-bottom: 8px;
}
.vm-sidebar-search input {
  border: none; background: none; outline: none;
  font-size: 12px; color: var(--stone-700); width: 100%;
}
.vm-sidebar-search input::placeholder { color: var(--stone-400); }
.vm-sidebar-search svg { color: var(--stone-400); flex-shrink: 0; }
.vm-sidebar-section {
  border-bottom: 1px solid var(--stone-100);
  padding-bottom: 4px; margin-bottom: 4px;
}
.vm-sidebar-section[open] { padding-bottom: 12px; }
.vm-sidebar-section-head {
  display: flex; align-items: center; justify-content: space-between;
  list-style: none; cursor: pointer;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--stone-900); padding: 12px 0;
  user-select: none;
}
.vm-sidebar-section-head::-webkit-details-marker { display: none; }
.vm-sideaccord-chevron { color: var(--stone-300); transition: transform .2s; flex-shrink: 0; }
.vm-sidebar-section[open] .vm-sideaccord-chevron { transform: rotate(180deg); }
.vm-sidebar-section-body { display: flex; flex-direction: column; gap: 2px; padding-bottom: 4px; }
.vm-sidebar-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px; border-radius: 6px;
  font-size: 13px; color: var(--stone-600);
  transition: background .12s, color .12s;
}
.vm-sidebar-item:hover { background: var(--stone-100); color: var(--stone-900); }
.vm-sidebar-item.vm-active { background: var(--stone-900); color: #fff; }
.vm-sidebar-check-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px; border-radius: 6px;
  font-size: 13px; color: var(--stone-600);
  transition: background .12s, color .12s; cursor: pointer;
}
.vm-sidebar-check-item:hover { background: var(--stone-100); color: var(--stone-900); }
.vm-sidebar-check-item.vm-active { color: var(--stone-900); }
.vm-sidebar-checkbox {
  width: 16px; height: 16px; border: 1.5px solid var(--stone-300); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .12s, border-color .12s;
}
.vm-sidebar-check-item.vm-active .vm-sidebar-checkbox { background: var(--stone-900); border-color: var(--stone-900); color: #fff; }
.vm-sidebar-brand-list { max-height: 200px; overflow-y: auto; }
.vm-sidebar-brand-list::-webkit-scrollbar { width: 3px; }
.vm-sidebar-brand-list::-webkit-scrollbar-thumb { background: var(--stone-200); border-radius: 99px; }
.vm-sidebar-size-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--stone-400); margin-bottom: 8px; margin-top: 4px; }
.vm-sidebar-sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.vm-sidebar-size {
  padding: 4px 8px; border: 1px solid var(--stone-200); border-radius: 4px;
  font-size: 11px; font-weight: 500; color: var(--stone-600);
  transition: all .12s;
}
.vm-sidebar-size:hover { border-color: var(--stone-900); color: var(--stone-900); }
.vm-sidebar-size.vm-active { background: var(--stone-900); color: #fff; border-color: var(--stone-900); }

/* ── Sidebar: Price range mini-form ── */
.vm-sidebar-price-form {
  display: flex; align-items: center; gap: 6px;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--stone-100);
}
.vm-sidebar-price-form input[type="number"] {
  width: 100%; min-width: 0;
  border: 1px solid var(--stone-200); border-radius: 4px;
  padding: 7px 8px; font-size: 12px; outline: none;
  -moz-appearance: textfield;
}
.vm-sidebar-price-form input::-webkit-outer-spin-button,
.vm-sidebar-price-form input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.vm-sidebar-price-form input:focus { border-color: var(--stone-900); }
.vm-sidebar-price-form span { color: var(--stone-400); font-size: 11px; }
.vm-sidebar-price-form button {
  background: var(--stone-900); color: #fff; border: none;
  padding: 7px 10px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; border-radius: 4px;
}
.vm-sidebar-price-form button:hover { background: var(--stone-700); }

/* ── Sidebar: Color swatches (matches React) ── */
.vm-sidebar-colors {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px 6px;
}
.vm-sidebar-color {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 4px 2px; border-radius: 6px; cursor: pointer;
  transition: background .15s;
}
.vm-sidebar-color:hover { background: var(--stone-100); }
.vm-color-swatch {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid transparent; transition: all .15s;
  display: block; box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.vm-sidebar-color:hover .vm-color-swatch { border-color: var(--stone-300); }
.vm-sidebar-color.vm-active .vm-color-swatch {
  border-color: var(--stone-900); transform: scale(1.1);
}
.vm-color-name {
  font-size: 9px; color: var(--stone-400);
  text-transform: capitalize; letter-spacing: 0.02em;
  text-align: center; line-height: 1.2;
}
.vm-sidebar-color.vm-active .vm-color-name { color: var(--stone-900); font-weight: 600; }

/* ── Sidebar: Clear all filters link ── */
.vm-sidebar-clear {
  display: block; text-align: center; margin-top: 18px;
  padding: 10px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--stone-700); border: 1px solid var(--stone-200);
  border-radius: 4px; transition: all .15s;
}
.vm-sidebar-clear:hover { background: var(--stone-900); color: #fff; border-color: var(--stone-900); }

/* ── Shop description (under title) ── */
.vm-shop-desc {
  font-size: 14px; color: var(--muted); max-width: 640px;
  line-height: 1.55;
}
/* ── Luxe shop header ── */
.vm-shop-header {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #faf8f4 0%, #f5f1ea 100%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.vm-shop-header::after {
  content: ''; position: absolute; left: 50%; bottom: -1px;
  width: 64px; height: 2px; background: #1c1917; transform: translateX(-50%);
}
.vm-shop-header .container,
.vm-shop-header > .vm-container { text-align: center; }
.vm-shop-breadcrumb {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #a8a29e;
  margin-bottom: 20px;
}
.vm-shop-breadcrumb a { color: #a8a29e; text-decoration: none; transition: color .15s; }
.vm-shop-breadcrumb a:hover { color: #1c1917; }
.vm-shop-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  font-style: italic;
  color: #1c1917;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.vm-shop-desc {
  font-size: 14px; color: #78716c;
  max-width: 560px; margin: 0 auto;
  line-height: 1.7; letter-spacing: 0.01em;
}

/* ── Gender / section switcher tabs ── */
.vm-gender-tabs {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 0;
}
.vm-gender-tab {
  position: relative;
  display: inline-block;
  padding: 16px 28px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #a8a29e;
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.vm-gender-tab::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: #1c1917;
  transition: left .25s ease, right .25s ease;
}
.vm-gender-tab:hover { color: #1c1917; }
.vm-gender-tab:hover::after { left: 16px; right: 16px; }
.vm-gender-tab.vm-gt-active { color: #1c1917; }
.vm-gender-tab.vm-gt-active::after { left: 16px; right: 16px; }

/* Dark variant (inside sale header) */
.vm-gender-tabs--dark { border-top-color: rgba(255,255,255,0.12); margin-top: 24px; }
.vm-gender-tabs--dark .vm-gender-tab { color: rgba(255,255,255,0.45); }
.vm-gender-tabs--dark .vm-gender-tab::after { background: #E8E0D5; }
.vm-gender-tabs--dark .vm-gender-tab:hover { color: rgba(255,255,255,0.9); }
.vm-gender-tabs--dark .vm-gender-tab.vm-gt-active { color: #fff; }

/* Mobile: full-width, equal columns */
@media (max-width: 600px) {
  .vm-gender-tabs { gap: 0; }
  .vm-gender-tab { flex: 1; text-align: center; padding: 14px 12px; font-size: 10px; }
}

/* ── Toolbar refinement ── */
.vm-shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 32px;
  font-size: 12px; color: #78716c;
}
.vm-shop-toolbar .vm-count {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: #1c1917;
}

/* ── Luxe sidebar refinement ── */
.vm-shop-sidebar {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 24px 20px;
}
.vm-sidebar-title {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  font-style: italic;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
  color: #1c1917 !important;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.vm-sidebar-search {
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 4px !important;
  background: #fff;
  transition: border-color .15s;
}
.vm-sidebar-search:focus-within { border-color: #1c1917 !important; }
.vm-sidebar-section-head {
  font-size: 10px !important; letter-spacing: 0.22em !important;
  color: #57534e !important;
}
.vm-sidebar-section-head:hover { color: #1c1917 !important; }

/* ── Shop main ── */
.vm-shop-main { flex: 1; min-width: 0; }
.vm-no-products {
  display: flex; flex-direction: column; align-items: center;
  padding: 80px 0; text-align: center; gap: 12px;
  color: var(--stone-400);
}
.vm-no-products h3 { font-size: 20px; color: var(--stone-700); font-weight: 500; }
.vm-no-products p { font-size: 13px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT CARD  — Premium / Editorial (v3.15.9)
   Inspired by Net-a-Porter · Mytheresa · SSENSE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-product-card { list-style: none !important; padding: 0 !important; }

.vm-card-inner {
  position: relative;
  display: flex; flex-direction: column;
  background: transparent;
  cursor: pointer;
}

/* ── Badges ── */
.vm-card-badges {
  position: absolute; top: 12px; left: 12px; z-index: 10;
  display: flex; flex-direction: column; gap: 4px;
  pointer-events: none;
}
.vm-badge-pill {
  display: inline-block;
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #1c1917;
  border-radius: 0;
  line-height: 1.6;
}
.vm-badge-sale {
  background: rgba(28,25,23,0.9);
  border-color: transparent;
  color: #fff;
}

/* Dölj "Featured" badge på shop/women */
.woocommerce-shop .vm-badge-pill.vm-badge-featured,
.tax-product_cat .vm-badge-pill.vm-badge-featured,
.post-type-archive-product .vm-badge-pill.vm-badge-featured {
  display: none !important;
}

/* ── Wishlist ── */
.vm-card-wish {
  position: absolute; top: 10px; right: 10px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s ease, background .2s ease;
  box-shadow: 0 1px 8px rgba(0,0,0,0.1);
  color: #78716c; cursor: pointer;
}
.vm-card-inner:hover .vm-card-wish,
.vm-card-wish.vm-wished { opacity: 1; }
.vm-card-wish:hover { background: #fff; color: #1c1917; }
.vm-card-wish.vm-wished svg { fill: #1c1917; stroke: #1c1917; }

/* ── Image wrap ── */
.vm-card-img-link { display: block; text-decoration: none; }
.vm-card-img-wrap {
  position: relative; overflow: hidden;
  background: #f7f5f2;
  aspect-ratio: 3 / 4;
  margin-bottom: 0;
}
/* Subtle vignette on hover */
.vm-card-img-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 55%,
    rgba(0,0,0,0.18) 100%);
  opacity: 0;
  transition: opacity .5s ease;
}
.vm-card-inner:hover .vm-card-img-wrap::before { opacity: 1; }

/* Images */
.vm-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: opacity .65s cubic-bezier(.4,0,.2,1),
              transform 1s cubic-bezier(.16,1,.3,1);
  will-change: transform, opacity;
}
.vm-img-primary { opacity: 1; transform: scale(1); }
.vm-img-hover   { opacity: 0; transform: scale(1.04); }
.vm-card-inner:hover .vm-img-primary { opacity: 0; transform: scale(1.05); }
.vm-card-inner:hover .vm-img-hover   { opacity: 1; transform: scale(1); }

/* ── Quick view bar — slides up from bottom ── */
.vm-card-qv {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  height: 44px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(28,25,23,0.08);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.vm-card-inner:hover .vm-card-qv { transform: translateY(0); }
.vm-card-qv span {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: #1c1917;
}
.vm-card-qv svg { color: #1c1917; flex-shrink: 0; }

/* ── Info section ── */
.vm-card-info {
  display: flex; flex-direction: column;
  gap: 0;
  padding: 14px 2px 0;
}

.vm-card-brand {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: #a8a29e;
  margin-bottom: 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.vm-card-name {
  font-size: 13px; font-weight: 400;
  color: #292524;
  line-height: 1.45;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .2s;
}
.vm-card-name:hover { color: #1c1917; }
.vm-cn-italic {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-style: italic; font-weight: 400;
}

.vm-card-price-row {
  display: flex; align-items: center; gap: 6px;
}
.vm-card-price {
  font-size: 13px; font-weight: 500;
  color: #1c1917;
  letter-spacing: 0.01em;
}
.vm-card-price ins,
.vm-card-price.is-sale ins {
  color: #b91c1c; text-decoration: none; font-weight: 600;
}
.vm-card-price del {
  color: #c4bdb8; font-size: 11px; font-weight: 400;
  text-decoration: line-through; margin-right: 2px;
}

/* Hard-kill any WC default button/loop chrome inside cards */
li.vm-product-card .button,
li.vm-product-card .added_to_cart,
li.vm-product-card .add_to_cart_button,
li.vm-product-card form.cart,
li.vm-product-card .price + .button,
li.vm-product-card .woocommerce-loop-product__title,
li.vm-product-card > a.woocommerce-LoopProduct-link,
li.vm-product-card > .price,
li.vm-product-card > img,
li.vm-product-card .star-rating,
li.vm-product-card .onsale { display: none !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT PAGE (single-product.php)
   1:1 port of React ProductDetail.tsx
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Full-width breakout — bypass any inherited container */
.vm-product-page-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff;
}
.vm-product-page {
  display: flex !important; flex-direction: row !important;
  min-height: 80vh; width: 100%;
  align-items: stretch;
  max-width: 1600px; margin: 0 auto;
}
/* Hide ANY stray WC default gallery that slips through */
.vm-product-page-wrap .woocommerce-product-gallery,
.vm-product-page-wrap .onsale,
.vm-product-page-wrap .product_meta,
.vm-product-page-wrap .woocommerce-tabs,
.vm-product-page-wrap .related,
.vm-product-page-wrap .upsells { display: none !important; }
/* Gallery column — 55% on lg, 58% on md  */
.vm-pg-gallery-col {
  width: 55%; flex-shrink: 0;
}
@media (max-width: 1280px) { .vm-pg-gallery-col { width: 58%; } }

/* Gallery: fixed height like Zalando — 620px max 70vh */
.vm-pg-gallery {
  display: flex; gap: 0;
  width: 100%; height: 620px; max-height: 70vh;
}

/* Thumbnails strip (LEFT, like React) — 88px wide, beige bg */
.vm-pg-thumbs {
  width: 88px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 8px;
  padding: 12px;
  overflow-y: auto;
  background: #E8E0D5;
}
.vm-pg-thumb {
  width: 100%; aspect-ratio: 2 / 3;
  background: #E8E0D5; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  padding: 0; flex-shrink: 0;
  transition: border-color .15s;
}
.vm-pg-thumb img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
}
.vm-pg-thumb.vm-active { border-color: #1c1917; }
.vm-pg-thumb:hover:not(.vm-active) { border-color: #d6d3d1; }

/* Main image — flex-1, beige bg, object-contain (NOT cover!) */
.vm-pg-main-img-wrap {
  flex: 1; position: relative; overflow: hidden;
  background: #E8E0D5; cursor: zoom-in;
}
.vm-pg-main-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  display: none;
}
.vm-pg-main-img.vm-active { display: block; }

/* Info column — 45% lg / 42% md */
.vm-pg-info-col {
  width: 45%; flex-shrink: 0;
  position: relative;
  padding: 56px 64px;
}
@media (max-width: 1280px) { .vm-pg-info-col { width: 42%; padding: 40px 40px; } }
.vm-pg-info-sticky {
  position: sticky; top: 128px;
  display: flex; flex-direction: column; gap: 32px;
  padding-bottom: 48px;
}

/* Header — matches React: gap-2, brand→title→price */
.vm-pg-header { display: flex; flex-direction: column; gap: 8px; }
.vm-pg-brand {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.22em; color: #78716c;
}
.vm-pg-name {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 36px; font-weight: 700;
  line-height: 1.1; letter-spacing: -0.01em; color: #1c1917;
  margin: 0;
}
@media (max-width: 1024px) { .vm-pg-name { font-size: 28px; } }
.vm-pg-price {
  font-size: 24px; font-weight: 500; color: #1c1917;
  margin-top: 8px;
}
.vm-pg-price.vm-pg-sale ins { color: #dc2626; text-decoration: none; font-weight: 600; }
.vm-pg-price del { color: var(--stone-400); font-size: 16px; }

/* ATC wrap — make WC button beige */
.vm-pg-atc-wrap { margin-bottom: 20px; }
.vm-pg-atc-wrap .single_add_to_cart_button,
.vm-pg-atc-wrap .button {
  width: 100% !important; padding: 16px !important;
  background: #E8E0D5 !important; color: #1A1A1A !important;
  font-size: 11px !important; font-weight: 700 !important;
  text-transform: uppercase !important; letter-spacing: 0.22em !important;
  border: none !important; border-radius: 0 !important;
  cursor: pointer !important; transition: background .2s !important;
  font-family: var(--font-sans) !important;
}
.vm-pg-atc-wrap .single_add_to_cart_button:hover,
.vm-pg-atc-wrap .button:hover { background: #ddd5c8 !important; }

/* WC variations / select styling */
.vm-pg-atc-wrap .variations { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.vm-pg-atc-wrap .variations td, .vm-pg-atc-wrap .variations th { padding: 6px 0; vertical-align: middle; }
.vm-pg-atc-wrap .variations label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--stone-700); display: block; margin-bottom: 4px; }
.vm-pg-atc-wrap select { border: 1px solid var(--stone-200); padding: 10px 12px; font-size: 13px; background: #fff; width: 100%; }
.vm-pg-atc-wrap .woocommerce-variation-price { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.vm-pg-atc-wrap .quantity { display: none !important; } /* hide qty on single product */

/* Trust badges */
.vm-pg-trust {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
  margin-bottom: 16px;
}
.vm-pg-trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 6px; background: var(--stone-100); border-radius: 8px;
  text-align: center;
}
.vm-pg-trust-item svg { color: var(--stone-500); }
.vm-pg-trust-item span { font-size: 10px; font-weight: 500; color: var(--stone-500); line-height: 1.3; }

/* Payment icons */
.vm-pg-payment-icons { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.vm-pg-pay-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
  border: 1px solid var(--stone-200); border-radius: 4px;
  padding: 4px 8px; color: var(--stone-400);
}

/* Delivery info */
.vm-pg-delivery {
  border-top: 1px solid var(--stone-100); border-bottom: 1px solid var(--stone-100);
  padding: 16px 0; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.vm-pg-delivery-row { display: flex; align-items: flex-start; gap: 12px; }
.vm-pg-delivery-row svg { color: var(--stone-700); flex-shrink: 0; margin-top: 2px; }
.vm-pg-delivery-title { font-size: 13px; font-weight: 600; color: var(--stone-900); margin-bottom: 2px; }
.vm-pg-delivery-desc { font-size: 12px; color: var(--stone-500); }

/* Accordions */
.vm-pg-accord { border-bottom: 1px solid var(--stone-100); }
.vm-pg-accord-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; cursor: pointer; list-style: none;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--stone-900);
}
.vm-pg-accord-head::-webkit-details-marker { display: none; }
.vm-accord-chevron { flex-shrink: 0; transition: transform .2s; color: var(--stone-400); }
.vm-pg-accord[open] .vm-accord-chevron { transform: rotate(180deg); }
.vm-pg-accord-body { padding-bottom: 16px; font-size: 13px; color: var(--stone-600); line-height: 1.65; }
.vm-pg-accord-body p { margin: 0; }

/* ── All beige buttons ── */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce .button.checkout-button,
.wc-proceed-to-checkout a,
input[name=update_cart],
button[name=update_cart] {
  background: #E8E0D5 !important;
  color: #1A1A1A !important;
  border: none !important;
  font-size: 10px !important; font-weight: 700 !important;
  text-transform: uppercase !important; letter-spacing: 0.22em !important;
  border-radius: 0 !important;
  transition: background .2s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button.alt:hover,
.woocommerce .button.checkout-button:hover,
.wc-proceed-to-checkout a:hover {
  background: #ddd5c8 !important; color: #1A1A1A !important;
}

/* ── Stock / availability — always hidden ── */
.woocommerce-product-availability,
.stock, p.stock,
.in-stock, .out-of-stock,
.woocommerce-variation-availability { display: none !important; }

/* Mobile shop: hide sidebar, full-width grid */
@media (max-width: 768px) {
  .vm-shop-body-inner { flex-direction: column; }
  .vm-shop-sidebar { width: 100%; position: static; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMPREHENSIVE MOBILE — v3.13
   Covers entire site below 900px / 640px / 480px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Mobile filter bar — mirrors React Shop.tsx ── */
.vm-mobile-filterbar {
  display: none;
  align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  gap: 12px;
}
.vm-mobile-filterbtn {
  display: flex; align-items: center; gap: 8px;
  background: transparent; border: none; padding: 0;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #1c1917; cursor: pointer;
}
.vm-filter-count-badge {
  background: #1c1917; color: #fff;
  width: 20px; height: 20px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}
.vm-mobile-sort-wrap { position: relative; display: flex; align-items: center; }
.vm-mobile-sort {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: none; outline: none;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #1c1917; cursor: pointer;
  padding: 0 22px 0 0;
}
.vm-mobile-sort-chev {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; color: #1c1917;
}
.vm-shop-sidebar-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 998;
}
.vm-shop-sidebar-backdrop.vm-open { display: block; }
.vm-sidebar-mobile-head { display: none; }
.vm-sidebar-close {
  background: transparent; border: none; cursor: pointer;
  color: #57534e; padding: 4px;
}

/* ━━━ ≤ 900px (tablet & phone) ━━━ */
@media (max-width: 900px) {
  /* Container padding tighter */
  .vm-container { padding: 0 16px !important; }

  /* Hide desktop nav, show hamburger */
  .vm-nav { display: none !important; }
  .vm-mobile-btn { display: flex !important; }
  .vm-mega-drop { display: none !important; }

  /* Header tighter */
  .vm-header-inner { padding: 0 16px !important; height: 56px !important; }
  .vm-logo img { height: 28px !important; }
  .vm-actions { gap: 8px !important; }
  .vm-action-btn { padding: 6px !important; }
  .vm-action-btn svg { width: 18px !important; height: 18px !important; }
  .vm-bag-label { display: none !important; }
  #vm-currency-widget { display: none !important; }

  /* Ticker compact */
  .vm-ticker { font-size: 10px !important; padding: 5px 0 !important; }

  /* Hero */
  .vm-hero { min-height: 70vh !important; }
  .vm-hero-title { font-size: clamp(32px, 9vw, 48px) !important; line-height: 1.1 !important; }
  .vm-hero-eyebrow { font-size: 10px !important; }
  .vm-hero-content { padding: 0 20px !important; }
  .vm-hero-ctas { flex-direction: column; gap: 10px !important; width: 100%; max-width: 280px; margin: 0 auto 24px; }
  .vm-hero-btn-light, .vm-hero-btn-outline { width: 100% !important; }

  /* Footer single column */
  .vm-footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; text-align: left; }
  .vm-footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px !important; padding: 24px 16px !important; }
  .vm-footer-legal { flex-direction: column; align-items: flex-start; text-align: left; }

  /* Cart drawer near full width */
  .vm-cart-drawer { width: 100% !important; max-width: 420px !important; }

  /* Shop layout: drawer on mobile */
  .vm-shop-body-inner {
    flex-direction: column !important;
    padding: 16px !important;
    gap: 0 !important;
  }
  .vm-mobile-filterbar { display: flex !important; }
  .vm-shop-toolbar { display: none !important; }
  .vm-shop-sidebar {
    position: fixed !important;
    top: 0 !important; left: 0;
    width: 86% !important; max-width: 360px;
    height: 100vh !important; max-height: 100vh;
    background: #fff !important;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-radius: 0 !important;
    border: none !important;
    padding: 20px !important;
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
  }
  .vm-shop-sidebar.vm-open { transform: translateX(0); }
  .vm-sidebar-mobile-head {
    display: flex !important;
    align-items: center; justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 18px;
  }
  .vm-sidebar-mobile-head .vm-sidebar-title {
    margin: 0 !important; padding: 0 !important; border: none !important;
  }
  .vm-shop-sidebar > .vm-sidebar-title {
    /* Hide the original (now duplicated) title on mobile */
    display: none;
  }

  /* Shop header smaller */
  .vm-shop-header { padding: 36px 16px 28px !important; }
  .vm-shop-title { font-size: clamp(32px, 8vw, 42px) !important; }
  .vm-shop-desc { font-size: 13px !important; padding: 0 8px; }
  .vm-shop-toolbar { padding: 16px 0 12px !important; margin-bottom: 16px !important; font-size: 11px; }

  /* Product page — stack gallery above, info below. Gallery stays ROW (thumbs left, image right) — mirrors React */
  .vm-product-page { flex-direction: column !important; }
  .vm-pg-gallery-col { width: 100% !important; padding: 0 !important; }
  .vm-pg-info-col { width: 100% !important; padding: 28px 20px 64px !important; }
  .vm-pg-gallery { flex-direction: row !important; height: auto !important; max-height: none !important; }
  .vm-pg-thumbs {
    flex-direction: column !important; width: 60px !important;
    overflow-y: auto; overflow-x: hidden;
    padding: 8px 6px !important; gap: 6px !important;
    max-height: 70vw;
  }
  .vm-pg-thumb { width: 100% !important; height: auto !important; aspect-ratio: 2/3; flex-shrink: 0; }
  .vm-pg-main-img-wrap { flex: 1 !important; min-height: 62vw !important; }
  .vm-pg-info-sticky { position: static !important; gap: 20px !important; }
  .vm-pg-name { font-size: 22px !important; line-height: 1.2 !important; }
  .vm-pg-brand { font-size: 10px !important; }
  .vm-pg-price { font-size: 20px !important; }
  .vm-pg-trust { grid-template-columns: repeat(3,1fr) !important; gap: 6px !important; }
  .vm-pg-trust-item { padding: 10px 4px !important; }
  .vm-pg-trust-item span { font-size: 9px !important; }

  /* Page templates — content padding */
  .vm-page-content,
  .vm-about, .vm-contact, .vm-faq, .vm-editorial, .vm-shipping,
  .vm-wishlist {
    padding: 32px 16px !important;
  }
  .vm-page-title, .vm-about-hero h1, .vm-editorial h1 {
    font-size: clamp(30px, 7vw, 40px) !important;
  }

  /* Wishlist grid */
  .vm-wishlist-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }

  /* Mega menu disabled on touch — hamburger instead */
  .vm-header-left { gap: 0 !important; }

  /* Tables / forms */
  table { font-size: 12px; }
  input, select, textarea { font-size: 16px !important; /* Prevent iOS zoom */ }

  /* Headings */
  h1 { font-size: clamp(28px, 7vw, 40px) !important; }
  h2 { font-size: clamp(22px, 5.5vw, 32px) !important; }
  h3 { font-size: clamp(18px, 4.5vw, 24px) !important; }
}

/* ━━━ ≤ 640px (phones) ━━━ */
@media (max-width: 640px) {
  /* Tighter container */
  .vm-container { padding: 0 12px !important; }

  /* Compact ticker */
  .vm-ticker-inner { animation-duration: 30s !important; }
  .vm-ticker-inner span { padding: 0 12px !important; font-size: 9.5px !important; }

  /* Tighter hero */
  .vm-hero { min-height: 60vh !important; }
  .vm-hero-title { font-size: clamp(28px, 8.5vw, 40px) !important; }

  /* Smaller card titles */
  .vm-card-name { font-size: 12px !important; min-height: 32px !important; }
  .vm-card-price { font-size: 12px !important; }
  .vm-card-brand { font-size: 8px !important; letter-spacing: 0.22em !important; }

  /* Wishlist single col on tiny */
  .vm-wishlist-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

  /* Cart drawer items */
  .vm-mc-item { padding: 12px !important; gap: 10px !important; }
  .vm-mc-thumb { width: 64px !important; height: 80px !important; }
}

/* ━━━ ≤ 480px (small phones) ━━━ */
@media (max-width: 480px) {
  .vm-shop-header { padding: 28px 12px 22px !important; }
  .vm-shop-title { font-size: clamp(28px, 8vw, 36px) !important; }
  .vm-pg-info-col { padding: 24px 12px 48px !important; }
  .vm-pg-name { font-size: 22px !important; }

  /* Footer extra tight */
  .vm-footer { padding: 32px 0 16px !important; }
  .vm-footer-brand-name { font-size: 18px !important; }
}

/* ━━━ Touch-friendly: bigger tap targets globally on mobile ━━━ */
@media (max-width: 900px) {
  a.vm-card-name, a.vm-card-img-link { -webkit-tap-highlight-color: transparent; }
  button, a.button, .vm-action-btn { min-height: 40px; }
  .vm-sidebar-item, .vm-sidebar-check-item { padding: 10px 8px !important; font-size: 14px !important; }
  .vm-sidebar-section-head { padding: 14px 0 !important; font-size: 11px !important; }
  .vm-sidebar-color { padding: 8px 4px !important; }
  .vm-color-swatch { width: 32px !important; height: 32px !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LIGHTBOX — vm-lightbox
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vm-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.96);
  flex-direction: column; align-items: center; justify-content: center;
}
.vm-lightbox.vm-lb-open { display: flex; }

/* Main image area */
.vm-lb-stage {
  position: relative; flex: 1; width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.vm-lb-img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.18s ease;
  user-select: none; -webkit-user-drag: none;
}
.vm-lb-img.vm-lb-fade { opacity: 0; }

/* Close */
.vm-lb-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; z-index: 10;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.vm-lb-close:hover { background: rgba(255,255,255,0.2); }

/* Prev/Next arrows */
.vm-lb-prev, .vm-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; z-index: 10;
}
.vm-lb-prev { left: 16px; }
.vm-lb-next { right: 16px; }
.vm-lb-prev:hover, .vm-lb-next:hover { background: rgba(255,255,255,0.22); }
@media (max-width: 640px) {
  .vm-lb-prev { left: 8px; }
  .vm-lb-next { right: 8px; }
}

/* Dot strip */
.vm-lb-dots {
  display: flex; gap: 8px; padding: 14px 0 8px;
  align-items: center; justify-content: center;
}
.vm-lb-dot {
  height: 6px; border-radius: 999px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.35); padding: 0;
  transition: background 0.2s, width 0.2s;
  width: 6px;
}
.vm-lb-dot.vm-lb-dot-active { background: #fff; width: 20px; }

/* Thumbnail strip at bottom */
.vm-lb-thumbstrip {
  display: flex; gap: 8px; padding: 8px 16px 20px;
  overflow-x: auto; justify-content: center;
  scrollbar-width: none;
}
.vm-lb-thumbstrip::-webkit-scrollbar { display: none; }
.vm-lb-strip-thumb {
  flex-shrink: 0; width: 52px; height: 52px;
  border: 2px solid transparent; cursor: pointer; overflow: hidden;
  background: rgba(255,255,255,0.05);
  transition: border-color 0.15s;
}
.vm-lb-strip-thumb.vm-lb-t-active { border-color: #fff; }
.vm-lb-strip-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Zoom hint on main image */
.vm-pg-main-img-wrap { cursor: zoom-in; }
.vm-pg-zoom-hint {
  position: absolute; bottom: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.28); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity 0.2s;
}
.vm-pg-main-img-wrap:hover .vm-pg-zoom-hint { opacity: 1; }
.vm-pg-zoom-hint svg { color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CHECKOUT MULTI-STEP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Continue to Payment button */
.vm-co-continue-btn {
  width: 100%; padding: 17px 24px;
  background: #1c1917; color: #fff;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  border: none; border-radius: 0;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 8px;
  transition: background 0.18s;
}
.vm-co-continue-btn:hover { background: #292524; }
.vm-co-continue-btn svg { flex-shrink: 0; }

/* Back to Details link */
.vm-co-back-step {
  background: none; border: none; padding: 0;
  font-size: 12px; font-weight: 600; color: #78716c;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em;
  transition: color 0.15s;
}
.vm-co-back-step:hover { color: #1c1917; }

/* Validation error highlight */
.vm-co-inp.vm-co-inp-error,
input.vm-co-inp-error,
select.vm-co-inp-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 2px rgba(220,38,38,0.12) !important;
}

/* ── Currency disclaimer (shown when non-EUR selected) ── */
.vm-currency-disclaimer {
  font-size: 9px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: #a8a29e;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
  padding: 3px 8px; background: #f5f4f2;
  border-radius: 4px;
}
.vm-currency-disclaimer svg { flex-shrink: 0; color: #a8a29e; }
@media (max-width: 900px) { .vm-currency-disclaimer { display: none !important; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COOKIE CONSENT BANNER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#vm-cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #1c1917;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease;
  will-change: transform;
}
#vm-cookie-bar.vm-cookie-visible {
  transform: translateY(0);
  opacity: 1;
}
#vm-cookie-bar.vm-cookie-hide {
  transform: translateY(100%);
  opacity: 0;
}
.vm-cookie-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 11px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.vm-cookie-text p {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.5; margin: 0;
}
.vm-cookie-text strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.vm-cookie-text a {
  color: #E8E0D5;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vm-cookie-text a:hover { color: #fff; }
.vm-cookie-actions {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.vm-cookie-btn {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 16px;
  border: none; cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.vm-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
}
.vm-cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.vm-cookie-accept { background: #E8E0D5; color: #1c1917; }
.vm-cookie-accept:hover { background: #fff; }
@media (max-width: 700px) {
  .vm-cookie-inner { flex-direction: column; align-items: flex-start; padding: 14px 16px; gap: 12px; }
  .vm-cookie-actions { width: 100%; }
  .vm-cookie-btn { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════════════════════════
   LUXURY TOUCHES v3.15.14
   1. Custom cursor  2. Scroll-reveal  3. Skeleton loaders
   ═══════════════════════════════════════════════════════ */

/* ── 1. Custom cursor ── */
#vm-cur-dot,
#vm-cur-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999999;
  border-radius: 50%;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.3s;
}
#vm-cur-dot {
  width: 6px; height: 6px;
  background: #1c1917;
  /* No transition on transform — follows instantly */
}
#vm-cur-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(28,25,23,0.45);
  transition: opacity 0.3s, width 0.25s, height 0.25s, border-color 0.25s, background 0.25s;
  /* transform handled by JS lerp — no CSS transition here */
}

/* Hover state */
.vm-custom-cursor #vm-cur-ring.vm-cur-hover {
  width: 52px; height: 52px;
  border-color: rgba(28,25,23,0.2);
  background: rgba(232,224,213,0.15);
  margin-top: -8px; margin-left: -8px; /* offset for size change */
}
.vm-custom-cursor #vm-cur-dot.vm-cur-hover {
  background: #44403c;
}
/* Click shrink */
.vm-custom-cursor #vm-cur-ring.vm-cur-click {
  width: 24px; height: 24px;
  border-color: #1c1917;
}

/* Hide system cursor when custom is active */
.vm-custom-cursor,
.vm-custom-cursor * { cursor: none !important; }

/* Never show custom cursor on touch devices */
@media (hover: none) {
  #vm-cur-dot, #vm-cur-ring { display: none !important; }
  .vm-custom-cursor,
  .vm-custom-cursor * { cursor: auto !important; }
}

/* ── 2. Scroll-reveal ── */
.vm-product-card,
.vm-wl-card,
.vm-section-title,
.vm-hero-text,
.vm-footer-grid > div,
.vm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.75s cubic-bezier(.16,1,.3,1),
    transform 0.75s cubic-bezier(.16,1,.3,1);
}
.vm-product-card.vm-revealed,
.vm-wl-card.vm-revealed,
.vm-section-title.vm-revealed,
.vm-hero-text.vm-revealed,
.vm-footer-grid > div.vm-revealed,
.vm-reveal.vm-revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Don't animate for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vm-product-card,
  .vm-wl-card,
  .vm-section-title,
  .vm-hero-text,
  .vm-footer-grid > div,
  .vm-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── 3. Skeleton loaders ── */
@keyframes vm-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.vm-sk-pulse {
  background: linear-gradient(
    90deg,
    #f0ece8 25%,
    #e8e4e0 50%,
    #f0ece8 75%
  );
  background-size: 600px 100%;
  animation: vm-shimmer 1.6s infinite linear;
  border-radius: 3px;
}
.vm-mc-skeleton {
  padding: 0;
}
.vm-sk-item {
  display: flex; gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid #f0ece7;
}
.vm-sk-thumb {
  width: 80px; height: 100px;
  flex-shrink: 0; border-radius: 2px;
}
.vm-sk-lines {
  flex: 1; padding-top: 6px;
}
.vm-sk-line {
  height: 11px; border-radius: 3px;
}

/* Product grid skeletons (for future use via JS) */
.vm-sk-card {
  display: flex; flex-direction: column; gap: 10px;
}
.vm-sk-card-img {
  aspect-ratio: 3/4; border-radius: 2px;
}
.vm-sk-card-brand {
  height: 8px; width: 40%;
}
.vm-sk-card-name {
  height: 11px; width: 80%;
}
.vm-sk-card-price {
  height: 11px; width: 30%;
}
/* ── Hero & editorial: clip faces, show clothing ── */