/*
Theme Name:  Stancreatives
Theme URI:   https://stancreatives.com
Author:      Stancreatives
Author URI:  https://stancreatives.com
Description: A clean, fast WooCommerce theme for home essentials stores. Includes slide-out cart drawer, 4-column shop grid, styled cart & checkout pages, variable product support.
Version:     2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stancreatives
Tags:        woocommerce, e-commerce, two-columns, custom-menu, featured-images, full-width-template
*/

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #1a1a1a; background: #f4f4f4; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── ROOT VARS ── */
:root {
  --navy:        #1a2340;
  --navy-dark:   #111827;
  --navy-light:  #243057;
  --orange:      #e8650a;
  --orange-dark: #c9550a;
  --white:       #ffffff;
  --light-gray:  #f5f5f5;
  --lighter:     #fafafa;
  --border:      #e0e0e0;
  --text:        #1a1a1a;
  --gray:        #777;
  --gray-light:  #aaa;
  --green:       #22c55e;
  --red:         #ef4444;
  --star:        #f59e0b;
  --wa-green:    #25d366;
  --serif:       'Playfair Display', serif;
  --shadow:      0 4px 16px rgba(0,0,0,0.08);
  --radius:      8px;
  --trans:       all 0.25s ease;
}

/* ── UTILITY ── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ══════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════ */

/* Overlay */
.stanc-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0); z-index: 8000;
  pointer-events: none;
  transition: background 0.3s ease;
}
.stanc-cart-overlay.scd-overlay-on {
  background: rgba(0,0,0,0.5);
  pointer-events: all;
}

/* Drawer */
.stanc-cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 40px rgba(0,0,0,0.18);
}
.stanc-cart-drawer.scd-open {
  right: 0;
}
body.scd-body-locked {
  overflow: hidden;
}

