/* ═══════════════════════════════════════════════════════════════
   Truflo by Hindware — Theme v5 "Old Site Match"
   ───────────────────────────────────────────────────────────────
   Target: truflobyhindware.shop (Sahara Hardware / WoodMart style)
   CHANGE LOG vs Industrial Chic v4:
     - --red:       #C62828 → #B71C1C  (WoodMart red)
     - --dark:      #0F172A → #1a1a1a  (pure near-black)
     - Fonts:       Inter/Rajdhani → Roboto/Roboto Condensed
     - Section heads: LEFT → CENTERED text
     - Footer bg:   DARK  → RED (#B71C1C)
     - Promo strip: DARK  → WHITE bordered boxes
     - Product cards: lift animation → flat/minimal
     - Hero dots:   bars  → circles
     - Card radius: 6px   → 0-2px (flat WoodMart style)
   LOCKED (zero change):
     - All JS-dependent classes: .btn-add-cart, .hero-slide,
       .attr-pill, .qty-btn, .qty-input, .cart-qty-input
     - All data-* attributes untouched
     - All admin classes untouched
═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  /* WoodMart / Sahara Hardware exact tokens */
  --red:           #B71C1C;
  --red-dark:      #9B1818;
  --red-hover:     #a01919;
  --red-light:     rgba(183,28,28,.08);

  /* Darks */
  --dark:          #1a1a1a;
  --dark-2:        #2d2d2d;
  --dark-menu:     #111111;

  /* Grays */
  --mid:           #555555;
  --muted:         #777777;
  --border:        #e8e8e8;
  --light:         #f5f5f5;
  --white:         #ffffff;

  /* Typography — back to Roboto pair */
  --font:          'Roboto', sans-serif;
  --font-cond:     'Roboto Condensed', sans-serif;

  /* Geometry — WoodMart flat style */
  --radius:        2px;
  --radius-md:     4px;

  /* Shadows — minimal for flat WoodMart look */
  --shadow:        0 1px 3px rgba(0,0,0,.08);
  --shadow-hover:  0 4px 16px rgba(0,0,0,.14);
  --shadow-card:   0 2px 8px rgba(0,0,0,.07);

  /* Motion */
  --ease:          ease;
  --transition:    0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 14px;
  color: var(--dark);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color var(--transition); }

/* ══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR — red top strip
   ══════════════════════════════════════════════════════════════ */
.announce-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
}
.announce-bar a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   HEADER — dark, centered logo, icons right (OLD site layout)
   ══════════════════════════════════════════════════════════════ */
.site-header {
  background: var(--dark);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 6px rgba(0,0,0,.5);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.header-left  { display: flex; align-items: center; gap: 14px; }
.header-right { display: flex; align-items: center; gap: 16px; justify-content: flex-end; }

/* Logo — square mark style like OLD site */
.site-logo { text-align: center; }
.logo-icon {
  display: inline-flex; flex-direction: column;
  align-items: center; text-decoration: none; gap: 4px;
}
.logo-icon .logo-box {
  width: 50px; height: 50px;
  background: var(--dark-2);
  border: 2px solid #fff;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond); font-weight: 900;
  font-size: 1.3rem; color: #fff; letter-spacing: -.04em; line-height: 1;
}
.logo-icon .logo-name {
  font-family: var(--font-cond); font-weight: 700;
  font-size: .68rem; letter-spacing: .22em;
  color: rgba(255,255,255,.7); text-transform: uppercase; white-space: nowrap;
}

/* Search icon */
.header-search-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.7); font-size: 1.1rem; padding: 6px;
  transition: color var(--transition);
}
.header-search-btn:hover { color: #fff; }

/* Header icon buttons (heart, bag, person) */
.header-icon-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.75); font-size: 1.15rem; padding: 5px;
  position: relative; display: inline-flex; align-items: center;
  text-decoration: none; transition: color var(--transition);
}
.header-icon-btn:hover { color: #fff; }
.hib-badge {
  position: absolute; top: -3px; right: -5px;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 800; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--dark);
}

