/* Smooth Power — E-commerce theme
   Colors inspired by smoothpower.in: crimson red + white, professional industrial tone */

:root {
  --red: #DC1E2A;
  --red-dark: #B0121D;
  --red-light: #FFE8EA;
  --yellow: #FFC107;
  --green: #0F9D58;
  --ink: #1A1A1A;
  --ink-2: #333;
  --muted: #6B7280;
  --border: #E5E7EB;
  --bg: #FFFFFF;
  --bg-soft: #F7F7F9;
  --bg-dark: #111418;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 2px 8px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,.10);
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--bg-dark);
  color: #fff;
  font-size: 12px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a:hover { color: var(--yellow); }
.topbar-left span { margin-right: 20px; display: inline-flex; align-items: center; gap: 5px; }
.topbar-left i { color: var(--yellow); display: inline-flex; align-items: center; font-style: normal; }
.topbar-left i svg { display: block; }
.footer-brand .addr { display: flex; align-items: start; gap: 6px; }
.footer-brand .addr i { display: inline-flex; flex-shrink: 0; margin-top: 2px; }
.topbar-right a { margin-left: 16px; }

/* ============ HEADER ============ */
.header {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container { display: flex; align-items: center; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 4px;
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1.05;
}
.logo-text .brand { font-weight: 800; font-size: 18px; color: var(--ink); letter-spacing: -.3px; }
.logo-text .tag { font-size: 10.5px; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; font-weight: 500; }

/* Search */
.search {
  flex: 1;
  position: relative;
  max-width: 640px;
}
.search-inner {
  display: flex;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.search select {
  border: none;
  background: #fafafa;
  padding: 0 14px;
  font-size: 13px;
  color: var(--ink-2);
  border-right: 1px solid var(--border);
  max-width: 160px;
  cursor: pointer;
  outline: none;
}
.search input {
  flex: 1;
  border: none;
  padding: 11px 14px;
  font-size: 14px;
  outline: none;
}
.search button {
  background: var(--red);
  color: #fff;
  padding: 0 22px;
  font-weight: 600;
  font-size: 14px;
  transition: background .15s;
}
.search button:hover { background: var(--red-dark); }

.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 420px;
  overflow-y: auto;
  z-index: 200;
  display: none;
}
.search-results.show { display: block; }
.search-result {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.search-result:hover { background: var(--bg-soft); }
.search-result .emoji { font-size: 24px; }
.search-result .meta { flex: 1; }
.search-result .meta .name { font-weight: 500; font-size: 13px; }
.search-result .meta .sku { font-size: 11px; color: var(--muted); }
.search-result .price { color: var(--red); font-weight: 700; font-size: 13px; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-action {
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 12px;
  color: var(--ink-2);
  transition: color .15s;
  position: relative;
  font-size: 11px;
  line-height: 1.2;
}
.header-action:hover { color: var(--red); }
.header-action .ic { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 2px; }
.header-action .ic svg { display: block; }
.header-action .label { font-size: 11px; font-weight: 500; }
.cart-badge {
  position: absolute;
  top: 2px; right: 4px;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  min-width: 18px; height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

/* ============ CATEGORY NAV ============ */
.catnav {
  background: var(--red);
  color: #fff;
}
.catnav .container { display: flex; align-items: center; gap: 4px; }
.catnav a {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  transition: background .15s;
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.catnav a:hover { background: var(--red-dark); }
.catnav a.active { background: var(--red-dark); }
.catnav-all {
  background: var(--red-dark);
  font-weight: 600 !important;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #DC1E2A 0%, #8B0C14 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
  border-radius: 50%;
}
.hero .container { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: .5px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--yellow); }
.hero p {
  font-size: 16px;
  opacity: .95;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: transform .12s, box-shadow .15s, background .15s, color .15s;
  cursor: pointer;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(255,193,7,.4); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
}
.btn-ghost:hover { background: #fff; color: var(--red); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-outline-red {
  border: 2px solid var(--red);
  color: var(--red);
  background: #fff;
}
.btn-outline-red:hover { background: var(--red); color: #fff; }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
  width: 100%;
  max-width: 360px;
  transform: rotate(-2deg);
  text-decoration: none;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-card:hover {
  transform: rotate(-2deg) translateY(-4px);
  box-shadow: 0 30px 70px rgba(0,0,0,.3);
}
.hero-card .hc-img {
  width: 100%;
  height: 200px;
  background: #f7f7f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
}
.hero-card .hc-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity .45s ease, transform .45s ease;
}
.hero-card.fading .hc-img img,
.hero-card.fading .hc-title,
.hero-card.fading .hc-sub,
.hero-card.fading .hc-price { opacity: 0; }
.hero-card .hc-img img,
.hero-card .hc-title,
.hero-card .hc-sub,
.hero-card .hc-price { transition: opacity .35s ease; }
.hero-card .emoji-big { font-size: 72px; text-align: center; }
.hero-card .hc-title { font-weight: 700; font-size: 15px; text-align: center; margin-bottom: 4px; min-height: 38px; line-height: 1.3; color: var(--ink); }
.hero-card .hc-sub { color: var(--muted); font-size: 12px; text-align: center; margin-bottom: 14px; min-height: 16px; }
.hero-card .hc-price { text-align: center; font-size: 22px; font-weight: 800; color: var(--red); }
.hero-card .hc-mrp { text-decoration: line-through; color: var(--muted); font-weight: 400; font-size: 14px; margin-left: 6px; }
.hero-card .hc-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px;
  letter-spacing: .5px;
}

/* ============ PROMISES ============ */
.promises {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.promises .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.promise { display: flex; align-items: center; gap: 12px; }
.promise .ic {
  width: 44px; height: 44px;
  background: var(--red-light); color: var(--red);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.promise .tx h4 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.promise .tx p  { font-size: 11.5px; color: var(--muted); }

/* ============ SECTIONS ============ */
.section { padding: 50px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.5px;
  position: relative;
  padding-left: 14px;
}
.section-head h2::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 4px;
  background: var(--red);
  border-radius: 2px;
}
.section-head .sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
.section-head a.view-all {
  color: var(--red);
  font-weight: 600;
  font-size: 13px;
}
.section-head a.view-all:hover { text-decoration: underline; }

.section-soft { background: var(--bg-soft); }

/* ============ CATEGORY TILES ============ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 14px;
  text-align: center;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}
.cat-tile .ic {
  font-size: 36px;
  margin-bottom: 10px;
  width: 64px; height: 64px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.cat-tile:hover .ic { background: var(--red); color: #fff; transform: scale(1.06); }
.cat-tile .ic svg { width: 30px; height: 30px; display: block; }
/* Emoji fallback: if no SVG, scale down so it doesn't overflow the circle */
.cat-tile .ic:not(:has(svg)) { font-size: 30px; }

/* Catnav: put SVG beside label inline */
.catnav a { display: inline-flex; align-items: center; gap: 7px; }
.catnav-ic { display: inline-flex; align-items: center; opacity: .95; }
.catnav-ic svg { display: block; }

/* Shop sidebar filter: icon beside label */
.shop-sidebar label { display: flex; align-items: center; gap: 6px; }
.filter-ic { display: inline-flex; align-items: center; color: var(--red); width: 16px; }
.filter-ic svg { display: block; }
.cat-tile .name { font-weight: 600; font-size: 13px; color: var(--ink); }
.cat-tile .count { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ============ PRODUCT GRID ============ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.prod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.prod-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.prod-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: .3px;
}
.prod-badge.brand { background: var(--ink); }
.prod-img {
  background: var(--bg-soft);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
}
.prod-img::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(220,30,42,.08), transparent 60%);
}
.prod-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-brand {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 4px;
}
.prod-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}
.prod-sku { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.prod-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; margin-bottom: 10px; }
.prod-price { font-size: 18px; font-weight: 800; color: var(--ink); }
.prod-mrp { font-size: 12px; text-decoration: line-through; color: var(--muted); }
.prod-off { font-size: 11px; color: var(--green); font-weight: 700; }
.prod-add {
  width: 100%;
  background: var(--red);
  color: #fff;
  padding: 9px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  transition: background .15s;
}
.prod-add:hover { background: var(--red-dark); }
.prod-add.added { background: var(--green); }

.prod-stock { font-size: 11px; color: var(--green); font-weight: 600; margin-bottom: 6px; }
.prod-stock.low { color: #e08b00; }
.prod-stock.out { color: #c00; }

/* ============ BANNER / CTA STRIP ============ */
.cta-strip {
  background: linear-gradient(135deg, #1A1A1A, #333);
  color: #fff;
  padding: 40px 0;
}
.cta-strip .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
.cta-strip h3 { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.cta-strip p { opacity: .85; font-size: 14px; }

/* ============ SHOP PAGE ============ */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  margin-top: 30px;
}
.shop-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  align-self: start;
  position: sticky;
  top: 90px;
}
.filter-group { margin-bottom: 22px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
  color: var(--ink-2);
}
.filter-group label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  margin-bottom: 8px;
  cursor: pointer;
  color: var(--ink-2);
}
.filter-group input[type="checkbox"] {
  accent-color: var(--red);
  width: 16px; height: 16px;
}
.filter-group label .count { margin-left: auto; color: var(--muted); font-size: 11px; }

.shop-main { min-width: 0; }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 18px;
}
.shop-toolbar .count { font-size: 13px; color: var(--muted); }
.shop-toolbar select {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 13px;
  outline: none;
}

.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin: 18px 0 4px;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 6px; }

