/* ================================================================
   SHOPIZ PREMIUM THEME — Header + Homepage + Product Cards
   Daraz / Noon / Alibaba Quality
   Version: 4.0.0
   ================================================================ */

/* ── TOKENS ── */
:root {
  --sz-orange:        #f57224;
  --sz-orange-dark:   #d4611a;
  --sz-orange-light:  #fff3eb;
  --sz-green:         #006b3f;
  --sz-green-dark:    #004f2e;
  --sz-green-light:   #ecfdf5;
  --sz-dark:          #0f172a;
  --sz-text:          #1e293b;
  --sz-muted:         #64748b;
  --sz-border:        #e2e8f0;
  --sz-bg:            #f5f7fb;
  --sz-white:         #ffffff;
  --sz-card-shadow:   0 4px 16px rgba(15,23,42,.08);
  --sz-card-shadow-hover: 0 12px 40px rgba(15,23,42,.15);
  --sz-radius:        16px;
  --sz-radius-sm:     10px;
  --sz-radius-lg:     24px;
  --sz-header-h:      60px;
  --sz-topbar-h:      36px;
  --sz-navrow-h:      44px;
  --sz-transition:    0.18s ease;
}

/* ── RESET / BASE ── */
.sz-home *, .sz-header *, .sz-market-header *,
.sz-topbar *, .sz-mainbar *, .sz-navrow *,
.sz-mobile-drawer * { box-sizing: border-box; }

/* ── WRAP ── */
.sz-wrap { width: min(1260px, calc(100% - 32px)); margin-left: auto; margin-right: auto; }

/* ================================================================
   HEADER
   ================================================================ */

.sz-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--sz-white);
  box-shadow: 0 2px 12px rgba(15,23,42,.10);
}

/* ── Top Bar ── */
.sz-topbar {
  background: var(--sz-dark);
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 500;
  height: var(--sz-topbar-h);
}
.sz-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.sz-topbar-left, .sz-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sz-topbar a {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--sz-transition);
}
.sz-topbar a:hover { color: #fff; }
.sz-topbar-divider { width: 1px; height: 14px; background: #334155; }
.sz-topbar-cod { color: #6ee7b7; font-weight: 700; }
.sz-topbar-sell {
  color: var(--sz-orange) !important;
  font-weight: 700;
}
.sz-topbar-sell:hover { color: #fbbf24 !important; }

/* ── Main Bar ── */
.sz-mainbar {
  background: var(--sz-white);
  border-bottom: 1px solid var(--sz-border);
  height: var(--sz-header-h);
}
.sz-mainbar-inner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 20px;
  height: 100%;
}

/* Logo */
.sz-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.sz-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sz-orange), #f59e0b);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.sz-logo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--sz-dark);
  letter-spacing: -.03em;
}
.sz-logo-img { max-height: 38px; width: auto; }

/* Search */
.sz-search { flex: 1; }
.sz-search-inner {
  display: flex;
  align-items: center;
  border: 2px solid var(--sz-orange);
  border-radius: 999px;
  overflow: hidden;
  background: var(--sz-white);
  transition: box-shadow var(--sz-transition);
}
.sz-search-inner:focus-within {
  box-shadow: 0 0 0 3px rgba(245,114,36,.18);
}
.sz-search-cat {
  border: 0;
  border-right: 1px solid #fed7aa;
  background: var(--sz-orange-light);
  color: var(--sz-text);
  font-weight: 700;
  font-size: 13px;
  padding: 0 14px;
  height: 44px;
  outline: 0;
  cursor: pointer;
  flex-shrink: 0;
  max-width: 150px;
}
.sz-search-divider { display: none; }
.sz-search-input {
  border: 0;
  outline: 0;
  flex: 1;
  padding: 0 16px;
  height: 44px;
  font: inherit;
  font-size: 14px;
  min-width: 0;
  color: var(--sz-text);
}
.sz-search-input::placeholder { color: #94a3b8; }
.sz-search-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: var(--sz-orange);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 0 22px;
  height: 44px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--sz-transition);
}
.sz-search-btn:hover { background: var(--sz-orange-dark); }

