/* ==========================================================
   WCShop — Main Theme CSS (clean consolidated)
   ========================================================== */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --color-primary:     #1a1008;
  --color-dark:        #2e1f0e;
  --color-accent:      #c8922a;
  --color-accent-dark: #a8741a;
  --color-bg:          #faf8f5;
  --color-bg-alt:      #f2ede6;
  --color-text:        #1a1008;
  --color-muted:       #6b5b4e;
  --color-border:      #e0d5c8;
  --color-white:       #ffffff;
  --color-success:     #2d7a4f;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --header-h:     90px;
  --navbar-h:     46px;
  --mobile-h:     80px;
  --transition:   0.2s ease;
}

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

/* ── WordPress block fixes ──────────────────────────────── */
.wp-site-blocks { padding-top: 0 !important; padding-bottom: 0 !important; }
.is-root-container { padding-top: 0 !important; }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.wcs-header {
  background: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}

/* Desktop header row */
.wcs-header-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 2.5rem;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Mobile header row — hidden on desktop */
.wcs-header-mobile { display: none; }

/* Logo */
.wcs-logo-wrap { flex-shrink: 0; position: relative; display: flex; align-items: center; gap: .75rem; }
.wcs-site-logo img, .wp-block-site-logo img { max-width: 160px !important; max-height: 52px !important; width: auto !important; height: auto !important; object-fit: contain; display: block; }
.wcs-logo-fallback { display: none; }
.wcs-logo-fallback a { color: var(--color-white) !important; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; }
/* Site name next to logo */
.wcs-site-name { display: block; }
.wcs-site-name a { color: var(--color-white) !important; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; text-decoration: none; letter-spacing: -.01em; white-space: nowrap; }
/* Hide size hint */
.wcs-logo-size-hint { display: none !important; }

/* Search */
.wcs-search { flex: 1; max-width: 480px; }
.wcs-search .wp-block-search__inside-wrapper { display: flex !important; align-items: center !important; background: rgba(255,255,255,.1) !important; border: 1.5px solid rgba(255,255,255,.2) !important; border-radius: 8px !important; overflow: hidden; transition: border-color .2s, background .2s; }
.wcs-search .wp-block-search__inside-wrapper:focus-within { background: rgba(255,255,255,.15) !important; border-color: var(--color-accent) !important; }
.wcs-search .wp-block-search__input { background: transparent !important; border: none !important; outline: none !important; color: var(--color-white) !important; font-family: var(--font-body) !important; font-size: .9rem !important; padding: .6rem 1rem !important; flex: 1; }
.wcs-search .wp-block-search__input::placeholder { color: rgba(255,255,255,.5) !important; }
.wcs-search .wp-block-search__button { background: transparent !important; border: none !important; color: rgba(255,255,255,.6) !important; padding: .6rem .9rem !important; display: flex; align-items: center; }
.wcs-search .wp-block-search__button:hover { color: var(--color-accent) !important; }

/* Header actions */
.wcs-header-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

/* My Account */
.wcs-account-link { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.85) !important; padding: .6rem .8rem; border-radius: 8px; transition: all .2s; font-size: 1rem; font-weight: 500; }
.wcs-account-link:hover { color: var(--color-accent) !important; background: rgba(255,255,255,.08); }

/* Cart button */
.wcs-cart-btn .wp-block-button__link, .wcs-cart-btn .wp-element-button { display: flex !important; align-items: center !important; gap: .5rem !important; background: var(--color-accent) !important; color: var(--color-white) !important; border-radius: 10px !important; padding: .75rem 1.5rem !important; font-weight: 700 !important; font-size: 1rem !important; border: none !important; transition: background .2s !important; }
.wcs-cart-btn .wp-block-button__link:hover { background: var(--color-accent-dark) !important; }

/* Remove WC default blocks */
.wp-block-woocommerce-customer-account, .wc-block-mini-cart { display: none !important; }

/* ══════════════════════════════════════════════════════════
   NAVBAR (desktop only)
   ══════════════════════════════════════════════════════════ */
.wcs-navbar {
  background: var(--color-accent);
  position: sticky;
  top: var(--header-h);
  z-index: 190;

  box-shadow: 0 3px 12px rgba(200,146,42,.35);
}