/* ============ PRODUCT DETAIL ============ */
.pd {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  margin: 30px 0;
}
.pd-gallery {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
  min-height: 440px;
  font-size: 220px;
}
.pd-info h1 { font-size: 26px; font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.pd-meta { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.pd-meta span { margin-right: 14px; }
.pd-meta b { color: var(--ink-2); }
.pd-price-box {
  background: var(--bg-soft);
  border-left: 4px solid var(--red);
  padding: 16px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.pd-price { font-size: 32px; font-weight: 800; color: var(--red); }
.pd-mrp { text-decoration: line-through; color: var(--muted); margin-left: 10px; font-weight: 500; font-size: 16px; }
.pd-off { background: var(--green); color: #fff; font-weight: 700; padding: 2px 8px; border-radius: 4px; font-size: 12px; margin-left: 8px; vertical-align: middle; }
.pd-tax { font-size: 11.5px; color: var(--muted); margin-top: 4px; }

.pd-qty-row { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; }
.pd-qty {
  display: flex; align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pd-qty button { padding: 10px 14px; font-size: 16px; font-weight: 700; background: #fafafa; }
.pd-qty button:hover { background: #efefef; }
.pd-qty input {
  width: 54px; text-align: center;
  border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  padding: 10px 0;
  font-size: 14px; font-weight: 600;
  outline: none;
}
.pd-actions { display: flex; gap: 10px; margin-bottom: 24px; }
.pd-actions .btn { flex: 1; padding: 14px 20px; font-size: 14px; justify-content: center; }
.pd-desc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 18px;
}
.pd-desc h3 { font-size: 15px; margin-bottom: 8px; font-weight: 700; }
.pd-desc p { color: var(--ink-2); font-size: 13px; line-height: 1.6; }

.pd-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 14px; }
.pd-feat {
  display: flex; align-items: start; gap: 8px;
  padding: 8px 12px;
  background: var(--bg-soft);
  border-radius: 6px;
  font-size: 12.5px;
}
.pd-feat .ic { color: var(--green); flex-shrink: 0; }

/* ============ CART ============ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  margin: 24px 0 60px;
}
.cart-main { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.cart-items { padding: 0; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item .emoji {
  width: 80px; height: 80px;
  background: var(--bg-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.cart-item .cname { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.cart-item .csku { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.cart-item .cprice { font-size: 13px; color: var(--red); font-weight: 700; }
.cart-item .cctrls { display: flex; flex-direction: column; align-items: end; gap: 8px; }
.cart-item .cctrls .rm { color: var(--muted); font-size: 12px; }
.cart-item .cctrls .rm:hover { color: var(--red); }
.cart-summary {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px;
  align-self: start; position: sticky; top: 90px;
}
.cart-summary h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.cart-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
.cart-row.total { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 16px; font-weight: 800; }
.cart-row.total .amt { color: var(--red); }

.empty-cart {
  padding: 60px 20px; text-align: center;
}
.empty-cart .emoji { font-size: 70px; margin-bottom: 12px; }
.empty-cart h3 { font-size: 18px; margin-bottom: 6px; }
.empty-cart p { color: var(--muted); margin-bottom: 20px; font-size: 13px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  color: #bbb;
  padding: 50px 0 0;
  margin-top: 60px;
}
.footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-text .brand { color: #fff; }
.footer-brand .logo-text .tag { color: #888; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 14px; }
.footer-brand .addr { font-size: 12.5px; color: #999; margin-top: 14px; }
.footer-brand .addr i { color: var(--red); margin-right: 6px; }
.footer h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: 13px; color: #aaa; transition: color .15s; }
.footer ul a:hover { color: var(--red); }
.footer-contact li { display: flex; gap: 8px; align-items: start; font-size: 13px; color: #aaa; margin-bottom: 10px; }
.footer-contact .ic { color: var(--red); margin-top: 1px; display: inline-flex; flex-shrink: 0; }
.footer-contact .ic svg { display: block; }
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding: 18px 0;
  font-size: 12px;
  color: #777;
  text-align: center;
}
.footer-bottom .container { display: flex; justify-content: space-between; grid-template-columns: none; }

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: var(--radius);
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0; transform: translateY(20px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: var(--green); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .footer .container { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 220px 1fr; }
  .pd { grid-template-columns: 1fr; }
  .pd-gallery { min-height: 300px; font-size: 150px; }
}
@media (max-width: 768px) {
  .header .container { flex-wrap: wrap; }
  .search { order: 3; width: 100%; max-width: none; flex: auto; margin-top: 10px; }
  .topbar-left span.hide-sm { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero-visual { display: none; }
  .promises .container { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout, .cart-layout { grid-template-columns: 1fr; }
  .shop-sidebar, .cart-summary { position: static; }
  .cta-strip .container { grid-template-columns: 1fr; text-align: center; }
  .catnav .container { overflow-x: auto; scrollbar-width: none; }
  .catnav .container::-webkit-scrollbar { display: none; }
  .footer .container { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom .container { flex-direction: column; gap: 6px; }
  .header-action .label { display: none; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ CONTENT PAGES (About, Why Us, B2B, Contact, Shipping) ============ */
.page-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2d0509 100%);
  color: #fff;
  padding: 60px 0 50px;
  border-bottom: 4px solid var(--red);
}
.page-hero .eyebrow {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 820px;
}
.page-hero h1 .accent { color: var(--red); }
.page-hero p.lede {
  font-size: 17px;
  color: #ccc;
  max-width: 720px;
  line-height: 1.6;
}
.content-page { padding: 48px 0 60px; }
.content-page .wrap {
  max-width: 880px;
  margin: 0 auto;
}
.content-page h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 36px 0 16px;
  letter-spacing: -0.3px;
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 10px;
}
.content-page p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.content-page ul, .content-page ol {
  margin: 10px 0 18px 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
}
.content-page ul li, .content-page ol li { margin-bottom: 6px; }
.content-page .callout {
  background: var(--red-light);
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  border-radius: 6px;
  margin: 20px 0;
  font-size: 14.5px;
  color: var(--ink-2);
}

/* Stat cards (About / Why Us) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-card .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .lbl {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Feature cards (Why Us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color .15s, transform .15s;
}
.feature-card:hover { border-color: var(--red); transform: translateY(-2px); }
.feature-card .ic {
  margin-bottom: 12px;
  width: 52px; height: 52px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.feature-card:hover .ic { background: var(--red); color: #fff; transform: rotate(-4deg) scale(1.05); }
.feature-card .ic svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 8px 0 6px;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Contact / B2B layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
.contact-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-line {
  display: flex;
  gap: 14px;
  align-items: start;
  padding: 14px;
  background: var(--bg-soft);
  border-radius: 8px;
  margin-bottom: 10px;
}
.contact-line .ic {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--red);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-line .ic svg { width: 20px; height: 20px; }
.promise .ic svg { width: 22px; height: 22px; }
.contact-line .txt { flex: 1; font-size: 14px; }
.contact-line .txt b { display: block; margin-bottom: 2px; font-weight: 600; }
.contact-line .txt span { color: var(--muted); font-size: 13px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-form h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-form .fg { margin-bottom: 12px; }
.contact-form label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  display: block;
  margin-bottom: 5px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--red);
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  justify-content: center;
  margin-top: 6px;
}

.map-embed {
  width: 100%;
  height: 320px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 24px;
}

/* Table (shipping, FAQ, etc.) */
.content-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: 14px;
}
.content-page th, .content-page td {
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--border);
}
.content-page th {
  background: var(--bg-soft);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 820px) {
  .page-hero { padding: 44px 0 36px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero p.lede { font-size: 15px; }
  .content-page h2 { font-size: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
}