/* Drawer Header */
.scd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
}
.scd-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.scd-title svg {
  width: 18px; height: 18px;
  stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round;
}
.scd-count {
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.scd-close {
  background: rgba(255,255,255,0.1);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: var(--trans);
}
.scd-close:hover { background: rgba(255,255,255,0.25); }
.scd-close svg { width: 15px; height: 15px; stroke: #fff; stroke-width: 2.5; }

/* Added banner */
.scd-added-banner {
  background: #e6f9ee;
  color: #16a34a;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 20px;
  border-bottom: 1px solid #bbf7d0;
  flex-shrink: 0;
}

/* Scrollable items */
.scd-items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
.scd-items::-webkit-scrollbar { width: 4px; }
.scd-items::-webkit-scrollbar-track { background: #f0f0f0; }
.scd-items::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Empty state */
.scd-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  height: 100%;
}
.scd-empty-icon { font-size: 52px; margin-bottom: 16px; opacity: 0.5; }
.scd-empty-text { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.scd-shop-btn {
  margin-top: 16px;
  background: var(--orange);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: var(--trans);
}
.scd-shop-btn:hover { background: var(--orange-dark); }

/* Individual cart item */
.scd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  transition: background 0.2s;
}
.scd-item:hover { background: #fafafa; }

.scd-item-img {
  width: 70px; height: 70px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--light-gray);
}
.scd-item-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.scd-item-noimg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}

.scd-item-info { flex: 1; min-width: 0; }
.scd-item-name {
  font-size: 12px; font-weight: 600;
  line-height: 1.4; margin-bottom: 4px; color: var(--text);
}
.scd-item-name a { color: inherit; }
.scd-item-name a:hover { color: var(--orange); }
.scd-item-variation {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-bottom: 4px;
}
.scd-item-variation span {
  font-size: 10px; color: var(--gray);
  background: #f5f5f5; border-radius: 3px;
  padding: 1px 6px;
}
.scd-item-price { font-size: 13px; color: var(--orange); font-weight: 700; margin-bottom: 8px; }

.scd-item-qty-row {
  display: flex; align-items: center; justify-content: space-between;
}
.scd-qty-ctrl {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: 5px;
  overflow: hidden;
}
.scd-qty-btn {
  background: var(--light-gray);
  border: none;
  width: 26px; height: 26px;
  font-size: 14px; font-weight: 700;
  color: var(--text);
  transition: background 0.2s;
  line-height: 1;
}
.scd-qty-btn:hover { background: var(--orange); color: #fff; }
.scd-qty-val {
  padding: 0 10px;
  font-size: 12px; font-weight: 600;
  min-width: 28px; text-align: center;
  line-height: 26px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.scd-item-subtotal { font-size: 12px; font-weight: 700; color: var(--navy); }

.scd-item-remove {
  background: none; border: none;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--gray-light);
  flex-shrink: 0;
  transition: var(--trans);
  margin-top: 2px;
}
.scd-item-remove:hover { background: #fee2e2; color: var(--red); }
.scd-item-remove svg { width: 14px; height: 14px; }

/* Drawer footer */
.scd-footer {
  border-top: 1px solid var(--border);
  padding: 16px 18px;
  background: #fff;
  flex-shrink: 0;
}

.scd-delivery-notice {
  font-size: 11px;
  margin-bottom: 10px;
  text-align: center;
}
.scd-free-delivery { color: var(--green); font-weight: 600; }
.scd-no-free { color: var(--gray); }
.scd-delivery-bar {
  height: 4px; background: #e5e7eb;
  border-radius: 4px; margin-top: 6px;
  overflow: hidden;
}
.scd-delivery-fill {
  height: 100%; background: var(--orange);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.scd-subtotal-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #f0f0f0;
  font-size: 14px; font-weight: 600;
  margin-bottom: 10px;
}
.scd-subtotal-amount { color: var(--orange); font-size: 17px; font-weight: 700; }

.scd-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px;
  background: var(--wa-green); color: #fff;
  border-radius: var(--radius);
  font-size: 13px; font-weight: 700;
  margin-bottom: 8px;
  transition: var(--trans);
  text-align: center;
}
.scd-btn-wa:hover { background: #1da851; filter: brightness(1.05); }

.scd-btn-checkout {
  display: block; width: 100%; padding: 12px;
  background: var(--orange); color: #fff;
  border-radius: var(--radius);
  font-size: 13px; font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  transition: var(--trans);
}
.scd-btn-checkout:hover { background: var(--orange-dark); }

.scd-btn-view-cart {
  display: block; width: 100%; padding: 10px;
  background: var(--navy); color: #fff;
  border-radius: var(--radius);
  font-size: 12px; font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  transition: var(--trans);
}
.scd-btn-view-cart:hover { background: var(--navy-light); }

.scd-payment-icons {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}
.scd-payment-icons span {
  background: #f5f5f5;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 9px; font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* ══════════════════════
   ANNOUNCE BAR
══════════════════════ */
.announce-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: 11px;
  text-align: center;
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.announce-bar strong { color: var(--orange); }
.announce-bar a { color: rgba(255,255,255,.5); font-size: 10px; transition: var(--trans); }
.announce-bar a:hover { color: var(--orange); }

/* ══════════════════════
   TOP HEADER
══════════════════════ */
.top-header {
  background: var(--navy);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.site-logo { font-family: var(--serif); font-size: 26px; color: #fff; font-weight: 700; white-space: nowrap; }
.site-logo em { color: var(--orange); font-style: normal; }
.site-logo img { height: 55px; width: auto; }
.search-wrap { flex: 1; display: flex; background: #fff; border-radius: var(--radius); overflow: hidden; height: 44px; }
.search-cat select { border: none; background: #f5f5f5; padding: 0 12px; font-size: 12px; font-family: inherit; outline: none; border-right: 1px solid var(--border); cursor: pointer; max-width: 130px; }
.search-form { flex: 1; display: flex; }
.search-form input { flex: 1; border: none; outline: none; padding: 0 14px; font-size: 13px; font-family: inherit; }
.search-form input::placeholder { color: var(--gray-light); }
.search-btn { background: var(--orange); border: none; width: 50px; display: flex; align-items: center; justify-content: center; transition: var(--trans); flex-shrink: 0; }
.search-btn:hover { background: var(--orange-dark); }
.search-btn svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; }
.hdr-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.hdr-icon { color: rgba(255,255,255,.8); display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 9px; cursor: pointer; position: relative; text-decoration: none; }
.hdr-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.cart-hdr {
  display: flex; align-items: center; gap: 8px;
  color: #fff; cursor: pointer;
  background: var(--orange); padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 12px; font-weight: 600;
  border: none; white-space: nowrap;
  transition: var(--trans);
}
.cart-hdr:hover { background: var(--orange-dark); }
.cart-hdr svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.cart-hdr-badge {
  background: var(--navy);
  color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

/* ══════════════════════
   ORANGE NAV
══════════════════════ */
.orange-nav {
  background: var(--orange);
  display: flex;
  align-items: stretch;
  position: sticky;
  top: 68px;
  z-index: 400;
  box-shadow: 0 2px 8px rgba(232,101,10,.3);
}
.orange-nav .menu { display: flex; align-items: stretch; overflow-x: auto; }
.orange-nav .menu::-webkit-scrollbar { display: none; }
.orange-nav .menu li { display: flex; }
.orange-nav .menu li a {
  display: flex; align-items: center;
  padding: 12px 18px;
  color: #fff; font-size: 13px; font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: var(--trans); white-space: nowrap;
}
.orange-nav .menu li a:hover,
.orange-nav .menu li.current-menu-item a {
  background: rgba(0,0,0,.12);
  border-bottom-color: #fff;
}

/* ══════════════════════
   HOMEPAGE HERO
══════════════════════ */
.home-hero {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 260px;
  min-height: 240px;
}
.hero-left { padding: 36px 36px; display: flex; flex-direction: column; justify-content: center; }
.hero-tag { font-size: 10px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 8px; }
.hero-title { font-family: var(--serif); font-size: 30px; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.hero-title em { color: var(--orange); font-style: normal; }
.hero-sub { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.hero-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; padding: 11px 24px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: .05em; transition: var(--trans); width: fit-content; }
.hero-cta:hover { background: var(--orange-dark); transform: translateY(-2px); }
.hero-banners { display: grid; grid-template-rows: 1fr 1fr; }
.mini-banner { background: var(--navy-light); display: flex; align-items: flex-end; padding: 16px; cursor: pointer; position: relative; overflow: hidden; border-left: 1px solid rgba(255,255,255,.08); }
.mini-banner:first-child { border-bottom: 2px solid rgba(255,255,255,.1); }
.mini-banner:hover { background: #2a3a6a; }
.mini-banner-tag { font-size: 9px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 3px; }
.mini-banner-title { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }
.mini-banner-link { font-size: 10px; color: rgba(255,255,255,.4); margin-top: 5px; display: block; }
.mini-banner-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 38px; opacity: .14; }

/* ══════════════════════
   TRUST BAR
══════════════════════ */
.trust-bar { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); margin: 14px 0; border-radius: var(--radius); overflow: hidden; background: #fff; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 24px; flex-shrink: 0; }
.trust-text strong { font-size: 12px; font-weight: 600; display: block; }
.trust-text span { font-size: 10px; color: var(--gray); }

/* ══════════════════════
   SECTION HEADERS
══════════════════════ */
.sec-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); position: relative; }
.sec-header::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 48px; height: 2px; background: var(--orange); }
.sec-header h2 { font-size: 19px; font-weight: 700; }
.sec-header h2 em { color: var(--orange); font-style: normal; }
.sec-all { font-size: 11px; font-weight: 600; color: var(--orange); }
.sec-all:hover { text-decoration: underline; }
.hov-section { margin: 28px 0; }

/* ══════════════════════
   CATEGORY CIRCLES
══════════════════════ */
.cat-circles-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; }
.cat-circle { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; cursor: pointer; transition: var(--trans); text-decoration: none; }
.cat-circle:hover { transform: translateY(-4px); }
.cat-circle-img { width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; border: 2px solid var(--border); transition: var(--trans); }
.cat-circle:hover .cat-circle-img { border-color: var(--orange); box-shadow: 0 6px 20px rgba(232,101,10,.2); }
.cat-circle-name { font-size: 11px; font-weight: 600; color: var(--text); line-height: 1.3; }
.cat-circle-count { font-size: 10px; color: var(--gray); }

/* ══════════════════════
   PRODUCT CARDS
══════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.products-grid-4 { grid-template-columns: repeat(4, 1fr); }

.stanc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, transform .3s; position: relative; }
.stanc-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--orange); }
.stanc-card-img { position: relative; aspect-ratio: 1; background: var(--light-gray); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.stanc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.stanc-card:hover .stanc-card-img img { transform: scale(1.07); }
.stanc-badge { position: absolute; top: 8px; left: 8px; font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; background: var(--orange); color: #fff; z-index: 2; }
.stanc-badge.new { background: var(--green); }
.stanc-badge.hot { background: var(--red); }
.stanc-card-actions { position: absolute; top: 8px; right: 8px; display: flex; flex-direction: column; gap: 5px; opacity: 0; transform: translateX(8px); transition: all .25s; z-index: 2; }
.stanc-card:hover .stanc-card-actions { opacity: 1; transform: translateX(0); }
.action-btn { width: 30px; height: 30px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,.08); transition: var(--trans); }
.action-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.stanc-card-body { padding: 10px 12px 13px; }
.stanc-card-cat { font-size: 9px; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.stanc-card-name { font-size: 12px; font-weight: 600; line-height: 1.35; margin-bottom: 6px; color: var(--text); }
.stanc-card-name a:hover { color: var(--orange); }
.stanc-card-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.stanc-card-stars .stars { color: var(--star); font-size: 11px; }
.stanc-card-stars span { font-size: 10px; color: var(--gray); }
.stanc-card-price { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.stanc-card-price .price-new,
.stanc-card-price ins { font-size: 15px; font-weight: 700; color: var(--orange); text-decoration: none; }
.stanc-card-price .price-old,
.stanc-card-price del { font-size: 10px; color: var(--gray); text-decoration: line-through; }
.stanc-card-price .price-disc { font-size: 9px; background: #fff3ea; color: var(--orange-dark); padding: 1px 5px; border-radius: 3px; font-weight: 600; }
.stanc-card-stock { font-size: 9px; color: var(--green); margin-top: 4px; display: flex; align-items: center; gap: 3px; }
.stanc-card-stock::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.stanc-card-atc {
  width: 100%; margin-top: 8px; padding: 8px;
  background: var(--navy); color: #fff; border: none;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  border-radius: 4px; transition: var(--trans); cursor: pointer;
  display: block; text-align: center;
}
.stanc-card-atc:hover { background: var(--orange); }
.stanc-card-atc-var { background: var(--navy-light); }
.stanc-card-atc-var:hover { background: var(--orange); }

/* ══════════════════════
   PROMO BANNERS
══════════════════════ */
.promo-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 20px 0; }
.promo-b { border-radius: var(--radius); padding: 22px 20px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; min-height: 130px; position: relative; overflow: hidden; }
.promo-b.navy { background: var(--navy); }
.promo-b.orange { background: var(--orange); }
.promo-b.teal { background: #0f6e56; }
.promo-b-icon { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 46px; opacity: .14; }
.promo-b-label { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.promo-b-title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 4px; }
.promo-b-sub { font-size: 11px; color: rgba(255,255,255,.55); }

/* ══════════════════════
   NEWSLETTER
══════════════════════ */
.newsletter { background: #fff3ea; border: 1px solid #fde8c9; border-radius: var(--radius); padding: 36px; text-align: center; margin: 24px 0; }
.newsletter h2 { font-family: var(--serif); font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.newsletter h2 em { color: var(--orange); font-style: normal; }
.newsletter p { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.nl-form { display: flex; max-width: 460px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.nl-form input { flex: 1; border: 1px solid var(--border); border-right: none; padding: 12px 16px; font-size: 13px; font-family: inherit; outline: none; }
.nl-form button { background: var(--orange); color: #fff; border: none; padding: 12px 22px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; transition: var(--trans); white-space: nowrap; }
.nl-form button:hover { background: var(--orange-dark); }

/* ══════════════════════
   SHOP PAGE LAYOUT
══════════════════════ */
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 16px; padding: 16px 0; }

/* Sidebar */
.shop-sidebar { display: flex; flex-direction: column; gap: 12px; }
.sf-box { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 16px; }
.sf-title { font-size: 11px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .08em; padding-bottom: 8px; border-bottom: 2px solid var(--orange); margin-bottom: 12px; }
.sf-cats { display: flex; flex-direction: column; gap: 2px; }
.sf-cat { display: flex; align-items: center; justify-content: space-between; padding: 7px 9px; border-radius: 5px; font-size: 12px; color: var(--gray); cursor: pointer; transition: var(--trans); text-decoration: none; }
.sf-cat:hover { background: #fff3ea; color: var(--orange); }
.sf-cat.active { background: var(--orange); color: #fff; font-weight: 600; border-radius: 5px; }
.sf-cat-count { font-size: 10px; opacity: .7; }
.sf-price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.sf-price-input label { font-size: 10px; color: var(--gray); display: block; margin-bottom: 3px; }
.sf-price-input input { width: 100%; border: 1px solid var(--border); border-radius: 5px; padding: 6px 8px; font-size: 11px; outline: none; font-family: inherit; }
.sf-apply-btn { width: 100%; padding: 8px; background: var(--orange); color: #fff; border: none; border-radius: 5px; font-size: 11px; font-weight: 700; cursor: pointer; transition: var(--trans); }
.sf-apply-btn:hover { background: var(--orange-dark); }
.sf-ratings { display: flex; flex-direction: column; gap: 2px; }
.sf-rating-row { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; cursor: pointer; font-size: 11px; color: var(--gray); text-decoration: none; transition: var(--trans); }
.sf-rating-row:hover { color: var(--orange); }
.sf-rating-row .sf-stars { color: var(--star); font-size: 12px; }
.sf-avail { display: flex; flex-direction: column; gap: 4px; }
.sf-check { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray); cursor: pointer; padding: 4px 0; }
.sf-check input { accent-color: var(--orange); }

/* Shop main */
.shop-main { display: flex; flex-direction: column; gap: 14px; }
.shop-toolbar { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
.shop-result-count { font-size: 12px; color: var(--gray); }
.shop-result-count strong { color: var(--text); }
.shop-ordering { display: flex; align-items: center; gap: 10px; }
.shop-ordering select { border: 1px solid var(--border); border-radius: 5px; padding: 6px 10px; font-size: 12px; outline: none; background: #f9f9f9; font-family: inherit; cursor: pointer; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 30px; height: 30px; border: 1px solid var(--border); background: #f9f9f9; border-radius: 5px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.view-btn.active { background: var(--navy); border-color: var(--navy); }
.view-btn svg { width: 13px; height: 13px; fill: none; stroke: #888; stroke-width: 1.8; }
.view-btn.active svg { stroke: #fff; }

/* ── 4-COLUMN DEFAULT GRID ── */
.shop-products-grid { display: grid; gap: 14px; }
.shop-products-grid.shop-grid-4 { grid-template-columns: repeat(4, 1fr); }
.shop-products-grid.shop-grid-list { grid-template-columns: 1fr; }
/* Fallback if no class set */
.shop-products-grid:not(.shop-grid-list) { grid-template-columns: repeat(4, 1fr); }

/* List view card override */
.shop-grid-list .stanc-card {
  display: flex; flex-direction: row;
}
.shop-grid-list .stanc-card-img {
  width: 140px; height: 140px; flex-shrink: 0; aspect-ratio: auto;
}
.shop-grid-list .stanc-card-body {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
}
.shop-grid-list .stanc-card-atc { width: auto; display: inline-block; padding: 8px 20px; }

.shop-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 12px; }
.page-btn { width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 5px; background: #f9f9f9; font-size: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--gray); transition: var(--trans); }
.page-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); font-weight: 600; }
.page-btn:hover:not(.active) { background: #fff3ea; border-color: var(--orange); color: var(--orange); }

/* Breadcrumb */
.breadcrumb { font-size: 11px; color: var(--gray); padding: 12px 0 0; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray); transition: var(--trans); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--orange); font-weight: 600; }

/* ══════════════════════════════════════════
   CHECKOUT STEPS (shared cart + checkout)
══════════════════════════════════════════ */
.stanc-page-wrap { max-width: 1240px; margin: 0 auto; padding: 0 20px 60px; }
.stanc-page-title { font-size: 22px; font-weight: 700; margin: 16px 0 24px; }

.stanc-steps {
  display: flex; align-items: center;
  margin: 20px 0 8px;
  flex-wrap: wrap; gap: 0;
}
.stanc-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--gray);
}
.stanc-step.active { color: var(--orange); }
.stanc-step.completed { color: var(--green); }
.ss-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  background: #fff; flex-shrink: 0;
}
.stanc-step.active .ss-num {
  background: var(--orange); border-color: var(--orange); color: #fff;
}
.stanc-step.completed .ss-num {
  background: var(--green); border-color: var(--green); color: #fff;
}
.stanc-step-line {
  flex: 1; min-width: 30px; max-width: 60px;
  height: 2px; background: var(--border); margin: 0 8px;
}
.stanc-step-line.completed { background: var(--green); }

/* ══════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════ */
.stanc-cart-empty {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 80px 40px; text-align: center;
  margin-top: 24px;
}
.sce-icon { font-size: 56px; margin-bottom: 16px; opacity: 0.5; }
.stanc-cart-empty h2 { font-size: 20px; margin-bottom: 8px; }
.stanc-cart-empty p { color: var(--gray); font-size: 13px; margin-bottom: 24px; }
.stanc-btn-primary {
  background: var(--orange); color: #fff;
  padding: 11px 28px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700;
  display: inline-block; transition: var(--trans);
}
.stanc-btn-primary:hover { background: var(--orange-dark); }

.stanc-cart-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

/* Cart Table */
.stanc-cart-table-wrap { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.stanc-cart-table { width: 100%; border-collapse: collapse; }
.stanc-cart-table thead tr {
  background: var(--navy); color: #fff;
}
.stanc-cart-table thead th {
  padding: 13px 16px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  text-align: left;
}
.stanc-cart-table thead th.ct-price,
.stanc-cart-table thead th.ct-qty,
.stanc-cart-table thead th.ct-subtotal { text-align: center; }
.ct-row { border-bottom: 1px solid #f0f0f0; transition: background 0.2s; }
.ct-row:hover { background: #fafafa; }
.ct-row td { padding: 14px 16px; vertical-align: middle; }
.ct-img { width: 80px; padding-right: 0 !important; }
.ct-img a { display: block; width: 72px; height: 72px; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.ct-img img { width: 100%; height: 100%; object-fit: cover; }
.ct-no-img { width: 72px; height: 72px; background: var(--light-gray); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.ct-info { min-width: 160px; }
.ct-name { font-size: 13px; font-weight: 600; color: var(--text); transition: var(--trans); }
.ct-name:hover { color: var(--orange); }
.ct-variation { margin-top: 4px; display: flex; flex-wrap: wrap; gap: 4px; }
.ct-variation span { font-size: 10px; color: var(--gray); background: #f5f5f5; padding: 1px 7px; border-radius: 3px; }
.ct-price { text-align: center; font-size: 13px; color: var(--orange); font-weight: 600; }
.ct-qty { text-align: center; }
.ct-subtotal { text-align: center; }
.ct-sub-val { font-size: 14px; font-weight: 700; color: var(--navy); }
.ct-remove { text-align: center; width: 40px; }
.ct-remove-btn {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  color: var(--gray-light); transition: var(--trans); margin: 0 auto;
}
.ct-remove-btn:hover { background: #fee2e2; color: var(--red); }
.ct-remove-btn svg { width: 14px; height: 14px; }

/* Qty control in cart table */
.stanc-qty-ctrl {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.sqc-btn {
  width: 30px; height: 30px; border: none;
  background: var(--light-gray); font-size: 15px; font-weight: 700;
  color: var(--text); line-height: 1; transition: var(--trans);
}
.sqc-btn:hover { background: var(--orange); color: #fff; }
.sqc-input {
  width: 44px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  text-align: center; font-size: 13px; font-weight: 600; font-family: inherit;
  padding: 0 4px; height: 30px; outline: none;
  -moz-appearance: textfield;
}
.sqc-input::-webkit-outer-spin-button,
.sqc-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Cart actions bar */
.stanc-cart-actions {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
  flex-wrap: wrap; gap: 10px;
}
.stanc-coupon-row { display: flex; gap: 8px; flex-wrap: wrap; }
.stanc-coupon-row input[type="text"],
.stanc-coupon-row .input-text {
  padding: 8px 12px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 12px; font-family: inherit; outline: none; width: 180px;
}
.stanc-coupon-row button,
.stanc-coupon-row .button {
  padding: 8px 16px; background: var(--navy); color: #fff; border: none;
  border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; transition: var(--trans);
}
.stanc-coupon-row button:hover,
.stanc-coupon-row .button:hover { background: var(--orange); }
.stanc-btn-update {
  padding: 8px 18px; background: var(--light-gray);
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 12px; font-weight: 600; color: var(--text);
  cursor: pointer; transition: var(--trans);
}
.stanc-btn-update:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.stanc-btn-continue {
  display: inline-block; font-size: 12px; color: var(--gray);
  padding: 10px 0; transition: var(--trans);
}
.stanc-btn-continue:hover { color: var(--orange); }

/* Cart Totals Sidebar */
.stanc-cart-totals {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px; position: sticky; top: 120px;
}
.sct-title {
  font-size: 14px; font-weight: 700;
  background: var(--navy); color: #fff;
  padding: 12px 16px; margin: -20px -20px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.sct-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid #f0f0f0;
  font-size: 13px; color: var(--text);
}
.sct-val { font-weight: 600; }
.sct-discount { color: var(--green); }
.sct-total { font-size: 14px; border-bottom: none; padding-top: 12px; }
.sct-total-val { color: var(--orange); font-size: 18px; }
.stanc-btn-wa-full {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px; margin-top: 16px;
  background: var(--wa-green); color: #fff;
  border-radius: var(--radius); font-size: 13px; font-weight: 700;
  transition: var(--trans); text-align: center;
}
.stanc-btn-wa-full:hover { background: #1da851; }
.stanc-btn-checkout-full {
  display: block; width: 100%; padding: 13px;
  background: var(--orange); color: #fff;
  border-radius: var(--radius);
  font-size: 13px; font-weight: 700;
  text-align: center; margin-top: 8px;
  transition: var(--trans);
}
.stanc-btn-checkout-full:hover { background: var(--orange-dark); }
.sct-payment-methods { margin-top: 14px; padding-top: 14px; border-top: 1px solid #f0f0f0; text-align: center; }
.sct-payment-methods span { display: block; font-size: 9px; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.sct-pay-icons { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.sct-pay-icon { background: #f5f5f5; border: 1px solid var(--border); border-radius: 4px; padding: 3px 8px; font-size: 9px; font-weight: 700; color: var(--gray); letter-spacing: .04em; }
.sct-secure-text { font-size: 10px; color: var(--gray-light); line-height: 1.5; }

/* Related products */
.stanc-related-section { margin-top: 36px; }

/* ══════════════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════════════ */
.stanc-checkout-form { margin-top: 8px; }
.stanc-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

/* Billing card */
.stanc-billing-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
}
.scb-heading {
  font-size: 15px; font-weight: 700;
  background: var(--navy); color: #fff;
  padding: 12px 18px; margin: -24px -24px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.scb-section-label {
  font-size: 10px; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 12px; margin-top: 8px;
  padding-bottom: 6px; border-bottom: 1px solid #f0f0f0;
}
.scb-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
}
.stanc-form-field { margin-bottom: 16px; }
.stanc-form-field label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.req { color: var(--red); }
.scb-optional { font-size: 11px; font-weight: 400; color: var(--gray-light); }

/* Override WooCommerce field wrappers */
.stanc-billing-card .form-row { margin: 0; padding: 0; }
.stanc-billing-card .form-row input[type="text"],
.stanc-billing-card .form-row input[type="email"],
.stanc-billing-card .form-row input[type="tel"],
.stanc-billing-card .form-row textarea,
.stanc-billing-card input.input-text,
.stanc-billing-card textarea.input-text {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-size: 13px; font-family: inherit; outline: none;
  background: #fafafa; transition: border-color .2s;
}
.stanc-billing-card input.input-text:focus,
.stanc-billing-card textarea.input-text:focus {
  border-color: var(--orange); background: #fff;
}
.stanc-billing-card .form-row label { display: none; }
.stanc-billing-card .stanc-textarea { min-height: 100px; resize: vertical; }
.stanc-textarea { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 13px; font-family: inherit; outline: none; background: #fafafa; min-height: 100px; resize: vertical; transition: border-color .2s; }
.stanc-textarea:focus { border-color: var(--orange); background: #fff; }
.scb-links { display: flex; gap: 16px; margin-top: 8px; }
.scb-links a { font-size: 11px; color: var(--gray); display: flex; align-items: center; gap: 4px; transition: var(--trans); }
.scb-links a:hover { color: var(--orange); }

/* Order Summary */
.stanc-order-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border);
  position: sticky; top: 120px; overflow: hidden;
}
.soc-heading {
  font-size: 14px; font-weight: 700;
  background: var(--navy); color: #fff;
  padding: 13px 18px;
}
.soc-items { padding: 0 16px; max-height: 320px; overflow-y: auto; }
.soc-items::-webkit-scrollbar { width: 3px; }
.soc-items::-webkit-scrollbar-thumb { background: var(--border); }
.soc-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid #f5f5f5;
}
.soc-item:last-child { border-bottom: none; }
.soc-item-img {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 5px; overflow: hidden;
  border: 1px solid var(--border); background: var(--light-gray);
}
.soc-item-img img { width: 100%; height: 100%; object-fit: cover; }
.soc-no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.soc-item-info { flex: 1; min-width: 0; }
.soc-item-name { font-size: 12px; font-weight: 600; line-height: 1.3; margin-bottom: 2px; }
.soc-item-variation { display: flex; flex-wrap: wrap; gap: 3px; margin-bottom: 2px; }
.soc-item-variation span { font-size: 9px; color: var(--gray); background: #f5f5f5; padding: 1px 5px; border-radius: 3px; }
.soc-item-qty { font-size: 10px; color: var(--gray); }
.soc-item-price { font-size: 13px; font-weight: 700; color: var(--orange); flex-shrink: 0; }

.soc-totals { padding: 0 16px 12px; border-top: 1px solid #f0f0f0; margin-top: 4px; }
.soc-total-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; font-size: 12px; border-bottom: 1px solid #f9f9f9;
}
.soc-discount { color: var(--green); font-weight: 600; }
.soc-grand-total { font-size: 14px; font-weight: 700; border-bottom: none; padding-top: 10px; }
.soc-total-val { color: var(--orange); font-size: 17px; }

/* Payment section in order card */
.soc-payment { padding: 0 16px 16px; }
.soc-payment .wc_payment_methods { list-style: none; }
.soc-payment .wc_payment_method { margin-bottom: 8px; }
.soc-payment .wc_payment_method label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  padding: 10px 12px; border-radius: 6px;
  border: 1.5px solid var(--border); background: #fafafa;
  transition: border-color .2s;
}
.soc-payment .wc_payment_method input[type="radio"]:checked + label,
.soc-payment .wc_payment_method label:has(input:checked) {
  border-color: var(--orange); background: #fff9f5;
}
.soc-payment .payment_box {
  font-size: 11px; color: var(--gray); line-height: 1.6;
  background: #f9f9f9; border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 12px; margin-top: 8px;
}
.soc-payment #place_order,
.soc-payment .button[name="woocommerce_checkout_place_order"] {
  display: block; width: 100%; padding: 13px;
  background: var(--orange); color: #fff; border: none;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: var(--trans); margin-top: 12px;
  font-family: inherit; letter-spacing: 0.02em;
}
.soc-payment #place_order:hover { background: var(--orange-dark); }

/* WA Order button in checkout */
.soc-payment .stanc-btn-wa-co {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px;
  background: var(--wa-green); color: #fff;
  border-radius: var(--radius); font-size: 13px; font-weight: 700;
  margin-top: 10px; transition: var(--trans); text-align: center;
}
.soc-payment .stanc-btn-wa-co:hover { background: #1da851; }

.soc-privacy-notice { font-size: 10px; color: var(--gray); padding: 10px 16px 12px; line-height: 1.6; border-top: 1px solid #f0f0f0; }
.soc-privacy-notice a { color: var(--orange); }

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: var(--radius);
  padding: 12px 16px; margin-bottom: 16px;
  font-size: 13px; border-left: 4px solid var(--green);
  background: #f0fdf4; color: #166534;
}
.woocommerce-error { border-left-color: var(--red); background: #fef2f2; color: #991b1b; }
.woocommerce-info { border-left-color: #3b82f6; background: #eff6ff; color: #1e40af; }

/* WooCommerce coupon form */
.coupon { display: flex; gap: 8px; flex-wrap: wrap; }
.coupon input#coupon_code {
  padding: 8px 12px; border: 1px solid var(--border);
  border-radius: 6px; font-size: 12px; font-family: inherit; outline: none;
}
.coupon .button {
  padding: 8px 16px; background: var(--navy); color: #fff;
  border: none; border-radius: 6px; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: var(--trans); font-family: inherit;
}
.coupon .button:hover { background: var(--orange); }

/* WooCommerce shipping calc */
.shipping-calculator-form { font-size: 12px; }
.shipping-calculator-form p { margin: 6px 0; }
.shipping-calculator-form input,
.shipping-calculator-form select {
  padding: 6px 10px; border: 1px solid var(--border);
  border-radius: 5px; font-size: 12px; font-family: inherit;
  outline: none; width: 100%;
}
.shipping-calculator-form .button {
  padding: 8px 14px; background: var(--orange); color: #fff;
  border: none; border-radius: 5px; font-size: 12px;
  font-weight: 600; cursor: pointer; font-family: inherit;
}

/* WC pagination */
.woocommerce-pagination ul { display: flex; gap: 6px; flex-wrap: wrap; }
.woocommerce-pagination ul li { list-style: none; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border: 1px solid var(--border);
  border-radius: 5px; background: #f9f9f9;
  font-size: 12px; color: var(--gray); transition: var(--trans);
}
.woocommerce-pagination ul li .current,
.woocommerce-pagination ul li a:hover {
  background: var(--orange); color: #fff; border-color: var(--orange);
}

/* ══════════════════════
   FOOTER
══════════════════════ */
.site-footer { background: var(--navy-dark); color: #fff; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 32px; padding: 40px 24px 24px; max-width: 1240px; margin: 0 auto; }
.f-logo { font-family: var(--serif); font-size: 28px; color: #fff; font-weight: 700; }
.f-logo em { color: var(--orange); font-style: normal; }
.f-logo-sub { font-size: 8px; letter-spacing: .2em; color: rgba(255,255,255,.3); text-transform: uppercase; margin-top: 2px; margin-bottom: 12px; }
.f-about { font-size: 11px; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 14px; }
.f-contact-line { font-size: 11px; color: rgba(255,255,255,.55); line-height: 2; }
.f-contact-line strong { color: #fff; }
.f-col-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 14px; }
.f-links { display: flex; flex-direction: column; gap: 8px; }
.f-links a { font-size: 11px; color: rgba(255,255,255,.45); transition: var(--trans); }
.f-links a:hover { color: var(--orange); padding-left: 4px; }
.f-nl-row { display: flex; margin-top: 8px; }
.f-nl-row input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-right: none; padding: 9px 12px; color: #fff; font-size: 11px; font-family: inherit; outline: none; border-radius: 4px 0 0 4px; }
.f-nl-row input::placeholder { color: rgba(255,255,255,.3); }
.f-nl-row button { background: var(--orange); border: none; padding: 0 14px; font-size: 10px; font-weight: 700; color: #fff; cursor: pointer; border-radius: 0 4px 4px 0; white-space: nowrap; }
.f-nl-row button:hover { background: var(--orange-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom-inner { max-width: 1240px; margin: 0 auto; padding: 14px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 10px; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }
.footer-bottom-inner a { color: var(--orange); }

/* ══════════════════════
   WHATSAPP FAB
══════════════════════ */
.wa-fab { position: fixed; bottom: 24px; right: 24px; z-index: 600; width: 52px; height: 52px; border-radius: 50%; background: var(--wa-green); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.45); transition: var(--trans); }
.wa-fab:hover { transform: scale(1.1); }
.wa-fab svg { width: 26px; height: 26px; }

/* ══════════════════════
   MOBILE TOOLBAR (shop)
══════════════════════ */
.mob-bar, .mob-search-drop, .mob-overlay, .mob-sidebar-close { display: none !important; }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 1100px) {
  .cat-circles-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stanc-cart-layout { grid-template-columns: 1fr 280px; }
  .stanc-checkout-layout { grid-template-columns: 1fr 340px; }
}
@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; }
  .hero-banners { display: none; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .promo-row { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .shop-products-grid:not(.shop-grid-list) { grid-template-columns: repeat(2, 1fr); }
  .stanc-cart-layout { grid-template-columns: 1fr; }
  .stanc-checkout-layout { grid-template-columns: 1fr; }
  .stanc-order-card { position: static; }
  .stanc-cart-totals { position: static; }
}
@media (max-width: 768px) {
  .top-header { padding: 10px 14px; flex-wrap: wrap; gap: 10px; }
  .search-wrap { order: 3; flex: 0 0 100%; }
  .search-cat { display: none; }
  .hdr-actions { gap: 10px; }
  .cart-hdr strong { display: none; }
  .cat-circles-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid, .shop-products-grid:not(.shop-grid-list) { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stanc-cart-drawer { width: 100%; right: -100%; }
  .scb-row-2 { grid-template-columns: 1fr; }
  .stanc-cart-table thead { display: none; }
  .ct-row { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; }
  .ct-row td { display: block; padding: 4px 8px; border: none; }
  .ct-row td::before { content: attr(data-label); font-size: 10px; color: var(--gray); display: block; margin-bottom: 2px; }
  .ct-img { width: auto; }
  .stanc-cart-table { display: block; }
  .stanc-cart-table tbody { display: block; }

  .mob-overlay {
    display: block !important;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9998; opacity: 0;
    pointer-events: none; transition: opacity .3s;
  }
  .mob-overlay.mob-active { opacity: 1; pointer-events: all; }

  .shop-sidebar {
    display: flex !important;
    position: fixed !important;
    top: 0; left: -100%;
    width: 82%; max-width: 300px;
    height: 100vh; overflow-y: auto;
    background: #fff; z-index: 9999;
    box-shadow: 4px 0 24px rgba(0,0,0,.2);
    transition: left .3s ease;
    padding: 54px 18px 30px !important;
  }
  .shop-sidebar.mob-open { left: 0; }

  .mob-sidebar-close {
    display: flex !important;
    position: absolute; top: 12px; right: 14px;
    background: none; border: none;
    font-size: 22px; cursor: pointer;
    color: var(--text); width: 32px; height: 32px;
    align-items: center; justify-content: center;
    border-radius: 50%;
  }

  .mob-bar {
    display: flex !important;
    align-items: center; gap: 8px;
    padding: 9px 12px; background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
  }
  .mob-bar-filter {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 13px; background: var(--navy);
    color: #fff; border: none; border-radius: 6px;
    font-size: 12px; font-weight: 600; cursor: pointer; flex-shrink: 0;
  }
  .mob-bar-filter svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; }
  .mob-bar-search {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; background: var(--light-gray);
    border: 1px solid var(--border); border-radius: 6px;
    cursor: pointer; flex-shrink: 0; color: var(--navy);
  }
  .mob-bar-search svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
  .mob-bar-sort { flex: 1; min-width: 0; }
  .mob-bar-sort select { width: 100%; padding: 8px; border: 1px solid var(--border); border-radius: 6px; font-size: 12px; background: var(--lighter); color: var(--navy); outline: none; }
  .mob-search-drop { display: none; align-items: center; gap: 8px; padding: 9px 12px; background: #fff; border-bottom: 1px solid var(--border); }
  .mob-search-drop.mob-active { display: flex !important; }
  .mob-search-drop input { flex: 1; padding: 9px 13px; border: 1.5px solid var(--orange); border-radius: 6px; font-size: 13px; outline: none; }
  .mob-search-drop button { padding: 9px 16px; background: var(--orange); color: #fff; border: none; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; }
  .shop-toolbar { display: none !important; }
  .shop-layout { display: block; }
}
@media (max-width: 520px) {
  .cat-circles-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-title { font-size: 22px; }
  .promo-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .stanc-steps { gap: 4px; }
  .stanc-step-line { min-width: 16px; }
  .ss-label { display: none; }
}