.wcs-nav-list { display: flex; align-items: stretch; justify-content: center; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.wcs-nav-item { position: relative; }
.wcs-nav-link { display: flex; align-items: center; gap: 5px; color: var(--color-primary) !important; font-size: .875rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 0 1.25rem; height: var(--navbar-h); text-decoration: none !important; transition: color .2s, background .2s; white-space: nowrap; border-right: 1px solid rgba(26,16,8,.12); }
.wcs-nav-item:first-child .wcs-nav-link { border-left: 1px solid rgba(26,16,8,.12); }
.wcs-nav-link:hover, .wcs-nav-item.current-menu-item > .wcs-nav-link { color: var(--color-white) !important; background: rgba(26,16,8,.2); }
.wcs-nav-caret { opacity: .5; transition: transform .2s; flex-shrink: 0; }
.wcs-nav-item:hover > .wcs-nav-link .wcs-nav-caret { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.wcs-dropdown { position: absolute; top: 100%; left: 0; min-width: 210px; background: var(--color-primary); border-top: 2px solid var(--color-accent); border-radius: 0 0 8px 8px; box-shadow: 0 8px 24px rgba(0,0,0,.35); padding: .4rem 0; list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(4px); transition: all .2s; z-index: 300; }
.wcs-nav-item:hover > .wcs-dropdown, .wcs-nav-item:focus-within > .wcs-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.wcs-dropdown .wcs-nav-item { width: 100%; border: none; }
.wcs-dropdown .wcs-nav-link { color: rgba(255,255,255,.8) !important; font-size: .875rem; font-weight: 500; text-transform: none; letter-spacing: 0; height: auto; padding: .6rem 1.25rem; border: none; }
.wcs-dropdown .wcs-nav-link:hover { color: var(--color-accent) !important; background: rgba(200,146,42,.1); }

/* ══════════════════════════════════════════════════════════
   MOBILE HEADER (≤ 1024px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .wcs-header-desktop { display: none !important; }
  .wcs-navbar { display: none !important; }

  .wcs-header-mobile {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    height: var(--mobile-h);
    padding: 0 1.5rem;
    width: 100%;
  }

  /* Burger */
  .wcs-burger { display: flex; align-items: center; gap: 8px; color: var(--color-white); font-size: .95rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 8px 0; background: none; border: none; cursor: pointer; }

  /* Mobile logo */
  .wcs-mobile-logo { text-decoration: none; display: flex; align-items: center; }
  .wcs-mobile-logo-img { height: 48px; width: auto; object-fit: contain; display: none; }
  .wcs-mobile-logo-img.loaded { display: block; }
  .wcs-mobile-logo-img.loaded + .wcs-mobile-logo-text { display: none; }
  .wcs-mobile-logo-text { color: var(--color-white); font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; white-space: nowrap; }

  /* Mobile cart */
  .wcs-mobile-cart { color: var(--color-white); display: flex; align-items: center; padding: 10px; border-radius: 10px; transition: background .2s; }
  .wcs-mobile-cart:hover { background: rgba(255,255,255,.1); }
}

@media (min-width: 1025px) {
  .wcs-header-mobile { display: none !important; }
  .wcs-header-desktop { display: flex !important; }
  .wcs-navbar { display: block !important; }
  .wcs-navbar { top: var(--header-h); }
}

/* ══════════════════════════════════════════════════════════
   DRAWER
   ══════════════════════════════════════════════════════════ */
.wcs-drawer { position: fixed; inset: 0; z-index: 9999; pointer-events: none; }
.wcs-drawer.is-open { pointer-events: all; }
.wcs-drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); opacity: 0; transition: opacity .3s; cursor: pointer; }
.wcs-drawer.is-open .wcs-drawer-overlay { opacity: 1; }
.wcs-drawer-panel { position: absolute; top: 0; left: 0; bottom: 0; width: min(320px, 85vw); background: var(--color-white); display: flex; flex-direction: column; transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1); overflow-y: auto; overflow-x: hidden; box-shadow: 4px 0 24px rgba(0,0,0,.3); }
.wcs-drawer.is-open .wcs-drawer-panel { transform: translateX(0); }

