/* ============================================================
   VENDEX — Design System (Stitch-aligned)
   Fonts  : Playfair Display (headlines) · Plus Jakarta Sans (body)
   Primary: #1c1b1b (near-black) · Accent: #c9a96e (warm gold)
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* Surface system */
  --surface:          #fbf9f8;
  --surface-low:      #f5f3f3;
  --surface-mid:      #efeded;
  --surface-high:     #e9e8e7;
  --surface-highest:  #e4e2e2;
  --on-surface:       #1b1c1c;
  --on-surface-var:   #444748;
  --outline:          #747878;
  --outline-var:      #c4c7c7;

  /* Brand */
  --primary:       #1c1b1b;
  --on-primary:    #ffffff;
  --gold:          #c9a96e;
  --gold-light:    #f6e0bd;
  --gold-dark:     #92400e;

  /* Status */
  --green:   #15803d;
  --green-bg:#dcfce7;
  --amber:   #d97706;
  --amber-bg:#fef3e2;
  --red:     #dc2626;
  --red-bg:  #fee2e2;

  /* Spacing (mirrors Stitch tokens) */
  --xs:  4px;
  --sm:  8px;
  --md:  16px;
  --lg:  24px;
  --xl:  48px;
  --m-mobile:  20px;
  --m-desktop: 64px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Misc */
  --radius:    4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--surface); color: var(--on-surface);
       font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.vx-display    { font-family: var(--font-display); font-size: clamp(32px,5vw,56px);
                 font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
.vx-display-md { font-family: var(--font-display); font-size: clamp(26px,4vw,40px);
                 font-weight: 700; line-height: 1.18; }
.vx-headline   { font-family: var(--font-display); font-size: clamp(22px,3vw,32px);
                 font-weight: 600; line-height: 1.2; }
.vx-headline-sm{ font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.vx-label-caps { font-family: var(--font-body); font-size: 12px; font-weight: 600;
                 letter-spacing: .1em; text-transform: uppercase; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.vx-container { max-width: 1440px; margin: 0 auto; padding: 0 var(--m-mobile); }
@media(min-width:1024px){ .vx-container { padding: 0 var(--m-desktop); } }
.vx-section        { padding: 80px 0; }
.vx-section-tight  { padding: 40px 0 80px; }
@media(min-width:768px){ .vx-section { padding: 120px 0; } }

.vx-section-head    { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: var(--xl); flex-wrap: wrap; gap: var(--md); }
.vx-section-head-sm { margin-bottom: var(--lg); }

/* ── HEADER ──────────────────────────────────────────────── */
.vx-header { position: fixed; top: 0; width: 100%; z-index: 100;
             background: rgba(251,249,248,.85); backdrop-filter: blur(20px);
             border-bottom: 1px solid rgba(196,199,199,.3);
             transition: box-shadow var(--transition); }
.vx-header-inner { max-width: 1440px; margin: 0 auto; padding: 0 var(--m-mobile);
                   height: 72px; display: flex; align-items: center; justify-content: space-between; gap: var(--lg); }
@media(min-width:1024px){ .vx-header-inner { padding: 0 var(--m-desktop); } }

.vx-logo           { display: flex; align-items: center; gap: var(--sm); flex-shrink: 0; }
.vx-logo-wordmark  { font-family: var(--font-display); font-size: 20px; font-weight: 700;
                     letter-spacing: .06em; color: var(--primary); text-transform: uppercase; }
.vx-logo-light .vx-logo-wordmark { color: #fff; }

.vx-nav { display: none; gap: var(--xl); }
@media(min-width:1024px){ .vx-nav { display: flex; align-items: center; } }
.vx-nav-link { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--on-surface-var);
               letter-spacing: .03em; padding: 6px 0; border-bottom: 1.5px solid transparent;
               transition: color var(--transition), border-color var(--transition); }
.vx-nav-link:hover, .vx-nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }

.vx-header-right { display: flex; align-items: center; gap: var(--sm); }
.vx-icon-btn     { position: relative; padding: 8px; color: var(--on-surface-var);
                   border-radius: 50%; transition: color var(--transition), background var(--transition); }
.vx-icon-btn:hover { color: var(--on-surface); background: var(--surface-high); }
.vx-icon-btn .material-symbols-outlined { font-size: 22px; display: block; }
.vx-cart-badge   { position: absolute; top: 4px; right: 4px; width: 16px; height: 16px;
                   background: var(--primary); color: #fff; font-size: 10px; font-weight: 700;
                   border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ── FLASH ───────────────────────────────────────────────── */
.vx-flash         { padding: var(--md); font-size: 14px; font-weight: 600; }
.vx-flash-success { background: var(--green-bg); color: #14532d; }
.vx-flash-error   { background: var(--red-bg);   color: #991b1b; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.vx-btn { display: inline-flex; align-items: center; gap: var(--sm);
          font-family: var(--font-body); font-size: 12px; font-weight: 600;
          letter-spacing: .1em; text-transform: uppercase;
          padding: 14px 28px; cursor: pointer; border: none;
          transition: all var(--transition); }
.vx-btn-primary { background: var(--primary); color: var(--on-primary); }
.vx-btn-primary:hover { background: #333; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.vx-btn-ghost   { background: rgba(255,255,255,.12); color: #fff;
                  border: 1px solid rgba(255,255,255,.3); }
.vx-btn-ghost:hover { background: rgba(255,255,255,.22); }
.vx-btn-outline { background: transparent; color: var(--primary);
                  border: 1px solid var(--outline-var); }
.vx-btn-outline:hover { background: var(--surface-mid); }
.vx-btn-full    { width: 100%; justify-content: center; }
.vx-btn:disabled{ background: var(--surface-high); color: var(--outline); cursor: default; transform: none !important; }

.vx-link-subtle  { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
                   color: var(--on-surface-var); border-bottom: 1px solid rgba(68,71,72,.3);
                   padding-bottom: 2px; transition: all var(--transition); }
.vx-link-subtle:hover  { color: var(--on-surface); border-color: var(--on-surface); }
.vx-link-underline     { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
                         color: var(--primary); border-bottom: 1px solid var(--primary); padding-bottom: 2px; }
.vx-link-underline:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ── HERO ────────────────────────────────────────────────── */
.vx-hero         { position: relative; width: 100%; height: 100svh; min-height: 600px;
                   display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: 72px; }
.vx-hero-bg      { position: absolute; inset: 0; background-size: cover; background-position: center;
                   transition: transform 10s ease-out; }
.vx-hero:hover .vx-hero-bg { transform: scale(1.04); }
.vx-hero-overlay { position: absolute; inset: 0;
                   background: linear-gradient(to top, rgba(28,27,27,.55) 0%, rgba(28,27,27,.15) 60%, transparent 100%); }
.vx-hero-content { position: relative; z-index: 2; text-align: center;
                   padding: 0 var(--m-mobile); max-width: 860px; color: #fff; }
.vx-hero-eyebrow { display: block; color: rgba(255,255,255,.75); margin-bottom: var(--md); letter-spacing: .18em; }
.vx-hero-content .vx-display { color: #fff; margin-bottom: var(--lg); text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.vx-hero-content .vx-display em { font-style: italic; color: var(--gold-light); }
.vx-hero-sub     { color: rgba(255,255,255,.7); font-size: 16px; max-width: 460px; margin: 0 auto var(--xl); line-height: 1.7; }
.vx-hero-cta     { display: flex; gap: var(--md); justify-content: center; flex-wrap: wrap; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.vx-trust-bar  { background: var(--primary); padding: 14px var(--m-mobile);
                 display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
@media(min-width:1024px){ .vx-trust-bar { padding: 14px var(--m-desktop); } }
.vx-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75);
                 font-size: 12px; font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.vx-trust-item .material-symbols-outlined { font-size: 18px; color: var(--gold); }

/* ── CATEGORY GRID ───────────────────────────────────────── */
.vx-cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--lg); }
@media(min-width:768px){ .vx-cat-grid { grid-template-columns: repeat(4,1fr); height: 480px; } }
.vx-cat-card { position: relative; display: block; overflow: hidden; background: var(--surface-high);
               height: 240px; }
@media(min-width:768px){ .vx-cat-card { height: 100%; } }
.vx-cat-img  { position: absolute; inset: 0; background-size: cover; background-position: center;
               transition: transform .7s ease; }
.vx-cat-card:hover .vx-cat-img { transform: scale(1.05); }
.vx-cat-card::before { content:''; position:absolute; inset:0; background:rgba(28,27,27,.15);
                       transition: background var(--transition); z-index:1; }
.vx-cat-card:hover::before { background: rgba(28,27,27,.04); }
.vx-cat-label { position: absolute; bottom: var(--lg); left: var(--lg); z-index: 2; }
.vx-cat-label span { display: inline-block; background: rgba(251,249,248,.92); backdrop-filter: blur(8px);
                     padding: 10px 16px; font-family: var(--font-display); font-size: 18px; font-weight: 600;
                     box-shadow: var(--shadow-sm); transform: translateY(6px);
                     transition: transform var(--transition); }
.vx-cat-card:hover .vx-cat-label span { transform: translateY(0); }

/* ── STORE BAR (search + pills) ──────────────────────────── */
.vx-store-bar  { background: #fff; border-top: 1px solid var(--outline-var); border-bottom: 1px solid var(--outline-var);
                 padding: 14px 0; position: sticky; top: 72px; z-index: 90; }
.vx-search-form{ position: relative; display: flex; align-items: center; margin-bottom: 12px; }
.vx-search-icon{ position: absolute; left: 12px; color: var(--outline); font-size: 20px; pointer-events: none; }
.vx-search-input{ width: 100%; padding: 10px 40px 10px 42px; border: 1px solid var(--outline-var);
                  border-radius: var(--radius); font-family: var(--font-body); font-size: 14px;
                  background: var(--surface-low); color: var(--on-surface); outline: none; }
.vx-search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(28,27,27,.08); }
.vx-clear-btn  { position: absolute; right: 10px; color: var(--outline); background: none; border: none;
                 cursor: pointer; display: flex; align-items: center; }
.vx-pill-row   { display: flex; gap: var(--sm); overflow-x: auto; padding-bottom: 2px; }
.vx-pill       { flex-shrink: 0; padding: 5px 16px; border: 1px solid var(--outline-var); border-radius: 999px;
                 font-size: 12px; font-weight: 600; letter-spacing: .04em; white-space: nowrap;
                 color: var(--on-surface-var); background: #fff; transition: all var(--transition); }
.vx-pill:hover { border-color: var(--primary); color: var(--primary); }
.vx-pill.active{ background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── PRODUCT GRID ────────────────────────────────────────── */
.vx-product-grid { display: grid; grid-template-columns: repeat(2, 1fr);
                   gap: var(--lg) var(--md); }
@media(min-width:640px)  { .vx-product-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px) { .vx-product-grid { grid-template-columns: repeat(4,1fr); } }

.vx-card       { display: flex; flex-direction: column; color: inherit; }
.vx-card-img-wrap{ position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--surface-high); }
.vx-card-img   { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.vx-card:hover .vx-card-img { transform: scale(1.05); }

.vx-card-overlay{ position: absolute; inset: 0; background: rgba(28,27,27,.18);
                  opacity: 0; transition: opacity var(--transition);
                  display: flex; align-items: flex-end; justify-content: center; padding-bottom: var(--md); }
.vx-card:hover .vx-card-overlay { opacity: 1; }
.vx-quick-add  { background: #fff; color: var(--primary); font-family: var(--font-body);
                 font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
                 padding: 8px 22px; border: none; cursor: pointer; box-shadow: var(--shadow-md);
                 transform: translateY(8px); transition: all var(--transition); }
.vx-card:hover .vx-quick-add { transform: translateY(0); }
.vx-quick-add:hover { background: var(--primary); color: #fff; }
.vx-quick-add:disabled { background: var(--surface-high); color: var(--outline); cursor: default; }

.vx-badge      { position: absolute; top: var(--sm); left: var(--sm);
                 font-family: var(--font-body); font-size: 10px; font-weight: 600;
                 letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px;
                 background: rgba(251,249,248,.92); backdrop-filter: blur(6px);
                 box-shadow: var(--shadow-sm); }
.vx-badge-oos  { color: var(--red); }
.vx-badge-low  { color: var(--amber); }
.vx-badge-new  { color: var(--green); }

.vx-card-body  { padding: 14px 0 0; }
.vx-card-meta  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.vx-card-cat   { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--on-surface-var); }
.vx-card-rating{ display: flex; align-items: center; gap: 3px; font-size: 12px; color: var(--on-surface-var); }
.vx-card-title { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--on-surface);
                 line-height: 1.4; margin-bottom: 6px;
                 display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vx-card-price { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--primary); }

.vx-count      { font-size: 13px; color: var(--on-surface-var); }
.vx-empty      { text-align: center; padding: 80px 20px; color: var(--on-surface-var); }
.vx-empty-icon { font-size: 56px; opacity: .3; margin: 0 auto 16px; display: block; }
.vx-empty h3   { font-size: 18px; margin-bottom: 8px; }
.vx-empty a    { color: var(--primary); font-weight: 600; border-bottom: 1px solid; }

/* ── EDITORIAL SPLIT ─────────────────────────────────────── */
.vx-editorial      { display: flex; flex-direction: column; }
@media(min-width:768px){ .vx-editorial { flex-direction: row; } }
.vx-editorial-text { flex: 1; padding: 60px var(--m-mobile);
                     display: flex; flex-direction: column; justify-content: center;
                     background: var(--surface-high); }
@media(min-width:1024px){ .vx-editorial-text { padding: 100px var(--m-desktop); } }
.vx-editorial-eyebrow{ color: var(--gold-dark); margin-bottom: var(--md); }
.vx-editorial-text .vx-display-md { margin-bottom: var(--lg); }
.vx-editorial-text .vx-display-md em { font-style: italic; }
.vx-editorial-text p { font-size: 16px; color: var(--on-surface-var); max-width: 400px;
                       line-height: 1.75; margin-bottom: var(--xl); }
.vx-editorial-img  { width: 100%; min-height: 400px; flex: 1;
                     background-size: cover; background-position: center; }
@media(min-width:768px){ .vx-editorial-img { min-height: 600px; } }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.vx-breadcrumb { padding: 16px 0; font-size: 12px; color: var(--on-surface-var); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.vx-breadcrumb a { color: var(--primary); font-weight: 600; }
.vx-breadcrumb a:hover { text-decoration: underline; }
.vx-breadcrumb-sep { color: var(--outline-var); }

/* ── PRODUCT PAGE ────────────────────────────────────────── */
.vx-prod-page     { margin-top: 72px; }
.vx-prod-hero     { width: 100%; height: 55vw; max-height: 520px; min-height: 280px; overflow: hidden; background: var(--surface-high); }
.vx-prod-hero img { width: 100%; height: 100%; object-fit: cover; }
.vx-prod-detail   { padding: var(--xl) 0; max-width: 680px; }
.vx-pd-cat        { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
                    color: var(--gold-dark); margin-bottom: 10px; }
.vx-pd-title      { font-family: var(--font-display); font-size: clamp(24px,4vw,36px); font-weight: 700;
                    line-height: 1.15; margin-bottom: 14px; }
.vx-pd-stars      { display: flex; align-items: center; gap: var(--sm); margin-bottom: 20px; }
.vx-pd-stars .material-symbols-outlined { font-size: 16px; color: var(--gold); }
.vx-pd-rcount     { font-size: 13px; color: var(--on-surface-var); }
.vx-pd-price      { font-family: var(--font-display); font-size: clamp(26px,3vw,34px); font-weight: 700;
                    color: var(--primary); margin-bottom: 8px; }
.vx-pd-stock      { font-size: 13px; font-weight: 600; margin-bottom: 22px; display: flex; align-items: center; gap: 6px; }
.vx-pd-stock .material-symbols-outlined { font-size: 16px; }
.vx-pd-divider    { border: none; border-top: 1px solid var(--outline-var); margin: var(--lg) 0; }
.vx-pd-desc       { font-size: 15px; color: var(--on-surface-var); line-height: 1.8; margin-bottom: var(--lg); }
.vx-pd-features   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sm) var(--md); margin-bottom: var(--xl); }
.vx-pd-feat       { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--on-surface-var);
                    background: var(--surface-low); padding: 11px 14px; }
.vx-pd-feat .material-symbols-outlined { font-size: 18px; color: var(--primary); }
.vx-qty-row       { display: flex; align-items: center; gap: var(--md); margin-bottom: var(--lg); }
.vx-qty-label     { font-size: 13px; font-weight: 700; }
.vx-qty-ctrl      { display: flex; border: 1px solid var(--outline-var); overflow: hidden; }
.vx-qty-ctrl button{ width: 40px; height: 40px; border: none; background: var(--surface-low); cursor: pointer;
                     font-size: 20px; color: var(--on-surface); transition: background var(--transition); }
.vx-qty-ctrl button:hover { background: var(--surface-high); }
.vx-qty-ctrl input { width: 56px; text-align: center; border: none; border-left: 1px solid var(--outline-var);
                     border-right: 1px solid var(--outline-var); font-family: var(--font-body);
                     font-size: 15px; font-weight: 700; outline: none; background: #fff; }
.vx-pd-cta        { display: flex; gap: var(--md); flex-wrap: wrap; }
.vx-pd-cta .vx-btn { flex: 1; min-width: 140px; }

.vx-related-sec   { padding: var(--xl) 0; border-top: 1px solid var(--outline-var); }
.vx-related-sec h3{ font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: var(--lg); }
.vx-related-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: var(--md); }

/* ── CART PAGE ───────────────────────────────────────────── */
.vx-page          { margin-top: 72px; padding: 40px 0 80px; }
.vx-page-title    { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: var(--xl); }
.vx-cart-layout   { display: grid; grid-template-columns: 1fr; gap: var(--xl); }
@media(min-width:768px){ .vx-cart-layout { grid-template-columns: 1fr 320px; } }
.vx-cart-table    { width: 100%; border-collapse: collapse; }
.vx-cart-table th { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
                    color: var(--on-surface-var); padding: 10px 0; border-bottom: 1px solid var(--outline-var);
                    text-align: left; }
.vx-cart-table td { padding: 20px 0; border-bottom: 1px solid var(--outline-var); vertical-align: middle; font-size: 14px; }
.vx-cart-prod     { display: flex; align-items: flex-start; gap: var(--md); }
.vx-cart-prod img { width: 72px; height: 90px; object-fit: cover; flex-shrink: 0; }
.vx-cart-prod-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.vx-cart-prod-cat   { font-size: 12px; color: var(--on-surface-var); }
.vx-qty-inp       { width: 54px; padding: 6px; text-align: center; border: 1px solid var(--outline-var);
                    font-family: var(--font-body); font-size: 14px; font-weight: 600; outline: none; }
.vx-qty-inp:focus { border-color: var(--primary); }
.vx-remove-btn    { background: none; border: none; cursor: pointer; color: var(--outline);
                    font-size: 13px; font-weight: 600; padding: 4px; transition: color var(--transition); }
.vx-remove-btn:hover { color: var(--red); }

.vx-summary-card  { border: 1px solid var(--outline-var); padding: var(--lg); position: sticky; top: 100px; }
.vx-summary-card h3{ font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: var(--lg); }
.vx-sum-row       { display: flex; justify-content: space-between; font-size: 14px; color: var(--on-surface-var); margin-bottom: 10px; }
.vx-sum-total     { display: flex; justify-content: space-between; font-family: var(--font-display);
                    font-size: 22px; font-weight: 700; margin: 16px 0 var(--lg);
                    padding-top: 14px; border-top: 1px solid var(--outline-var); }
.vx-secure-note   { text-align: center; font-size: 11px; color: var(--outline); margin-top: var(--md);
                    display: flex; align-items: center; justify-content: center; gap: 5px; }
.vx-secure-note .material-symbols-outlined { font-size: 14px; }

.vx-empty-cart    { text-align: center; padding: 80px 20px; border: 1px solid var(--outline-var); }
.vx-empty-cart .material-symbols-outlined { font-size: 56px; color: var(--outline-var); display: block; margin: 0 auto 16px; }
.vx-empty-cart h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.vx-empty-cart p  { color: var(--on-surface-var); font-size: 14px; margin-bottom: 24px; }

/* ── CHECKOUT PAGE ───────────────────────────────────────── */
.vx-checkout-grid { display: grid; grid-template-columns: 1fr; gap: var(--xl); }
@media(min-width:768px){ .vx-checkout-grid { grid-template-columns: 1fr 380px; } }
.vx-form-section  { }
.vx-form-section h3{ font-family: var(--font-display); font-size: 18px; font-weight: 600;
                     margin-bottom: var(--lg); padding-bottom: 14px; border-bottom: 1px solid var(--outline-var); }
.vx-form-group    { margin-bottom: 18px; }
.vx-form-label    { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
                    text-transform: uppercase; color: var(--on-surface-var); margin-bottom: 6px; }
.vx-form-input,
.vx-form-textarea,
.vx-form-select   { width: 100%; padding: 12px 14px; border: 1px solid var(--outline-var);
                    font-family: var(--font-body); font-size: 14px; color: var(--on-surface);
                    background: var(--surface-low); outline: none; transition: border-color var(--transition); }
.vx-form-input:focus,
.vx-form-textarea:focus,
.vx-form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(28,27,27,.07); }

.vx-checkout-items{ margin-bottom: var(--lg); }
.vx-co-item       { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 10px; gap: 12px; }
.vx-co-item-name  { color: var(--on-surface-var); flex: 1; }
.vx-co-item-price { font-weight: 700; flex-shrink: 0; }

/* ── ORDER CONFIRMATION ──────────────────────────────────── */
.vx-confirm-wrap  { max-width: 500px; margin: 60px auto; text-align: center;
                    padding: 48px 32px; border: 1px solid var(--outline-var); }
.vx-confirm-icon  { width: 72px; height: 72px; background: var(--green-bg); border-radius: 50%;
                    display: flex; align-items: center; justify-content: center;
                    margin: 0 auto 20px; }
.vx-confirm-icon .material-symbols-outlined { font-size: 36px; color: var(--green); }
.vx-confirm-wrap h2 { font-family: var(--font-display); font-size: 26px; margin-bottom: 12px; }
.vx-order-num     { font-family: var(--font-display); font-size: 22px; font-weight: 700;
                    color: var(--green); margin: 14px 0; }
.vx-confirm-wrap p { font-size: 14px; color: var(--on-surface-var); line-height: 1.75; margin-bottom: 6px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.vx-footer         { background: var(--primary); color: rgba(255,255,255,.65);
                     padding-top: var(--xl); }
.vx-footer-grid    { display: grid; grid-template-columns: 1fr;
                     gap: var(--xl) var(--lg); padding-bottom: var(--xl); }
@media(min-width:640px)  { .vx-footer-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .vx-footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; } }

.vx-footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.75; margin: 14px 0 var(--lg); max-width: 280px; }
.vx-newsletter-label{ font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
                      color: rgba(255,255,255,.45); margin-bottom: 10px; }
.vx-newsletter-row { display: flex; border-bottom: 1px solid rgba(255,255,255,.2); }
.vx-newsletter-input{ flex: 1; background: transparent; border: none; padding: 8px 0; outline: none;
                       font-family: var(--font-body); font-size: 14px; color: #fff; }
.vx-newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.vx-newsletter-btn { background: none; border: none; cursor: pointer; font-family: var(--font-body);
                     font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
                     color: var(--gold); padding: 8px 0; transition: color var(--transition); }
.vx-newsletter-btn:hover { color: var(--gold-light); }

.vx-footer-heading { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
                     color: rgba(255,255,255,.45); margin-bottom: 16px; }
.vx-footer-list    { list-style: none; }
.vx-footer-list li { margin-bottom: 10px; }
.vx-footer-list a,
.vx-footer-list li { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--transition); cursor: pointer; }
.vx-footer-list a:hover { color: #fff; }
.vx-footer-contact li { display: flex; align-items: flex-start; gap: 9px; }
.vx-footer-contact .material-symbols-outlined { font-size: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.vx-footer-social  { display: flex; gap: 14px; margin-top: var(--lg); }
.vx-footer-social .material-symbols-outlined { font-size: 22px; color: rgba(255,255,255,.4);
                                               cursor: pointer; transition: color var(--transition); }
.vx-footer-social .material-symbols-outlined:hover { color: #fff; }

.vx-footer-bottom  { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0;
                     display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.vx-footer-bottom p{ font-size: 12px; color: rgba(255,255,255,.3); }
.vx-pay-badges     { display: flex; gap: 8px; flex-wrap: wrap; }
.vx-pay-badges span{ background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
                     padding: 4px 11px; font-size: 10px; font-weight: 700; letter-spacing: .06em;
                     color: rgba(255,255,255,.4); }

/* ── ADMIN (minimal) ─────────────────────────────────────── */
.vx-admin-bar    { background: var(--primary); color: #fff; padding: 10px 20px;
                   display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.vx-admin-bar h1 { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.vx-admin-wrap   { max-width: 1100px; margin: 0 auto; padding: 28px var(--m-mobile); }
@media(min-width:1024px){ .vx-admin-wrap { padding: 32px var(--m-desktop); } }
.vx-kpi-grid     { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: var(--lg); margin-bottom: 32px; }
.vx-kpi          { background: #fff; border: 1px solid var(--outline-var); padding: var(--lg); }
.vx-kpi-icon     { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
                   margin-bottom: 14px; }
.vx-kpi-icon .material-symbols-outlined { font-size: 24px; }
.vx-kpi-val      { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--primary); }
.vx-kpi-label    { font-size: 12px; color: var(--on-surface-var); margin-top: 4px; }
.vx-data-table   { width: 100%; border-collapse: collapse; font-size: 13px; }
.vx-data-table th{ background: var(--surface-low); padding: 10px 14px; text-align: left; font-size: 10px;
                   font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--on-surface-var); }
.vx-data-table td{ padding: 12px 14px; border-top: 1px solid var(--surface-high); vertical-align: middle; }
.vx-tbl-wrap     { background: #fff; border: 1px solid var(--outline-var); overflow: hidden; margin-bottom: 32px; overflow-x: auto; }
.vx-panel-head   { display: flex; align-items: center; justify-content: space-between;
                   flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.vx-panel-head h3{ font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.vx-badge-pill   { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 10px;
                   letter-spacing: .05em; text-transform: uppercase; }
.vx-badge-green  { background: var(--green-bg);   color: #14532d; }
.vx-badge-amber  { background: var(--amber-bg);   color: #92400e; }
.vx-badge-red    { background: var(--red-bg);     color: #991b1b; }
.vx-badge-blue   { background: #dbeafe;           color: #1d4ed8; }
.vx-badge-purple { background: #ede9fe;           color: #6d28d9; }
.vx-badge-gray   { background: var(--surface-high); color: var(--on-surface-var);
                   border: 1px solid var(--outline-var); }
.vx-action-edit  { color: #1d4ed8; font-size: 12px; font-weight: 600; padding: 4px 8px; transition: background var(--transition); }
.vx-action-edit:hover { background: #dbeafe; }
.vx-action-del   { color: var(--red); font-size: 12px; font-weight: 600; padding: 4px 8px; transition: background var(--transition); }
.vx-action-del:hover { background: var(--red-bg); }
.vx-sidebar      { background: var(--surface-mid); padding: 20px 0; min-height: calc(100vh - 52px); }
.vx-sidebar-link { display: flex; align-items: center; gap: 10px; padding: 11px 20px;
                   font-size: 13px; font-weight: 600; color: var(--on-surface-var);
                   border-left: 3px solid transparent; transition: all var(--transition); }
.vx-sidebar-link:hover, .vx-sidebar-link.active { color: var(--primary); background: var(--surface-high);
                                                   border-left-color: var(--primary); }
.vx-sidebar-link .material-symbols-outlined { font-size: 18px; }
.vx-admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 52px); }

/* ── UTILITIES ───────────────────────────────────────────── */
.vx-prod-img-cell { display: flex; align-items: center; gap: 12px; }
.vx-prod-img-cell img { width: 42px; height: 52px; object-fit: cover; flex-shrink: 0; }
.vx-prod-name   { font-weight: 600; max-width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