/* Vendor dropdown button */
.vendor-dd-btn {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  cursor: pointer; color: rgba(255,255,255,.8);
  font-size: .8rem; font-weight: 500; padding: 5px 11px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 5px;
  transition: all var(--transition);
}
.vendor-dd-btn:hover { color: #fff; background: rgba(255,255,255,.16); }
.vendor-dd-btn i { font-size: 1rem; }

/* Mobile btn */
.mobile-menu-btn {
  display: none; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 1.3rem; cursor: pointer;
  padding: 4px 8px; border-radius: var(--radius);
}

/* Search overlay */
.search-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.85); z-index: 2000;
  align-items: flex-start; padding-top: 110px;
}
.search-overlay.active { display: flex; }
.search-overlay .search-box {
  max-width: 640px; width: 92%; margin: 0 auto; position: relative;
}
.search-overlay input {
  width: 100%; padding: 15px 50px 15px 18px;
  font-size: 1rem; border: none; border-radius: var(--radius);
  outline: none; font-family: var(--font);
}
.search-overlay .search-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--muted);
}

/* Mobile drawer */
.mobile-nav-drawer {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark); z-index: 9999; overflow-y: auto; padding: 20px;
  transform: translateX(-100%); transition: transform .3s ease;
}
.mobile-nav-drawer.open { transform: translateX(0); }

/* ══════════════════════════════════════════════════════════════
   CATEGORY NAV BAR — solid RED, ALL CAPS (exact OLD site)
   ══════════════════════════════════════════════════════════════ */
.cat-navbar {
  background: var(--red);
  position: relative; z-index: 1040;
  border-bottom: 1px solid var(--red-dark);
}
.cat-navbar-inner { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; }
.cat-navbar-inner::-webkit-scrollbar { display: none; }
.cat-nav-item { position: relative; flex-shrink: 0; }
.cat-nav-link {
  display: block; padding: 11px 14px;
  color: rgba(255,255,255,.92);
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
  text-decoration: none; transition: color var(--transition);
  border-bottom: 2px solid transparent;
}
.cat-nav-link:hover, .cat-nav-link.active {
  color: #fff; border-bottom-color: #fff;
}