/* Drawer head */
.wcs-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; background: var(--color-primary); flex-shrink: 0; }
.wcs-drawer-title { color: var(--color-white); font-weight: 700; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.wcs-drawer-close { background: none; border: none; color: rgba(255,255,255,.8); cursor: pointer; padding: 4px; border-radius: 6px; display: flex; align-items: center; transition: background .2s; }
.wcs-drawer-close:hover { background: rgba(255,255,255,.15); }

/* Drawer search */
.wcs-drawer-search { display: flex; align-items: center; gap: .6rem; padding: .75rem 1.25rem; background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); flex-shrink: 0; }
.wcs-drawer-search svg { color: var(--color-muted); flex-shrink: 0; }
.wcs-drawer-search input { border: none; background: transparent; font-family: inherit; font-size: .9rem; color: var(--color-text); outline: none; width: 100%; }
.wcs-drawer-search input::placeholder { color: #a09080; }

/* Drawer nav (JS-built) */
.wcs-drawer-nav { flex: 1; overflow-y: auto; }
.wcs-dnav-list { list-style: none; margin: 0; padding: 0; }
.wcs-dnav-row { display: flex; align-items: stretch; border-bottom: 1px solid #f0e8df; }
.wcs-dnav-link { flex: 1; padding: .9rem 1.25rem; color: rgb(15 15 15 / 85%) !important; font-size: .95rem; font-weight: 600; text-decoration: none !important; transition: color .2s; display: block; }
.wcs-dnav-link:hover { color: var(--color-accent) !important; }
.wcs-dnav-toggle { flex-shrink: 0; background: none; border: none; border-left: 1px solid #f0e8df; padding: 0 1rem; cursor: pointer; color: var(--color-muted); display: flex; align-items: center; }
.wcs-dnav-toggle svg { transition: transform .25s; }
.wcs-dnav-sub { list-style: none; margin: 0; padding: .25rem 0; background: #f9f5f0; border-bottom: 1px solid #f0e8df; display: none; }
.wcs-dnav-sublink { display: block; padding: .6rem 1.25rem .6rem 2rem; color: rgb(15 15 15 / 85%) !important; font-size: .875rem; font-weight: 400; text-decoration: none !important; transition: color .2s; }
.wcs-dnav-sublink:hover { color: var(--color-accent) !important; }

/* Drawer sections */
.wcs-drawer-section { padding: 1.25rem 1.25rem .75rem; border-top: 1px solid #f0e8df; }
.wcs-drawer-section-title { font-size: .7rem !important; font-weight: 700 !important; letter-spacing: .12em !important; text-transform: uppercase !important; color: #a09080 !important; margin-bottom: .6rem !important; font-family: var(--font-body) !important; }
.wcs-drawer-section-link { display: block; color: rgb(15 15 15 / 85%) !important; font-size: .9rem; font-weight: 500; padding: .35rem 0; text-decoration: none !important; transition: color .2s; }
.wcs-drawer-section-link:hover { color: var(--color-accent) !important; }
.wcs-drawer-section--contact { background: var(--color-bg-alt); }
.wcs-drawer-contact-text { font-size: .8rem; color: var(--color-muted); margin: 0 0 .25rem; }
.wcs-drawer-phone { font-size: 1.1rem; font-weight: 700; color: var(--color-accent) !important; text-decoration: none !important; }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ══════════════════════════════════════════════════════════ */

/* Hero */
.wcs-hero { background: linear-gradient(135deg,#1a1008 0%,#2e1f0e 60%,#c8922a 100%) !important; min-height: 560px; }
.wcs-hero .wp-block-cover__background { display: none; }
.wcs-hero .wp-block-cover__inner-container { padding: 4rem 1.5rem; }
.wcs-eyebrow { font-size: .75rem !important; font-weight: 700 !important; letter-spacing: .12em !important; text-transform: uppercase !important; color: var(--color-accent) !important; margin-bottom: .75rem !important; }
.wcs-hero-title { color: var(--color-white) !important; font-size: clamp(2rem,5vw,3.5rem) !important; font-weight: 700 !important; line-height: 1.2 !important; }
.wcs-hero-sub { color: rgba(255,255,255,.85) !important; font-size: 1.05rem !important; margin-bottom: 1.5rem !important; }
.wcs-btn-primary .wp-block-button__link { background: var(--color-accent) !important; color: var(--color-white) !important; border-radius: 8px !important; font-weight: 700 !important; padding: .9rem 2rem !important; border: none !important; }
.wcs-btn-primary .wp-block-button__link:hover { background: var(--color-accent-dark) !important; }
.wcs-btn-outline .wp-block-button__link { border: 2px solid rgba(255,255,255,.7) !important; color: var(--color-white) !important; border-radius: 8px !important; font-weight: 600 !important; padding: .9rem 2rem !important; background: transparent !important; }
.wcs-btn-outline-dark .wp-block-button__link { border: 2px solid var(--color-accent) !important; color: var(--color-accent) !important; border-radius: 8px !important; font-weight: 600 !important; background: transparent !important; }
.wcs-btn-outline-dark .wp-block-button__link:hover { background: var(--color-accent) !important; color: var(--color-white) !important; }

/* USP strip */
.wcs-usp { background: var(--color-primary) !important; padding: 2.5rem 1.5rem !important; }
.wcs-usp .wp-block-column { text-align: center; }
.wcs-usp-icon { font-size: 2rem !important; margin-bottom: .5rem !important; }
.wcs-usp-title { color: var(--color-white) !important; font-size: 1rem !important; margin-bottom: .25rem !important; }
.wcs-usp-text { color: rgba(255,255,255,.6) !important; font-size: .85rem !important; margin: 0 !important; }

/* Products section */
.wcs-products {
  background: var(--color-bg-alt) !important;
  padding: 4rem 0 !important;
  width: 100% !important;
}
/* Products grid: 80% page width on desktop */
.wcs-products ul.products {
  width: 95% !important;
  max-width: 1600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Larger images proportionally with bigger grid */
.wcs-products ul.products li.product img {
  height: 360px !important;
}
/* Section header same width */
.wcs-products .wcs-section-head,
.wcs-products > div[style*="text-align"],
.wcs-products > * > div[style*="text-align"] {
  width: 80%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.wcs-section-head { text-align: center; margin-bottom: 2.5rem; padding: 0 1.5rem; }
.wcs-section-sub { color: var(--color-muted) !important; max-width: 600px; margin-inline: auto; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.wcs-footer { background: var(--color-primary) !important; color: rgba(255,255,255,.7) !important; padding: 4rem 1.5rem 2rem !important; }
.wcs-footer-grid { margin-bottom: 2rem !important; }
.wcs-footer-logo a, .wcs-footer-logo { color: var(--color-white) !important; font-family: var(--font-heading) !important; font-size: 1.5rem !important; font-weight: 700 !important; text-decoration: none !important; display: block; margin-bottom: .75rem; }
.wcs-footer-tagline { color: rgba(255,255,255,.6) !important; font-size: .875rem !important; }
.wcs-footer-col-title { color: var(--color-white) !important; font-size: .75rem !important; font-weight: 700 !important; letter-spacing: .1em !important; text-transform: uppercase !important; margin-bottom: .75rem !important; font-family: var(--font-body) !important; }
.wcs-footer-links { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex; flex-direction: column; gap: .4rem; }
.wcs-footer-links a { color: rgba(255,255,255,.65) !important; font-size: .875rem !important; text-decoration: none !important; transition: color .2s; }
.wcs-footer-links a:hover { color: var(--color-accent) !important; }
.wcs-footer-bottom { border-top: 1px solid rgba(255,255,255,.1) !important; padding-top: 1.5rem !important; }
.wcs-footer-copy { color: rgba(255,255,255,.4) !important; font-size: .8rem !important; margin: 0 !important; }

/* Payment methods row (footer bottom — center slot) */
.wcs-payments { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; justify-content: center; }
.wcs-pay { display: inline-flex; width: 36px; height: 22px; line-height: 0; border-radius: 4px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.18); transition: transform .15s ease; }
.wcs-pay:hover { transform: translateY(-1px); }
.wcs-pay svg { width: 100%; height: 100%; display: block; }
.wcs-pay-secure { display: inline-flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.55); font-size: .72rem; letter-spacing: .04em; padding-left: .5rem; margin-left: .2rem; border-left: 1px solid rgba(255,255,255,.12); }
.wcs-pay-secure svg { color: var(--color-accent); flex-shrink: 0; }
@media (max-width: 768px) {
  .wcs-payments { order: 3; width: 100%; justify-content: center; margin-top: .5rem; }
  .wcs-pay-secure { padding-left: .5rem; margin-left: .2rem; }
}

/* ══════════════════════════════════════════════════════════
   WOOCOMMERCE
   ══════════════════════════════════════════════════════════ */
ul.products { list-style: none; }
ul.products li.product { background: var(--color-white); border-radius: 8px; overflow: hidden; border: 1px solid var(--color-border); transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
ul.products li.product:hover { box-shadow: 0 4px 12px rgba(26,16,8,.12); transform: translateY(-2px); }
ul.products li.product img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .4s; }
ul.products li.product:hover img { transform: scale(1.04); }
ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-body); font-size: .95rem; font-weight: 600; padding: .75rem .75rem .25rem; margin: 0; }
ul.products li.product .price { display: block; padding: 0 .75rem .5rem; font-size: 1rem; font-weight: 700; color: var(--color-accent); }
ul.products li.product .button { display: block; margin: auto .75rem .75rem; padding: .55rem .75rem; background: var(--color-primary); color: var(--color-white); border-radius: 6px; font-size: .85rem; font-weight: 600; text-align: center; transition: background .2s; border: none; cursor: pointer; width: calc(100% - 1.5rem); }
ul.products li.product .button:hover { background: var(--color-accent); }
ul.products.columns-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
ul.products.columns-3 { grid-template-columns: repeat(3,1fr); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (768–1024px)
   ══════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1024px) {
  .wcs-header-mobile { padding: 0 1.5rem; }
  .wcs-mobile-logo-text { font-size: 1.5rem; }
  ul.products.columns-4 { grid-template-columns: repeat(3,1fr); }
  .wcs-usp .wp-block-columns { gap: 1rem !important; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — PHONE (< 768px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  :root { --mobile-h: 80px; }  /* doubled */

  .wcs-hero { min-height: 460px !important; }
  .wcs-hero .wp-block-cover__inner-container { padding: 2.5rem 1rem !important; }
  .wcs-hero-title { font-size: clamp(1.6rem,6vw,2.2rem) !important; }

  .wcs-hero .wp-block-buttons { flex-direction: column !important; width: 100% !important; }
  .wcs-hero .wp-block-button { width: 100% !important; }
  .wcs-hero .wp-block-button__link { width: 100% !important; text-align: center !important; justify-content: center !important; }

  .wcs-usp { padding: 1.5rem 1rem !important; }
  .wcs-usp .wp-block-columns { flex-wrap: wrap !important; }
  .wcs-usp .wp-block-column { flex: 1 1 calc(50% - .5rem) !important; min-width: 0 !important; padding: .5rem !important; }

  .wcs-products { padding: 2rem 1rem !important; }
  ul.products.columns-4, ul.products.columns-3 { grid-template-columns: repeat(2,1fr); gap: .75rem; }

  .wcs-footer { padding: 2rem 1rem 1.5rem !important; }
  .wcs-footer .wp-block-columns { flex-direction: column !important; }
  .wcs-footer-bottom { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: .5rem !important; }
}


/* ══════════════════════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════════════════════ */
.wcs-hero-wrap { margin: 0 !important; padding: 0 !important; }

.wcs-slider {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: linear-gradient(135deg,#1a1008 0%,#2e1f0e 60%,#c8922a 100%);
}

.wcs-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
}

.wcs-slider__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .6s ease;
  background: linear-gradient(135deg,#1a1008 0%,#2e1f0e 60%,#c8922a 100%);
  pointer-events: none;
}
.wcs-slider__slide.is-active {
  opacity: 1;
  pointer-events: all;
  position: relative;
}

/* slide background image overlay */
.wcs-slider__slide[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,16,8,.65);
  z-index: 0;
}

.wcs-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 4rem 1.5rem;
}

.wcs-hero-title {
  color: #ffffff !important;
  font-size: clamp(2rem,5vw,3.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
}
.wcs-hero-sub {
  color: rgba(255,255,255,.85) !important;
  font-size: 1.05rem !important;
  margin-bottom: 1.75rem !important;
}
.wcs-hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

.wcs-btn { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none !important; transition: all .2s; cursor: pointer; }
.wcs-btn--primary { background: #c8922a; color: #fff !important; border: 2px solid #c8922a; }
.wcs-btn--primary:hover { background: #a8741a; border-color: #a8741a; }
.wcs-btn--outline { background: transparent; color: #fff !important; border: 2px solid rgba(255,255,255,.7); }
.wcs-btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* Dots */
.wcs-slider__dots { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 10; }
.wcs-slider__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all .2s; padding: 0; }
.wcs-slider__dot.is-active { background: #c8922a; width: 24px; border-radius: 4px; }

/* Arrows */
.wcs-slider__prev,
.wcs-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(4px);
}
.wcs-slider__prev { left: 1rem; }
.wcs-slider__next { right: 1rem; }
.wcs-slider__prev:hover,
.wcs-slider__next:hover { background: rgba(200,146,42,.6); }

@media (max-width: 767px) {
  .wcs-slider { min-height: 460px; }
  .wcs-hero-content { padding: 2.5rem 1rem; }
  .wcs-hero-btns { flex-direction: column; }
  .wcs-btn { width: 100%; text-align: center; justify-content: center; }
  .wcs-slider__prev { left: .5rem; }
  .wcs-slider__next { right: .5rem; }
}
.wcs-btn--outline-dark { background: transparent; color: #c8922a !important; border: 2px solid #c8922a; }
.wcs-btn--outline-dark:hover { background: #c8922a; color: #fff !important; }

/* ══════════════════════════════════════════════════════════
   HERO SLIDER — full-width responsive
   ══════════════════════════════════════════════════════════ */

/* Outer wrapper — breaks out of any constrained layout */
.wcs-hero-outer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.wcs-slider {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg,#1a1008 0%,#2e1f0e 60%,#c8922a 100%);
}

/* Each slide */
.wcs-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1008;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  user-select: none;
}
.wcs-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* No image = gradient fallback */
.wcs-slide:not([style*="background-image"]) {
  background: linear-gradient(135deg,#1a1008 0%,#2e1f0e 60%,#c8922a 100%) !important;
}

/* Dark overlay on slides with images */
.wcs-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,16,8,.85) 0%, rgba(26,16,8,.5) 60%, rgba(26,16,8,.2) 100%);
  z-index: 0;
}
.wcs-slide:not([style*="background-image"]) .wcs-slide__overlay {
  display: none;
}

/* Content */
.wcs-slide__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wcs-eyebrow {
  font-size: .75rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: #c8922a !important;
  margin-bottom: .75rem !important;
}
.wcs-hero-title {
  color: #ffffff !important;
  font-size: clamp(2rem,5vw,3.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
}
.wcs-hero-sub {
  color: rgba(255,255,255,.85) !important;
  font-size: 1.05rem !important;
  margin-bottom: 1.75rem !important;
  max-width: 540px;
}
.wcs-hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Buttons */
.wcs-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1rem;
  text-decoration: none !important; transition: all .2s; cursor: pointer; border: 2px solid transparent;
}
.wcs-btn--primary  { background: #c8922a; color: #fff !important; border-color: #c8922a; }
.wcs-btn--primary:hover  { background: #a8741a; border-color: #a8741a; }
.wcs-btn--outline  { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.7); }
.wcs-btn--outline:hover  { background: rgba(255,255,255,.12); border-color: #fff; }
.wcs-btn--outline-dark { background: transparent; color: #c8922a !important; border-color: #c8922a; }
.wcs-btn--outline-dark:hover { background: #c8922a; color: #fff !important; }

/* Dots */
.wcs-slider__dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 10;
}
.wcs-slider__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all .25s; padding: 0;
}
.wcs-slider__dot.is-active { background: #c8922a; width: 24px; border-radius: 4px; }

/* Arrows */
.wcs-slider__prev,
.wcs-slider__next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,.15); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; backdrop-filter: blur(4px);
}
.wcs-slider__prev { left: 1.5rem; }
.wcs-slider__next { right: 1.5rem; }
.wcs-slider__prev:hover, .wcs-slider__next:hover { background: rgba(200,146,42,.7); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .wcs-slider { height: 480px; }
}
@media (max-width: 767px) {
  .wcs-slider { height: 100svh; max-height: 600px; min-height: 420px; }
  .wcs-slide__content { padding: 0 1rem; }
  .wcs-hero-btns { flex-direction: column; max-width: 280px; }
  .wcs-btn { width: 100%; text-align: center; }
  .wcs-slider__prev { left: .75rem; width: 40px; height: 40px; }
  .wcs-slider__next { right: .75rem; width: 40px; height: 40px; }
  /* On mobile use object-position top so faces aren't cropped */
  .wcs-slide[style*="background-image"] { background-position: center top !important; }
}


}

/* ══════════════════════════════════════════════════════════
   BRANDS SECTION
   ══════════════════════════════════════════════════════════ */
.wcs-brands-section { background: #ffffff !important; }

.wcs-brands {
  padding: 3.5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.wcs-brands__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.wcs-brands__title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #1a1008 !important;
  margin-bottom: .5rem !important;
}
.wcs-brands__sub {
  color: #6b5b4e;
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto;
}
.wcs-brands__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.wcs-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none !important;
}
.wcs-brands__item img {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .6;
  transition: all .3s;
}
.wcs-brands__item:hover img,
span.wcs-brands__item img { filter: grayscale(0%); opacity: 1; }

@media (max-width: 767px) {
  .wcs-brands { padding: 2.5rem 1rem; }
  .wcs-brands__logos { gap: 1.5rem 2rem; }
  .wcs-brands__item img { height: 36px; max-width: 90px; }
}

/* ══════════════════════════════════════════════════════════
   USP STRIP — above footer, minimal icon style
   ══════════════════════════════════════════════════════════ */

/* Hide old emoji USP strip */
.wcs-usp { display: none !important; }

.wcs-usp-strip {
  background: #f9f5f0;
  border-top: 1px solid #e0d5c8;
  border-bottom: 1px solid #e0d5c8;
  padding: 2rem 1.5rem;
}
.wcs-usp-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.wcs-usp-strip__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 2rem;
  border-right: 1px solid #e0d5c8;
  flex: 0 0 auto;
}
.wcs-usp-strip__item:last-child { border-right: none; }

.wcs-usp-strip__icon {
  color: #c8922a;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.wcs-usp-strip__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.wcs-usp-strip__text strong {
  font-size: .875rem;
  font-weight: 700;
  color: #1a1008;
  white-space: nowrap;
}
.wcs-usp-strip__text span {
  font-size: .75rem;
  color: #6b5b4e;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .wcs-usp-strip { padding: 1.25rem 1rem; }
  .wcs-usp-strip__inner { gap: 0; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .wcs-usp-strip__item { padding: .5rem 1.25rem; border-right: 1px solid #e0d5c8; flex-shrink: 0; }
}

/* ══════════════════════════════════════════════════════════
   CATEGORY BLOCKS — equal size regardless of count
   ══════════════════════════════════════════════════════════ */
.wcs-cats-wrap { width: 100%; }

.wcs-cats {
  display: grid;
  /* Always fixed column width — number of items determines count */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: .75rem;
  padding: .75rem 1.5rem;
  background: #f9f5f0;
}

/* Desktop: force equal columns based on item count via JS class */
.wcs-cats.cols-2 { grid-template-columns: repeat(2, 1fr); }
.wcs-cats.cols-3 { grid-template-columns: repeat(3, 1fr); }
.wcs-cats.cols-4 { grid-template-columns: repeat(4, 1fr); }

.wcs-cat-card {
  position: relative;
  display: block;
  overflow: hidden;
  /* Desktop: tall enough so images don't look stretched */
  height: 380px;
  border-radius: 8px;
  text-decoration: none !important;
}
.wcs-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.wcs-cat-card:hover img { transform: scale(1.06); }

.wcs-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,16,8,.45);
  transition: background .3s;
}
.wcs-cat-card:hover .wcs-cat-card__overlay {
  background: rgba(26,16,8,.55);
}

.wcs-cat-card__content {
  position: absolute;
  /* Center vertically and horizontally */
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.5rem;
  z-index: 1;
  text-align: center;
}
.wcs-cat-card__label {
  color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.wcs-cat-card__btn {
  display: inline-flex;
  align-items: center;
  background: #c8922a;
  color: #ffffff !important;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .75rem 2.25rem;
  border-radius: 6px;
  width: fit-content;
  transition: background .2s, transform .2s;
}
.wcs-cat-card:hover .wcs-cat-card__btn { background: #a8741a; transform: translateY(-2px); }

@media (max-width: 1024px) {
  .wcs-cats { padding: .75rem 1rem; }
  .wcs-cats.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .wcs-cats,
  .wcs-cats.cols-2,
  .wcs-cats.cols-3,
  .wcs-cats.cols-4 {
    grid-template-columns: repeat(2, 1fr);
    padding: .5rem .75rem;
    gap: .5rem;
  }
  .wcs-cat-card { height: 180px; }
  .wcs-cat-card__label { font-size: 1.6rem !important; }
  .wcs-cat-card__btn { padding: .65rem 1.75rem !important; }
  .wcs-cat-card__content { padding: .875rem; gap: .6rem; }
}

/* ══════════════════════════════════════════════════════════
   BRANDS SECTION — colored logos, above USP
   ══════════════════════════════════════════════════════════ */
.wcs-brands-wrap { background: #ffffff; }

.wcs-brands {
  padding: 3.5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.wcs-brands__head { text-align: center; margin-bottom: 2.5rem; }
.wcs-brands__title { font-size: 1.5rem !important; font-weight: 700 !important; color: #1a1008 !important; margin-bottom: .5rem !important; }
.wcs-brands__sub   { color: #6b5b4e; font-size: .95rem; max-width: 560px; margin: 0 auto; }

.wcs-brands__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}
.wcs-brands__item { display: flex; align-items: center; justify-content: center; text-decoration: none !important; }
.wcs-brands__item img {
  height: 52px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  /* NO grayscale — keep full colour */
  filter: none;
  opacity: 1;
  transition: transform .2s, opacity .2s;
}
.wcs-brands__item:hover img { transform: scale(1.05); opacity: .85; }

@media (max-width: 767px) {
  .wcs-brands { padding: 2rem 1rem; }
  .wcs-brands__logos { gap: 1.5rem 2rem; }
  .wcs-brands__item img { height: 38px; max-width: 100px; }
}

/* Footer contact line */
.wcs-footer-contact a { color: rgba(255,255,255,.6) !important; text-decoration: none !important; }
.wcs-footer-contact a:hover { color: #c8922a !important; }

/* ── Customizer / Editor layout fixes ───────────────────── */
.customize-preview .wcs-hero-outer { width: 100% !important; left: auto !important; margin-left: 0 !important; margin-right: 0 !important; }
.editor-styles-wrapper .wcs-hero-outer { width: 100% !important; left: auto !important; margin-left: 0 !important; margin-right: 0 !important; }


/* ── Category blocks: mobile single column ──────────────── */
@media (max-width: 767px) {
  .wcs-cats,
  .wcs-cats.cols-2,
  .wcs-cats.cols-3,
  .wcs-cats.cols-4 {
    grid-template-columns: 1fr;
    padding: .75rem 1rem;
    gap: .65rem;
  }
  .wcs-cat-card { height: 250px; }
  .wcs-cat-card__label { font-size: 2rem !important; }
  .wcs-cat-card__btn { padding: .7rem 2rem !important; font-size: .9rem !important; }
}

/* ══════════════════════════════════════════════════════════
   FLYOUT CART
   ══════════════════════════════════════════════════════════ */

/* Overlay */
.wcs-flyout {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}
.wcs-flyout.is-open {
  pointer-events: all;
  visibility: visible;
}
.wcs-flyout__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .3s;
  cursor: pointer;
}
.wcs-flyout.is-open .wcs-flyout__overlay { opacity: 1; }

/* Panel — slides in from right */
.wcs-flyout__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
}
.wcs-flyout.is-open .wcs-flyout__panel { transform: translateX(0); }

/* Head */
.wcs-flyout__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0e8df;
  flex-shrink: 0;
  background: #1a1008;
  position: relative;
}
.wcs-flyout__title {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
}
.wcs-flyout__count {
  background: #c8922a;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.wcs-flyout__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.wcs-flyout__close:hover { color: #fff; }

/* Body */
.wcs-flyout__body {
  flex: 1;
  overflow-y: auto;
  padding: .5rem 0;
  /* Items align to top, no extra space */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.wcs-flyout__body > * { flex-shrink: 0; }
.wcs-flyout__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.wcs-spin { animation: wcs-spin 1s linear infinite; }
@keyframes wcs-spin { to { transform: rotate(360deg); } }

/* Items */
.wcs-flyout__item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f9f5f0;
}
.wcs-flyout__item:last-child { border-bottom: none; }

.wcs-flyout__item-thumb { flex-shrink: 0; }
.wcs-flyout__item-img {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  background: #f9f5f0;
  border-radius: 6px;
  padding: .25rem;
  display: block;
}

.wcs-flyout__item-info { flex: 1; min-width: 0; }
.wcs-flyout__item-name {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: #1a1008;
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wcs-flyout__item-name:hover { color: #c8922a; }

.wcs-flyout__item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.wcs-flyout__item-price {
  font-size: 1rem;
  font-weight: 800;
  color: #c8922a;
}

/* Qty controls */
.wcs-flyout__item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #e0d5c8;
  border-radius: 6px;
  overflow: hidden;
}
.wcs-qty-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 1.1rem;
  color: #6b5b4e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.wcs-qty-btn:hover { background: #f2ede6; color: #1a1008; }
.wcs-flyout__item-qty span {
  padding: 0 .4rem;
  font-size: .85rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.wcs-flyout__item-remove {
  flex-shrink: 0;
  color: #c0b4a8;
  text-decoration: none;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: color .2s;
  margin-top: 2px;
}
.wcs-flyout__item-remove:hover { color: #c0392b; }

/* Empty state */
.wcs-flyout__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  color: #6b5b4e;
}
.wcs-flyout__empty p { font-size: .95rem; }

/* Footer */
.wcs-flyout__footer {
  flex-shrink: 0;
  border-top: 1px solid #e0d5c8;
  padding: 1.25rem 1.5rem;
  background: #faf8f5;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.wcs-flyout__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
  color: #1a1008;
}
.wcs-flyout__subtotal strong { font-size: 1.2rem; font-weight: 800; color: #c8922a; }

.wcs-flyout__btn-cart {
  display: block;
  padding: .7rem 1rem;
  border: 2px solid #1a1008;
  border-radius: 8px;
  text-align: center;
  color: #1a1008;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  transition: all .2s;
}
.wcs-flyout__btn-cart:hover { background: #1a1008; color: #fff; }

.wcs-flyout__btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1rem;
  background: #c8922a;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  transition: background .2s;
}
.wcs-flyout__btn-checkout:hover { background: #a8741a; color: #fff; }

/* Cart count badge in header — DESKTOP 2× size */
.wcs-cart-count-badge {
  position: absolute;
  top: -14px; right: -14px;
  background: #c8922a;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  pointer-events: none;
  line-height: 1;
  border: 3px solid #1a1008;
  box-shadow: 0 3px 10px rgba(0,0,0,.4);
}
.wcs-cart-btn { position: relative !important; }
.wcs-mobile-cart { position: relative !important; }

/* Mobile + Tablet + Nest Hub: full screen panel (≤ 1024px) */
@media (max-width: 1024px) {
  .wcs-flyout__panel {
    width: 100vw !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    border-radius: 0 !important;
  }
}

/* Mobile/tablet badge stays visible but slightly smaller than desktop */
@media (max-width: 1024px) {
  .wcs-cart-count-badge {
    top: -10px !important;
    right: -10px !important;
    min-width: 24px !important;
    height: 24px !important;
    font-size: .8rem !important;
    border: 2px solid #1a1008 !important;
  }
}

/* ══════════════════════════════════════════════════════════
   FLYOUT CART — ALL DEVICES CLEAN FIX
   ══════════════════════════════════════════════════════════ */

/* ── Mobile + Tablet (≤ 1024px) ──────────────────────────── */
@media (max-width: 1024px) {

  /* HEAD: "Your Cart" centered, X on right */
  .wcs-flyout__head {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
  }
  .wcs-flyout__title {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    font-size: 1.15rem !important;
  }
  .wcs-flyout__close {
    grid-column: 2 !important;
    grid-row: 1 !important;
    position: absolute !important;
    right: 1.25rem !important;
  }

  /* SUBTOTAL: always space-between, gap added */
  .wcs-flyout__subtotal {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 1rem !important;
    font-size: 1.1rem !important;
    padding: .25rem 0 !important;
  }
  .wcs-flyout__subtotal strong {
    font-size: 1.2rem !important;
    flex-shrink: 0 !important;
  }
}

/* ── Tablet only (768–1024px) ─────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Subtotal 1.7rem */
  .wcs-flyout__subtotal {
    font-size: 1.7rem !important;
    margin-bottom: .5rem !important;
  }
  .wcs-flyout__subtotal strong { font-size: 1.7rem !important; }

  /* Buttons: same width (55%), centered */
  .wcs-flyout__footer {
    align-items: center !important;
    padding: 1.5rem 2rem !important;
    gap: .875rem !important;
  }
  .wcs-flyout__btn-cart,
  .wcs-flyout__btn-checkout {
    width: 55% !important;
    text-align: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    padding: .9rem 1rem !important;
  }

  /* Items: image +50% */
  .wcs-flyout__item {
    padding: 1.25rem 1.5rem !important;
    gap: 1.25rem !important;
    align-items: flex-start !important;
  }
  .wcs-flyout__item-img {
    width: 108px !important;
    height: 108px !important;
  }
  .wcs-flyout__item-name {
    font-size: 1.05rem !important;
    -webkit-line-clamp: 3 !important;
  }
  .wcs-flyout__item-price { font-size: 1.2rem !important; }
  .wcs-qty-btn { width: 36px !important; height: 36px !important; font-size: 1.2rem !important; }
  .wcs-flyout__item-qty span { font-size: 1rem !important; min-width: 32px !important; }
}

/* ── Subtotal row: full width space-between, padding, bigger ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .wcs-flyout__subtotal {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #1a1008 !important;
    padding: .75rem 0 1.25rem !important;
    border-bottom: 1px solid #e0d5c8 !important;
    margin-bottom: .75rem !important;
    width: 100% !important;
  }
  .wcs-flyout__subtotal strong {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #c8922a !important;
  }
  .wcs-flyout__footer {
    padding: 1.25rem 2rem 1.75rem !important;
  }
}