/* Header Actions */
.sz-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.sz-hdr-action {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--sz-radius-sm);
  text-decoration: none;
  color: var(--sz-text);
  transition: background var(--sz-transition), color var(--sz-transition);
  white-space: nowrap;
}
.sz-hdr-action:hover { background: var(--sz-orange-light); color: var(--sz-orange); }
.sz-hdr-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sz-text);
  flex-shrink: 0;
}
.sz-hdr-label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--sz-muted);
}
.sz-hdr-label strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--sz-text);
}
.sz-cart-icon-wrap { position: relative; }
.sz-cart-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--sz-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--sz-white);
}
.sz-hdr-cart .sz-hdr-label strong { color: var(--sz-orange); }

/* Mobile Menu Toggle */
.sz-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius-sm);
  background: var(--sz-white);
  cursor: pointer;
  flex-shrink: 0;
}
.sz-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--sz-text);
  border-radius: 2px;
  transition: transform var(--sz-transition);
}

/* ── Nav Row ── */
.sz-navrow {
  background: var(--sz-white);
  border-top: 1px solid #f1f5f9;
  height: var(--sz-navrow-h);
  overflow: hidden;
}
.sz-navrow-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.sz-navrow-all {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  height: 100%;
  background: var(--sz-orange);
  color: #fff !important;
  font-weight: 800;
  font-size: 13.5px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--sz-transition);
}
.sz-navrow-all:hover { background: var(--sz-orange-dark); color: #fff !important; }
.sz-navrow-cats {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
  height: 100%;
}
.sz-navrow-cat {
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 100%;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sz-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--sz-transition), background var(--sz-transition);
  border-right: 1px solid #f1f5f9;
}
.sz-navrow-cat:hover { color: var(--sz-orange); background: var(--sz-orange-light); }
.sz-navrow-sale { color: #dc2626 !important; font-weight: 800; }
.sz-navrow-sale:hover { background: #fef2f2 !important; }

/* ── Header Spacer ── */
.sz-header-spacer {
  height: calc(var(--sz-topbar-h) + var(--sz-header-h) + var(--sz-navrow-h));
}

/* ================================================================
   MOBILE DRAWER
   ================================================================ */
.sz-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
}
.sz-mobile-drawer[hidden] { display: none; }
.sz-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.6);
  backdrop-filter: blur(2px);
}
.sz-mobile-panel {
  position: relative;
  width: min(340px, 90vw);
  background: var(--sz-white);
  height: 100%;
  overflow-y: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 40px rgba(15,23,42,.2);
}
.sz-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--sz-border);
  position: sticky;
  top: 0;
  background: var(--sz-white);
  z-index: 1;
}
.sz-mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  color: var(--sz-dark);
}
.sz-mobile-close {
  border: 0;
  background: #f1f5f9;
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--sz-text);
}
.sz-mobile-auth {
  padding: 16px 20px;
  border-bottom: 1px solid var(--sz-border);
  background: var(--sz-orange-light);
}
.sz-mobile-auth-btn {
  display: block;
  text-align: center;
  background: var(--sz-orange);
  color: #fff;
  font-weight: 800;
  padding: 12px;
  border-radius: var(--sz-radius-sm);
  text-decoration: none;
}
.sz-mobile-greeting { font-weight: 700; color: var(--sz-orange-dark); }
.sz-mobile-search {
  padding: 12px 20px;
  border-bottom: 1px solid var(--sz-border);
}
.sz-mobile-search form {
  display: flex;
  border: 1.5px solid var(--sz-border);
  border-radius: 999px;
  overflow: hidden;
}
.sz-mobile-search input {
  border: 0; outline: 0;
  flex: 1;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  min-width: 0;
}
.sz-mobile-search button {
  border: 0;
  background: var(--sz-orange);
  color: #fff;
  width: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sz-mobile-section {
  padding: 16px 20px;
  border-bottom: 1px solid var(--sz-border);
}
.sz-mobile-section h3 {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sz-muted);
}
.sz-mobile-section a {
  display: block;
  padding: 9px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--sz-text);
  text-decoration: none;
  border-bottom: 1px solid #f8fafc;
  transition: color var(--sz-transition);
}
.sz-mobile-section a:last-child { border-bottom: 0; }
.sz-mobile-section a:hover { color: var(--sz-orange); }
.sz-mobile-signout {
  color: #dc2626 !important;
  font-weight: 700;
}

/* ================================================================
   HOMEPAGE
   ================================================================ */
.sz-home { background: var(--sz-bg); }