/* Mega menu — dark panel */
.mega-menu {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 760px; background: var(--dark-menu);
  border-top: 3px solid var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  z-index: 2000; padding: 22px 24px;
}
.cat-nav-item:hover .mega-menu { display: block; }
.mega-menu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.mega-cat-item {
  display: block; padding: 10px 12px; border-radius: var(--radius);
  text-decoration: none; transition: background var(--transition);
}
.mega-cat-item:hover { background: rgba(255,255,255,.06); }
.mega-cat-name {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 2px;
}
.mega-cat-count { font-size: 11px; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════════════════════════
   BUTTONS — solid fills, no gradients (OLD site flat style)
   ══════════════════════════════════════════════════════════════ */
.btn-red {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff; border: 2px solid var(--red);
  padding: 11px 26px; font-family: var(--font-cond);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

.btn-dark-fill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--dark); color: #fff; border: 2px solid var(--dark);
  padding: 11px 26px; font-family: var(--font-cond);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-dark-fill:hover { background: var(--red); border-color: var(--red); color: #fff; }

.btn-outline-red {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--red); border: 2px solid var(--red);
  padding: 11px 26px; font-family: var(--font-cond);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-outline-red:hover { background: var(--red); color: #fff; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: rgba(255,255,255,.85);
  border: 2px solid rgba(255,255,255,.5);
  padding: 11px 26px; font-family: var(--font-cond);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-outline-white:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }

/* Legacy alias */
.btn-primary-truflo {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff; border: 2px solid var(--red);
  padding: 10px 22px; font-family: var(--font-cond);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary-truflo:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   SECTION HEADS — OLD site: RED, text CENTERED, ALL CAPS
   ══════════════════════════════════════════════════════════════ */
.section-head {
  background: var(--red);
  color: #fff;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: center;      /* ← CENTERED (OLD site style) */
  position: relative;
}
.section-head h2 {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 1.05rem; letter-spacing: .2em;
  text-transform: uppercase; color: #fff; margin: 0;
  text-align: center;
}
/* View All link floated right absolutely */
.section-head a {
  position: absolute; right: 18px;
  font-size: 11.5px; color: rgba(255,255,255,.82);
  font-weight: 600; text-decoration: underline;
}
.section-head a:hover { color: #fff; }

/* Plain section title */
.section-title-plain {
  font-family: var(--font-cond); font-weight: 700; font-size: 1.4rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--dark);
  position: relative; padding-bottom: 10px; margin-bottom: 22px;
}
.section-title-plain::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 44px; height: 3px; background: var(--red); border-radius: 2px;
}
.section-title-plain.center { text-align: center; }
.section-title-plain.center::after { left: 50%; transform: translateX(-50%); }

/* Legacy alias */
.section-title {
  font-family: var(--font-cond); font-weight: 700; font-size: 1.3rem;
  letter-spacing: .05em; text-transform: uppercase; color: var(--dark);
  position: relative; padding-bottom: 10px; margin-bottom: 20px;
}
.section-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 44px; height: 3px; background: var(--red);
}
.section-title.center::after { left: 50%; transform: translateX(-50%); }

/* ══════════════════════════════════════════════════════════════
   COUPON BANNER STRIP (OLD site exclusive — between hero & promo)
   ══════════════════════════════════════════════════════════════ */
.coupon-strip { background: #f5f5f5; padding: 14px 0; border-top: 1px solid #e8e8e8; }
.coupon-box {
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  height: 70px; overflow: hidden; position: relative;
}
.coupon-box-green   { background: linear-gradient(135deg, #2E7D32, #388E3C); }
.coupon-box-yellow  { background: linear-gradient(135deg, #F9A825, #F57F17); }
.coupon-box-red     { background: linear-gradient(135deg, #B71C1C, #C62828); }
.coupon-box-dark    { background: linear-gradient(135deg, #263238, #37474F); }
.coupon-icon { font-size: 1.5rem; flex-shrink: 0; }
.coupon-label {
  font-family: var(--font-cond); font-weight: 700; color: #fff;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; line-height: 1.3;
}
.coupon-label small { font-size: .68rem; opacity: .82; display: block; font-weight: 400; }
.coupon-pct {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-cond); font-weight: 900;
  font-size: 1.4rem; color: rgba(255,255,255,.2); letter-spacing: -.04em;
}

/* ══════════════════════════════════════════════════════════════
   HERO SLIDER — OLD site style (store photo feel, lighter overlay)
   ══════════════════════════════════════════════════════════════ */
.hero-slider { position: relative; overflow: hidden; background: var(--dark); }
.hero-slide { display: none; position: relative; min-height: 480px; align-items: center; }
.hero-slide.active { display: flex; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.52);
}
.hero-slide-content { position: relative; z-index: 2; color: #fff; padding: 60px 0; }
.hero-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; padding: 4px 14px;
  border-radius: var(--radius); margin-bottom: 14px;
}
.hero-slide-content h1 {
  font-family: var(--font-cond); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; line-height: 1.08;
  text-transform: uppercase; margin-bottom: 14px; letter-spacing: .02em;
}
.hero-slide-content p {
  font-size: .95rem; color: rgba(255,255,255,.75);
  margin-bottom: 26px; max-width: 460px; line-height: 1.75;
}
/* OLD site: circle dots */
.hero-dots {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 7px; z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer; transition: background var(--transition); padding: 0;
}
.hero-dot.active { background: var(--red); }

/* ══════════════════════════════════════════════════════════════
   PROMO STRIP — OLD site: white bg, bordered boxes, icon left
   ══════════════════════════════════════════════════════════════ */
.promo-strip { background: var(--light); padding: 18px 0; border-bottom: 1px solid var(--border); }
.promo-box {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  height: 100%;
}
.promo-box-icon {
  width: 44px; height: 44px; background: #fce8e8; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.2rem; flex-shrink: 0;
}
.promo-box-text h6 {
  font-family: var(--font-cond); font-weight: 700;
  font-size: .82rem; color: var(--dark); margin-bottom: 2px;
  text-transform: uppercase; letter-spacing: .05em;
}
.promo-box-text p { font-size: .76rem; color: var(--muted); margin: 0; line-height: 1.4; }

/* ══════════════════════════════════════════════════════════════
   PRODUCT CARDS — OLD site: flat, no lift, simple border
   ══════════════════════════════════════════════════════════════ */
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: 0;
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  transition: box-shadow var(--transition);
}
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.12); }

/* Image — square, object-contain, white bg */
.product-card-img {
  position: relative; background: #fff; width: 100%;
  padding-top: 100%; overflow: hidden; border-bottom: 1px solid var(--border);
}
.product-card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 10px; transition: transform .35s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img .no-img {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 2.8rem; color: #ddd;
}

/* Badge */
.pc-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 7px;
  border-radius: 1px; text-transform: uppercase; letter-spacing: .06em; z-index: 1;
}
.pc-badge.new { background: var(--dark); }

/* Hover actions */
.pc-actions {
  position: absolute; top: 8px; right: 8px;
  display: flex; flex-direction: column; gap: 5px;
  opacity: 0; transform: translateX(8px); transition: all var(--transition); z-index: 1;
}
.product-card:hover .pc-actions { opacity: 1; transform: translateX(0); }
.pc-action-btn {
  width: 32px; height: 32px; background: #fff; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--dark); cursor: pointer; text-decoration: none;
  transition: all var(--transition);
}
.pc-action-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Card body */
.product-card-body { padding: 10px 12px 6px; flex: 1; }
.pc-category-tag {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px;
}
/* Product name — Roboto Condensed, uppercase (OLD site style) */
.pc-name {
  font-family: var(--font-cond); font-weight: 700; font-size: .88rem;
  color: #111; text-transform: uppercase; letter-spacing: .02em;
  line-height: 1.3; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pc-name a { color: #111; }
.pc-name a:hover { color: var(--red); }
.pc-price { font-weight: 700; font-size: .95rem; color: #111; font-family: var(--font); }
.pc-price .was {
  font-weight: 400; font-size: .78rem; color: var(--muted);
  text-decoration: line-through; margin-left: 5px;
}

/* ADD TO CART — flat dark button (OLD site: #333, full width) */
.product-card-footer { padding: 8px 12px 12px; }
.btn-add-cart {
  display: block; width: 100%; text-align: center; padding: 9px 8px;
  background: #333333; color: #fff;
  border: none; border-radius: 0;
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: background var(--transition); text-decoration: none;
}
.btn-add-cart:hover { background: var(--red); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   CATEGORY IMAGE CARDS — OLD site: image + name + description
   ══════════════════════════════════════════════════════════════ */
.cat-image-card {
  position: relative; display: block; overflow: hidden;
  text-decoration: none; aspect-ratio: 4/3; border-radius: 0;
}
.cat-image-card .cat-img-bg {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease;
}
.cat-image-card:hover .cat-img-bg { transform: scale(1.05); }
.cat-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.12) 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px 18px;
}
/* Category name — OLD site: white bold */
.cat-image-name {
  font-family: var(--font-cond); font-weight: 700; font-size: 1rem;
  color: #fff; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px;
}
/* Description text — present in OLD site */
.cat-image-desc {
  font-size: .73rem; color: rgba(255,255,255,.72); line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
/* SHOP NOW button — OLD site red, small */
.cat-image-btn {
  display: inline-block; background: var(--red); color: #fff;
  font-family: var(--font-cond);
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 1px;
  align-self: flex-start; transition: background var(--transition);
}
.cat-image-card:hover .cat-image-btn { background: var(--red-dark); }

/* Emoji fallback card */
.cat-emoji-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--light); border: 1px solid var(--border); border-radius: 0;
  padding: 22px 14px; text-decoration: none; aspect-ratio: 4/3;
  transition: all var(--transition);
}
.cat-emoji-card:hover { background: var(--red); border-color: var(--red); }
.cat-emoji-card:hover .cat-emoji-name { color: #fff; }
.cat-emoji-icon {
  width: 54px; height: 54px; background: #fce8e8; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 10px;
}
.cat-emoji-name {
  font-family: var(--font-cond); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .07em; color: var(--dark); text-align: center;
  transition: color var(--transition);
}

/* ══════════════════════════════════════════════════════════════
   ADMIN CARDS — legacy, unchanged
   ══════════════════════════════════════════════════════════════ */
.admin-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.admin-card-header {
  background: var(--dark); color: #fff; padding: 13px 18px;
  font-family: var(--font-cond); font-weight: 700; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase;
}
.admin-card-body { padding: 16px; }
.admin-card-footer { padding: 12px 16px; border-top: 1px solid var(--border); background: var(--light); }

/* ══════════════════════════════════════════════════════════════
   PAGE BANNER + BREADCRUMB
   ══════════════════════════════════════════════════════════════ */
.page-banner { background: var(--light); padding: 18px 0; border-bottom: 1px solid var(--border); }
.page-banner h1 {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 1.3rem; text-transform: uppercase; letter-spacing: .04em; margin: 0;
}
.page-breadcrumb { background: var(--light); border-bottom: 1px solid var(--border); padding: 11px 0; }
.page-breadcrumb .breadcrumb { margin: 0; font-size: .82rem; }
.breadcrumb { font-size: .82rem; margin: 0; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }
.breadcrumb-item a { color: var(--red); }

/* ══════════════════════════════════════════════════════════════
   PRODUCT LISTING
   ══════════════════════════════════════════════════════════════ */
.listing-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--border); margin-bottom: 20px;
}
.listing-count { font-size: .83rem; color: var(--muted); }
.listing-per-page .pp-btn {
  background: #fff; border: 1px solid var(--border); padding: 4px 9px;
  font-size: .8rem; cursor: pointer; color: var(--mid); transition: all var(--transition);
}
.listing-per-page .pp-btn:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.listing-per-page .pp-btn:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.listing-per-page .pp-btn.active,
.listing-per-page .pp-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.grid-toggle .gt-btn {
  background: #fff; border: 1px solid var(--border); padding: 6px 9px;
  cursor: pointer; color: var(--muted); transition: all var(--transition);
}
.grid-toggle .gt-btn:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.grid-toggle .gt-btn:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.grid-toggle .gt-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }

/* Grids */
.product-grid-5 { display: grid; gap: 12px; grid-template-columns: repeat(5,1fr); }
.product-grid-4 { display: grid; gap: 12px; grid-template-columns: repeat(4,1fr); }
.product-grid-3 { display: grid; gap: 12px; grid-template-columns: repeat(3,1fr); }

/* Filter chips */
.cat-filter-bar { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.cat-chip {
  padding: 5px 13px; border: 1px solid var(--border); border-radius: 99px;
  font-size: .78rem; font-weight: 600; color: var(--mid);
  cursor: pointer; transition: all var(--transition); text-decoration: none; background: #fff;
}
.cat-chip:hover, .cat-chip.active { border-color: var(--red); background: var(--red); color: #fff; }

/* Search bar */
.product-search-bar { display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; }
.product-search-bar input { flex: 1; padding: 10px 14px; border: none; outline: none; font-size: .88rem; }
.product-search-bar button {
  background: var(--dark); color: #fff; border: none; padding: 0 16px;
  cursor: pointer; font-size: .95rem; transition: background var(--transition);
}
.product-search-bar button:hover { background: var(--red); }

.no-results { text-align: center; padding: 60px 20px; color: var(--muted); }
.no-results .nr-icon { font-size: 3.5rem; margin-bottom: 14px; opacity: .3; }
.no-results h4 { color: var(--dark); margin-bottom: 8px; }

/* Pagination */
.pagination { gap: 3px; }
.page-link { color: var(--dark); border-color: var(--border); font-size: .83rem; padding: 6px 12px; }
.page-link:hover { background: var(--red); color: #fff; border-color: var(--red); }
.page-item.active .page-link { background: var(--red); border-color: var(--red); }

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL
   ══════════════════════════════════════════════════════════════ */
.pd-img-wrap {
  border: 1px solid var(--border); overflow: hidden; background: #fff;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px; padding: 16px;
}
.pd-img-wrap img { max-height: 350px; object-fit: contain; }
.pd-thumbs { display: flex; gap: 7px; margin-top: 8px; flex-wrap: wrap; }
.pd-thumb {
  width: 68px; height: 68px; border: 2px solid var(--border);
  cursor: pointer; transition: border-color var(--transition); padding: 4px; background: #fff;
}
.pd-thumb:hover, .pd-thumb.active { border-color: var(--red); }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pd-category-tag { font-size: .76rem; color: var(--red); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; margin-bottom: 7px; }
.pd-title { font-family: var(--font-cond); font-weight: 900; font-size: 1.55rem; text-transform: uppercase; color: #111; line-height: 1.15; margin-bottom: 10px; }
.pd-price-box { background: var(--light); border-radius: var(--radius-md); padding: 14px 18px; margin: 14px 0; }
.pd-price { font-size: 1.7rem; font-weight: 700; color: var(--red); }
.pd-price-mrp { font-size: .88rem; color: var(--muted); text-decoration: line-through; margin-left: 8px; }
.pd-price-save { font-size: .78rem; color: #276749; font-weight: 700; margin-left: 8px; }
.pd-attr-label { font-size: .78rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 7px; }
.attr-pill {
  display: inline-block; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 5px 12px; font-size: .83rem; cursor: pointer;
  margin: 3px; transition: all var(--transition); background: #fff; color: var(--dark);
}
.attr-pill.active, .attr-pill:hover { border-color: var(--red); background: var(--red); color: #fff; font-weight: 600; }
.qty-wrap { display: flex; align-items: center; }
.qty-btn {
  width: 36px; height: 36px; background: var(--light); border: 1px solid var(--border);
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.qty-input {
  width: 56px; height: 36px; text-align: center;
  border: 1px solid var(--border); border-left: none; border-right: none;
  font-size: .9rem; font-weight: 700; outline: none;
}
.tier-table th { background: var(--dark); color: #fff; font-size: .78rem; }

/* ══════════════════════════════════════════════════════════════
   VENDOR DASHBOARD
   ══════════════════════════════════════════════════════════════ */
.dash-page-header { background: var(--dark); padding: 26px 0; color: #fff; }
.dash-page-header h2 { color: #fff; font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin: 0; }
.dash-page-header p { color: rgba(255,255,255,.55); margin: 4px 0 0; font-size: .875rem; }
.dash-stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; display: flex; align-items: center; gap: 14px; transition: box-shadow var(--transition); }
.dash-stat-card:hover { box-shadow: var(--shadow-card); }
.dash-stat-icon { width: 50px; height: 50px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.dash-stat-num { font-family: var(--font-cond); font-size: 1.6rem; font-weight: 700; color: var(--dark); }
.dash-stat-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* ══════════════════════════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════════════════════════ */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow); }
.form-label { font-size: .84rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.form-control, .form-select { border: 1px solid var(--border); border-radius: var(--radius); padding: 9px 13px; font-size: .88rem; transition: border-color var(--transition), box-shadow var(--transition); }
.form-control:focus, .form-select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(183,28,28,.1); outline: none; }

/* ══════════════════════════════════════════════════════════════
   CART
   ══════════════════════════════════════════════════════════════ */
.cart-section { background: var(--light); padding: 36px 0; min-height: 65vh; }
.cart-table th { background: var(--dark); color: #fff; font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; padding: 11px 14px; }
.cart-table td { vertical-align: middle; padding: 12px 14px; }
.cart-item-img { width: 68px; height: 68px; object-fit: contain; background: #fff; border: 1px solid var(--border); padding: 4px; }

/* ══════════════════════════════════════════════════════════════
   CUSTOMER REVIEWS — OLD site: pinkish bg, 2-wide cards
   ══════════════════════════════════════════════════════════════ */
.reviews-section-wrap {
  background: rgba(183,28,28,.05);
  border-top: 1px solid rgba(183,28,28,.12);
}
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; height: 100%; }
.review-stars { color: #f5a623; font-size: .85rem; margin-bottom: 8px; }
.review-text { font-size: .855rem; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
.review-author { font-weight: 700; font-size: .83rem; color: var(--dark); }
.review-business { font-size: .76rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════
   TRUST BADGES — OLD site: icon ABOVE text, stacked layout
   ══════════════════════════════════════════════════════════════ */
.trust-bar { padding: 30px 0; border-top: 1px solid var(--border); background: #fff; }
/* OLD site: icon is stacked above text, centred in each column */
.trust-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 8px;
}
.trust-icon {
  width: 52px; height: 52px; background: #fce8e8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.4rem;
  transition: all var(--transition);
}
.trust-item:hover .trust-icon { background: var(--red); color: #fff; }
.trust-text h6 { font-family: var(--font-cond); font-weight: 700; font-size: .84rem; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .04em; }
.trust-text p { font-size: .75rem; color: var(--muted); margin: 0; }

/* ══════════════════════════════════════════════════════════════
   FOOTER — RED background (OLD site exact match)
   ══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--red); color: rgba(255,255,255,.82); padding: 46px 0 0; }
.footer-heading {
  font-family: var(--font-cond); font-weight: 700; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .14em; color: #fff;
  margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.25);
}
.footer-logo-box {
  width: 54px; height: 54px; background: var(--dark); border: 2px solid #fff;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond); font-weight: 900; font-size: 1.3rem;
  color: #fff; margin-bottom: 8px;
}
.footer-logo-name { font-family: var(--font-cond); font-weight: 700; font-size: .72rem; letter-spacing: .2em; color: #fff; text-transform: uppercase; margin-bottom: 12px; }
.footer-desc { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; font-size: .83rem; }
.footer-links a { color: rgba(255,255,255,.72); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 9px; font-size: .83rem; color: rgba(255,255,255,.72); }
.footer-contact-item i { color: rgba(255,255,255,.9); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.72); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom-bar { background: var(--red-dark); margin-top: 32px; padding: 12px 0; text-align: center; font-size: .78rem; color: rgba(255,255,255,.55); }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #25D366; color: #fff; padding: 9px 16px; border-radius: var(--radius);
  font-size: .82rem; font-weight: 600; text-decoration: none; transition: background var(--transition); margin-top: 12px;
}
.footer-wa-btn:hover { background: #128C7E; color: #fff; }

/* ══════════════════════════════════════════════════════════════
   ALERTS, BADGES, TABLES, TIMELINE
   ══════════════════════════════════════════════════════════════ */
.alert-truflo { border-radius: var(--radius); border-left: 4px solid; padding: 13px 16px; font-size: .88rem; }
.alert-truflo.success { border-color: #276749; background: #F0FFF4; color: #276749; }
.alert-truflo.error   { border-color: var(--red); background: #fff5f5; color: var(--red-dark); }
.alert-truflo.info    { border-color: #2B6CB0; background: #EBF8FF; color: #2C5282; }
.alert-truflo.warning { border-color: #D97706; background: #FFFBEB; color: #92400E; }
.badge { font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 2px; }
.table-truflo { font-size: .855rem; }
.table-truflo thead th { background: var(--dark); color: rgba(255,255,255,.85); font-family: var(--font-cond); font-weight: 700; font-size: .76rem; letter-spacing: .07em; text-transform: uppercase; padding: 11px 14px; border: none; }
.table-truflo tbody tr:hover { background: #fafafa; }
.table-truflo td { padding: 11px 14px; vertical-align: middle; border-color: var(--border); }
.order-timeline { list-style: none; padding: 0; position: relative; }
.order-timeline::before { content:''; position:absolute; left:17px; top:0; bottom:0; width:2px; background:var(--border); }
.timeline-item { display:flex; gap:14px; padding-bottom:18px; position:relative; }
.timeline-dot { width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.85rem; flex-shrink:0; z-index:1; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) { .product-grid-5 { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 992px) {
  .product-grid-5 { grid-template-columns: repeat(3,1fr); }
  .product-grid-4 { grid-template-columns: repeat(3,1fr); }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .cat-navbar { display: none; }
  .mobile-menu-btn { display: block; }
  .mega-menu-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .product-grid-5, .product-grid-4, .product-grid-3 { grid-template-columns: repeat(2,1fr); }
  .mega-menu-grid { grid-template-columns: repeat(2,1fr); }
  .form-card { padding: 22px 16px; }
  .trust-item { flex-direction: row; text-align: left; }
}
@media (max-width: 480px) {
  .hero-slide { min-height: 300px; }
  .hero-slide-content h1 { font-size: 1.6rem; }
}