/* ── Hero Section ── */
.sz-hero-section {
  background: linear-gradient(180deg, #fff7ed 0%, var(--sz-bg) 100%);
  padding: 22px 0 0;
}
.sz-hero-grid {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 16px;
  align-items: stretch;
}

/* Category Sidebar */
.sz-cat-sidebar {
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  overflow: hidden;
  box-shadow: var(--sz-card-shadow);
}
.sz-cat-sidebar-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  font-weight: 900;
  font-size: 14px;
  color: var(--sz-dark);
  background: var(--sz-orange-light);
  border-bottom: 1px solid var(--sz-border);
}
.sz-cat-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 420px;
  overflow-y: auto;
}
.sz-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sz-text);
  text-decoration: none;
  transition: background var(--sz-transition), color var(--sz-transition);
}
.sz-cat-item:hover { background: var(--sz-orange-light); color: var(--sz-orange); }
.sz-cat-icon { font-size: 18px; flex-shrink: 0; width: 24px; text-align: center; }
.sz-cat-name { flex: 1; }
.sz-cat-arrow { margin-left: auto; color: var(--sz-muted); flex-shrink: 0; }
.sz-cat-all-link { border-top: 1px solid var(--sz-border); margin-top: 4px; font-weight: 800; color: var(--sz-green); }
.sz-cat-all-link:hover { background: var(--sz-green-light); color: var(--sz-green); }

/* Hero Main Banner */
.sz-hero-main { overflow: hidden; border-radius: var(--sz-radius-lg); }
.sz-hero-banner {
  position: relative;
  background: radial-gradient(circle at 90% 20%, rgba(245,114,36,.25), transparent 40%),
              linear-gradient(135deg, #06341f 0%, #006b3f 55%, #0a7a4f 100%);
  border-radius: var(--sz-radius-lg);
  padding: 44px 48px;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,107,63,.25);
}
.sz-hero-content { position: relative; z-index: 2; flex: 1; }
.sz-hero-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fed7aa;
  margin-bottom: 14px;
}
.sz-hero-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
  color: #fff;
  margin: 0 0 18px;
}
.sz-hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
  max-width: 480px;
  margin: 0 0 28px;
}
.sz-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.sz-hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6ee7b7;
  font-weight: 700;
}

/* Hero Visual */
.sz-hero-visual {
  position: absolute;
  right: -20px; top: 0; bottom: 0;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sz-hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: .25;
}
.sz-hero-blob-1 {
  width: 300px; height: 300px;
  background: var(--sz-orange);
  top: -60px; right: -60px;
}
.sz-hero-blob-2 {
  width: 200px; height: 200px;
  background: #fbbf24;
  bottom: -40px; right: 20px;
}
.sz-hero-floating-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 220px;
}
.sz-floating-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 16px;
  color: #fff;
}
.sz-floating-card > span { font-size: 28px; flex-shrink: 0; }
.sz-floating-card div { display: flex; flex-direction: column; }
.sz-floating-card strong { font-size: 13px; font-weight: 800; }
.sz-floating-card span:not(:first-child) { font-size: 11.5px; opacity: .8; margin-top: 2px; }

/* Promo Stack */
.sz-hero-promo-stack { display: flex; flex-direction: column; gap: 14px; }
.sz-promo-card {
  position: relative;
  flex: 1;
  border-radius: var(--sz-radius);
  padding: 20px;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--sz-transition), box-shadow var(--sz-transition);
  box-shadow: var(--sz-card-shadow);
}
.sz-promo-card:hover { transform: translateY(-2px); box-shadow: var(--sz-card-shadow-hover); }
.sz-promo-orange { background: linear-gradient(135deg, var(--sz-orange), #f59e0b); color: #fff; }
.sz-promo-green  { background: linear-gradient(135deg, var(--sz-green), #0f766e); color: #fff; }
.sz-promo-dark   { background: linear-gradient(135deg, #1e293b, #334155); color: #fff; }
.sz-promo-tag {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 8px;
  width: fit-content;
}
.sz-promo-card strong { font-size: 17px; font-weight: 900; display: block; margin-bottom: 5px; }
.sz-promo-card span { font-size: 12.5px; opacity: .9; line-height: 1.4; flex: 1; }
.sz-promo-arrow { margin-top: 12px; font-size: 18px; font-weight: 900; }

/* ── Service Bar ── */
.sz-service-bar {
  background: var(--sz-white);
  border-top: 1px solid var(--sz-border);
  border-bottom: 1px solid var(--sz-border);
  padding: 16px 0;
  margin-top: 16px;
}
.sz-service-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sz-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 160px;
}
.sz-service-icon { font-size: 28px; flex-shrink: 0; }
.sz-service-item strong { display: block; font-size: 13.5px; font-weight: 800; color: var(--sz-dark); }
.sz-service-item span { display: block; font-size: 12px; color: var(--sz-muted); }

/* ── Section Shared ── */
.sz-home-section { padding: 40px 0; }
.sz-home-section + .sz-home-section { padding-top: 0; }
.sz-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.sz-section-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--sz-dark);
}
.sz-section-kicker {
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sz-orange);
  margin-bottom: 4px;
}
.sz-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--sz-orange);
  text-decoration: none;
  flex-shrink: 0;
  padding: 8px 16px;
  border: 1.5px solid var(--sz-orange);
  border-radius: 999px;
  transition: background var(--sz-transition), color var(--sz-transition);
}
.sz-view-all:hover { background: var(--sz-orange); color: #fff; }

/* Flash Head */
.sz-flash-head { align-items: center; }
.sz-flash-title { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.sz-flash-badge {
  background: #dc2626;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 999px;
  animation: sz-pulse 1.8s infinite;
}
@keyframes sz-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .75; }
}

/* ── Category Tiles ── */
.sz-cat-section { background: var(--sz-white); }
.sz-cat-tiles {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.sz-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  text-decoration: none;
  transition: border-color var(--sz-transition), transform var(--sz-transition), box-shadow var(--sz-transition);
  text-align: center;
}
.sz-cat-tile:hover {
  border-color: var(--sz-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,114,36,.14);
}
.sz-cat-tile-img {
  width: 64px; height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sz-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sz-cat-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.sz-cat-tile-icon { font-size: 32px; line-height: 1; }
.sz-cat-tile-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--sz-text);
  line-height: 1.3;
}
.sz-cat-tile:hover .sz-cat-tile-name { color: var(--sz-orange); }

/* ── Product Grid ── */
.sz-products-section { background: var(--sz-bg); }
.sz-flash-section, .sz-bestseller-section { background: var(--sz-white); }

.sz-product-grid { display: grid; gap: 16px; }
.sz-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Product Card ── */
.sz-product-card {
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sz-card-shadow);
  transition: border-color var(--sz-transition), transform var(--sz-transition), box-shadow var(--sz-transition);
  position: relative;
}
.sz-product-card:hover {
  border-color: var(--sz-orange);
  transform: translateY(-3px);
  box-shadow: var(--sz-card-shadow-hover);
}
.sz-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.sz-card-img-wrap {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.sz-card-img-wrap .sz-card-img,
.sz-card-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 10px;
  transition: transform .3s ease;
}
.sz-product-card:hover .sz-card-img-wrap img { transform: scale(1.04); }
.sz-card-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
}
.sz-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 999px;
  z-index: 1;
}
.sz-badge-sale { background: #dc2626; color: #fff; }
.sz-badge-featured { background: var(--sz-orange); color: #fff; }
.sz-card-rank {
  position: absolute;
  top: 10px; left: 10px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sz-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sz-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.sz-card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sz-text);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}
.sz-product-card:hover .sz-card-title { color: var(--sz-orange); }
.sz-card-price { font-size: 16px; font-weight: 900; color: #dc2626; }
.sz-card-price del { font-size: 13px; color: var(--sz-muted); font-weight: 500; }
.sz-card-price ins { text-decoration: none; }
.sz-card-price .woocommerce-Price-amount { color: inherit; }
.sz-card-price .woocommerce-Price-amount bdi { font-size: inherit; font-weight: inherit; }
.sz-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.sz-card-rating { font-size: 12px; color: #f59e0b; font-weight: 700; }
.sz-card-seller { font-size: 11.5px; color: var(--sz-muted); }
.sz-card-cod-tag {
  font-size: 10px;
  font-weight: 900;
  background: var(--sz-green-light);
  color: var(--sz-green);
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid #bbf7d0;
}
.sz-card-delivery {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--sz-green);
  font-weight: 700;
  margin-top: 4px;
}
.sz-card-actions {
  padding: 0 14px 14px;
}
.sz-card-atc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  border-radius: var(--sz-radius-sm);
  background: var(--sz-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background var(--sz-transition);
}
.sz-card-atc:hover { background: var(--sz-orange-dark); color: #fff; }
.sz-card-view {
  background: var(--sz-white);
  color: var(--sz-orange);
  border: 1.5px solid var(--sz-orange);
}
.sz-card-view:hover { background: var(--sz-orange); color: #fff; }

/* ── Trust Section ── */
.sz-trust-section {
  background: var(--sz-dark);
  padding: 60px 0;
  margin-top: 40px;
}
.sz-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sz-trust-content .sz-section-kicker { color: var(--sz-orange); }
.sz-trust-content h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: #fff;
  margin: 8px 0 16px;
  letter-spacing: -.03em;
}
.sz-trust-content p { color: #94a3b8; font-size: 16px; line-height: 1.7; margin: 0 0 24px; }
.sz-trust-points { display: grid; gap: 10px; margin-bottom: 28px; }
.sz-trust-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #cbd5e1;
  font-weight: 600;
}
.sz-trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--sz-green);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}
.sz-trust-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sz-trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sz-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--sz-radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color var(--sz-transition);
}
.sz-stat-card:hover { border-color: var(--sz-orange); }
.sz-stat-card strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.sz-stat-card span {
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
}

/* ── Empty State ── */
.sz-empty-state {
  text-align: center;
  padding: 80px 20px;
}
.sz-empty-icon { font-size: 64px; margin-bottom: 20px; }
.sz-empty-state h2 { font-size: 28px; font-weight: 900; color: var(--sz-dark); margin: 0 0 12px; }
.sz-empty-state p { color: var(--sz-muted); font-size: 16px; margin: 0 0 28px; }

/* ── BUTTONS ── */
.sz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--sz-transition);
  white-space: nowrap;
}
.sz-btn-orange { background: var(--sz-orange); color: #fff; border-color: var(--sz-orange); }
.sz-btn-orange:hover { background: var(--sz-orange-dark); border-color: var(--sz-orange-dark); color: #fff; }
.sz-btn-white { background: #fff; color: var(--sz-dark); border-color: #fff; }
.sz-btn-white:hover { background: var(--sz-orange-light); color: var(--sz-orange); border-color: var(--sz-orange); }
.sz-btn-outline { background: transparent; color: var(--sz-orange); border-color: var(--sz-orange); }
.sz-btn-outline:hover { background: var(--sz-orange); color: #fff; }
.sz-btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.sz-btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .sz-hero-grid { grid-template-columns: 220px 1fr; }
  .sz-hero-promo-stack { display: none; }
  .sz-hero-visual { display: none; }
  .sz-hero-banner { min-height: 360px; padding: 36px; }
  .sz-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .sz-cat-tiles { grid-template-columns: repeat(6, 1fr); }
  .sz-trust-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  :root {
    --sz-topbar-h: 0px;
  }
  .sz-topbar { display: none; }
  .sz-mainbar-inner { grid-template-columns: auto 1fr auto; }
  .sz-hdr-seller, .sz-hdr-account { display: none; }
  .sz-menu-toggle { display: flex; }
  .sz-navrow { display: none; }
  .sz-header-spacer {
    height: calc(var(--sz-header-h) + 1px);
  }
  .sz-hero-grid { grid-template-columns: 1fr; }
  .sz-cat-sidebar { display: none; }
  .sz-hero-banner { min-height: 280px; padding: 28px; }
  .sz-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sz-cat-tiles { grid-template-columns: repeat(4, 1fr); }
  .sz-service-bar-inner { gap: 14px; }
  .sz-service-item { min-width: 140px; }
}

@media (max-width: 580px) {
  .sz-mainbar-inner { gap: 12px; }
  .sz-search-cat { display: none; }
  .sz-search-inner { border-radius: 12px; }
  .sz-hero-title { font-size: 30px; }
  .sz-hero-sub { font-size: 14px; }
  .sz-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sz-cat-tiles { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .sz-home-section { padding: 28px 0; }
  .sz-service-bar-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .sz-trust-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .sz-cat-tiles { grid-template-columns: repeat(2, 1fr); }
}
