/* ══════════════════════════════════════════════════════════════════════════
   ShopWave — Modern Ecommerce UI  2025
   ══════════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --primary: #0261A1;
  --primary-dark: #014f82;
  --primary-light: #0275bb;
  --primary-05: rgba(2, 97, 161, .05);
  --primary-10: rgba(2, 97, 161, .10);
  --primary-15: rgba(2, 97, 161, .15);

  /* Status */
  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;
  --accent: #ef4444;

  /* Neutral scale */
  --n-50: #f9fafb;
  --n-100: #f3f4f6;
  --n-200: #e5e7eb;
  --n-300: #d1d5db;
  --n-400: #9ca3af;
  --n-500: #6b7280;
  --n-700: #374151;
  --n-800: #1f2937;
  --n-900: #111827;

  /* Semantic */
  --bg: #f5f7fa;
  --surface: #ffffff;
  --border: #e4e9f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Radius */
  --r-xs: 6px;
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --radius: var(--r);
  /* compat */
  --radius-sm: var(--r-sm);
  /* compat */

  /* Shadow */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, .07);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow: 0 4px 20px rgba(0, 0, 0, .09);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .11);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .15);

  /* Transition */
  --ease: all .22s cubic-bezier(.4, 0, .2, 1);

  /* Card */
  --card: var(--surface);

  /* Legacy compat */
  --transition: var(--ease);
  --bg-card: var(--surface);
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
}

/* ─── Announcement Bar ───────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: .77rem;
  font-weight: 600;
  padding: 9px 16px;
  letter-spacing: .025em;
}

.announcement-bar strong {
  font-weight: 800;
}

.ann-sep {
  margin: 0 10px;
  opacity: .5;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04), var(--shadow-xs);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  /* max-width: 1320px; */
  /* margin: 0 auto; */
  /* display: grid; */
  /* grid-template-columns: auto 1fr auto; */
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  height: 62px;
}

.logo {
  font-size: 1.42rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(2, 97, 161, .3);
}

.logo-word {
  color: var(--n-900);
}

.logo-word span {
  color: var(--primary);
}

.search-wrap {
  display: flex;
  align-items: center;
  background: var(--n-100);
  border: 1.5px solid transparent;
  border-radius: 50px;
  padding: 0 16px;
  gap: 10px;
  transition: var(--ease);
  height: 40px;
  max-width: 540px;
  width: 100%;
  justify-self: center;
}

.search-wrap:focus-within {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 97, 161, .1);
}

.search-wrap svg {
  width: 17px;
  height: 17px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-wrap input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: .9rem;
  color: var(--text);
  padding: 6px 0;
}

.search-wrap input::placeholder {
  color: var(--text-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-actions-btn {
  display: none;
}

/* Small screen Side bar */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background: #fff;
  color: white;
  padding: 20px;
  transition: 0.3s;
}

.sidebar.active {
  left: 0;
}

.sidebar1 {
  position: fixed;
  /* display: none; */
  width: 0;
  background: #ffff;

  top: calc(100% - 0px);
  right: 0px;
  transition: 0.3s;
  overflow: hidden;
}

.sidebar1.active {
  right: 0;
  width: 75px;
  padding: 10px;
  box-shadow: 0px 0px 3px;
  border-radius: 5px;
  /* display: block; */
}

.nav-link-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: .67rem;
  font-weight: 600;
  transition: var(--ease);
  letter-spacing: .2px;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link-btn svg {
  width: 21px;
  height: 21px;
}

.nav-link-btn:hover {
  color: var(--primary);
  background: var(--primary-05);
}
.nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: .67rem;
  font-weight: 600;
  transition: var(--ease);
  letter-spacing: .2px;
  white-space: nowrap;
}

.nav-link svg {
  width: 21px;
  height: 21px;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-05);
}

.nav-link.active {
  color: var(--primary);
  background: var(--primary-10);
}

.badge-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-badge,
.wish-badge {
  position: absolute;
  top: -6px;
  right: -9px;
  background: var(--accent);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* ─── Pages ──────────────────────────────────────────────────────────────── */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ─── Hero Banner ────────────────────────────────────────────────────────── */
.hero-banner {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(2, 97, 161, .09) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 40%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(2, 97, 161, .06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hb-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 68px 28px 60px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-10);
  color: var(--primary);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(2, 97, 161, .14);
}

.hb-title {
  font-size: clamp(1.95rem, 3.8vw, 3.1rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--n-900);
  margin: 0 0 16px;
  letter-spacing: -.03em;
}

.hb-highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hb-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, rgba(2, 97, 161, .28), rgba(2, 97, 161, .08));
  border-radius: 4px;
  z-index: -1;
}

.hb-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin: 0 0 30px;
}

.hb-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hb-cta-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 4px 20px rgba(2, 97, 161, .35);
  letter-spacing: .01em;
}

.hb-cta-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(2, 97, 161, .45);
}

.hb-cta-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
}

.hb-cta-secondary:hover {
  background: var(--primary);
  color: #fff;
}

.hb-stats {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hb-stat {
  display: flex;
  flex-direction: column;
}

.hb-stat-num {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.03em;
  line-height: 1;
}

.hb-stat-label {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 3px;
}

.hb-stat-div {
  width: 1px;
  height: 34px;
  background: var(--border);
}

.hb-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hb-feat-card {
  background: var(--n-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: var(--ease);
}

.hb-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-15);
  background: #fff;
}

.hb-feat-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
}

.hb-feat-card strong {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.hb-feat-card small {
  font-size: .7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── Main Layout ────────────────────────────────────────────────────────── */
main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 28px;
}

/* ─── Section Headers ────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-label {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.section-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.025em;
}

.section-subtitle {
  font-size: .87rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── Category Bar ───────────────────────────────────────────────────────── */
.category-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cat-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: var(--ease);
  white-space: nowrap;
}

.cat-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-05);
}

.cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(2, 97, 161, .28);
}

/* ─── Product Grid ───────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
  gap: 18px;
}

/* ─── Product Card ───────────────────────────────────────────────────────── */
.product-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 97, 161, .18);
}

.card-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--n-100);
}

.card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  display: block;
}

.product-card:hover .card-img-box img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(2, 97, 161, .58));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  opacity: 0;
  transition: opacity .26s ease;
}

.product-card:hover .card-overlay {
  opacity: 1;
}

.quick-view-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(12px);
  transition: transform .26s ease, background .15s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .22);
  white-space: nowrap;
}

.product-card:hover .quick-view-btn {
  transform: translateY(0);
}

.quick-view-btn:hover {
  background: var(--primary);
  color: #fff;
}

.oos-ribbon {
  position: absolute;
  top: 12px;
  left: 0;
  background: var(--danger);
  color: #fff;
  font-size: .63rem;
  font-weight: 800;
  padding: 4px 12px 4px 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 0 20px 20px 0;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(220, 38, 38, .3);
}

.wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(6px);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--n-300);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  transition: var(--ease);
  z-index: 3;
}

.wish-btn:hover {
  color: #ef4444;
  transform: scale(1.12);
}

.wish-btn.active {
  color: #ef4444;
  background: #fff;
}

.card-body {
  padding: 13px 15px 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
}

.card-cat-tag {
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: .85;
}

.card-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -.01em;
}

.card-desc {
  font-size: .74rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  gap: 8px;
}

.card-price-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.card-price-block .price {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.01em;
}

.price {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.price-from {
  font-size: .76rem;
  color: var(--text-muted);
}

.orig-price {
  font-size: .8rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.var-badge {
  display: inline-block;
  font-size: .62rem;
  background: var(--primary-05);
  color: var(--primary);
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  margin-top: 3px;
}

.card-cart-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--ease);
  box-shadow: 0 4px 14px rgba(2, 97, 161, .28);
}

.card-cart-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(2, 97, 161, .42);
}

.card-cart-oos {
  background: var(--n-300);
  box-shadow: none;
  cursor: default;
}

.card-cart-oos:hover {
  background: var(--n-300);
  transform: none;
  box-shadow: none;
}

/* ─── Empty State ────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ─── Common Buttons ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--ease);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 11px 22px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--ease);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-primary-lg {
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: .97rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 4px 16px rgba(2, 97, 161, .28);
}

.btn-primary-lg:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline-sm {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
}

.btn-outline-sm:hover {
  background: var(--primary);
  color: #fff;
}

/* ─── Page Headers ───────────────────────────────────────────────────────── */
.page-header {
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -.025em;
}

.page-header p {
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── Cart Page ──────────────────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 24px;
  align-items: start;
}

.cart-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  transition: var(--ease);
}

.cart-item:hover {
  border-color: var(--primary-15);
  box-shadow: var(--shadow-sm);
}

.cart-item img {
  width: 76px;
  height: 76px;
  border-radius: var(--r);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h4 {
  font-size: .92rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.cart-item-price {
  font-size: .82rem;
  color: var(--text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--n-100);
  border-radius: 50px;
  padding: 4px 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--ease);
}

.qty-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.qty-val {
  font-weight: 700;
  min-width: 22px;
  text-align: center;
  font-size: .9rem;
}

.cart-item-total {
  font-weight: 800;
  color: var(--primary);
  font-size: .97rem;
  min-width: 80px;
  text-align: right;
}

.remove-btn {
  color: var(--n-300);
  transition: var(--ease);
  padding: 6px;
  border-radius: 8px;
}

.remove-btn:hover {
  color: #ef4444;
  background: #fef2f2;
}

.remove-btn svg {
  width: 18px;
  height: 18px;
}

.cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  position: sticky;
  top: 76px;
}

.cart-summary h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.free-shipping-msg {
  background: rgba(22, 163, 74, .08);
  color: var(--success);
  padding: 9px 13px;
  border-radius: var(--r-sm);
  font-size: .83rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.free-shipping-hint {
  background: rgba(217, 119, 6, .08);
  color: var(--warning);
  padding: 9px 13px;
  border-radius: var(--r-sm);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: .88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.summary-row.total {
  border-bottom: none;
  font-size: 1rem;
  color: var(--text);
  font-weight: 800;
  padding-top: 12px;
}

.btn-checkout {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 13px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  margin-top: 18px;
  transition: var(--ease);
  box-shadow: 0 4px 14px rgba(2, 97, 161, .28);
}

.btn-checkout:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ─── Wishlist ───────────────────────────────────────────────────────────── */
.wish-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px;
  margin-bottom: 10px;
  transition: var(--ease);
}

.wish-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-15);
}

.wish-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--r);
  flex-shrink: 0;
}

.wish-item-info {
  flex: 1;
}

.wish-item-info h4 {
  font-size: .93rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.wish-item-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wish-item-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cart-sm {
  padding: 9px 16px;
  border-radius: 50px;
  background: var(--primary);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-cart-sm:hover {
  background: var(--primary-dark);
}

.btn-wish-remove {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--n-400);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  transition: var(--ease);
}

.btn-wish-remove:hover {
  color: #ef4444;
  border-color: #ef4444;
  background: #fef2f2;
}

.btn-wish-remove svg {
  width: 14px;
  height: 14px;
}

/* ─── Orders ─────────────────────────────────────────────────────────────── */
.order-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 14px;
  transition: var(--ease);
}

.order-card:hover {
  box-shadow: var(--shadow-sm);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--n-50);
}

.order-id {
  font-weight: 700;
  font-size: .88rem;
  display: block;
  margin-bottom: 2px;
}

.order-date {
  font-size: .76rem;
  color: var(--text-muted);
}

.order-status {
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.status-processing {
  background: rgba(217, 119, 6, .1);
  color: var(--warning);
}

.status-shipped {
  background: rgba(2, 97, 161, .1);
  color: var(--primary);
}

.status-delivered {
  background: rgba(22, 163, 74, .1);
  color: var(--success);
}

.status-cancelled {
  background: rgba(220, 38, 38, .1);
  color: var(--danger);
}

.order-items {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .87rem;
}

.order-item-row img {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: var(--n-50);
}

/* ─── Checkout Stepper ───────────────────────────────────────────────────── */
.checkout-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 580px;
  margin: 0 auto 36px;
  padding: 28px 16px 8px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--ease);
}

.step-item span {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.step-item.active .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(2, 97, 161, .14);
}

.step-item.active span {
  color: var(--primary);
  font-weight: 700;
}

.step-item.done .step-circle {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.step-item.done span {
  color: var(--success);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 4px;
  margin-bottom: 24px;
}

.step-item.done+.step-line {
  background: var(--success);
}

/* ─── Checkout Body ──────────────────────────────────────────────────────── */
.useriddev {
  display: flex;
  gap: 10px;
}

.userverdev {
  display: flex;
  gap: 10px;
}

.checkout-body {
  max-width: 860px;
  margin: 0 auto;
}

.co-step {
  display: none;
}

.co-step.active {
  display: block;
  animation: fadeUp .24s ease;
}

.ck-verify-btn {
  background: #0261a1;
  font-size: 12px;
  color: white;
  padding: 5px;
  border-radius: 10px;
  width: 150px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ck-verify-btn1 {
  flex: 1;

}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.co-step-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.co-step-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.co-item-list {
  margin-bottom: 18px;
}

.co-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px;
  margin-bottom: 8px;
}

.co-item img {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.co-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: .84rem;
}

.co-item-info strong {
  font-size: .9rem;
}

.co-item-info span {
  color: var(--text-muted);
}

.co-item-price {
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.co-totals {
  background: var(--n-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  margin-bottom: 22px;
}

.co-total-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .88rem;
  color: var(--text-muted);
}

.co-total-row.bold {
  color: var(--text);
  font-weight: 800;
  font-size: .97rem;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

.co-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.co-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .9rem;
  outline: none;
  color: var(--text);
  background: var(--surface);
  transition: var(--ease);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 97, 161, .09);
}

/* ─── Shipping Options ───────────────────────────────────────────────────── */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 6px;
}

.shipping-options-label {
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.shipping-option {
  cursor: pointer;
}

.shipping-option input[type="radio"] {
  display: none;
}

.ship-option-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border: 2px solid var(--border);
  border-radius: var(--r);
  transition: var(--ease);
}

.ship-option-box div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ship-option-box strong {
  font-size: .88rem;
}

.ship-option-box span {
  font-size: .76rem;
  color: var(--text-muted);
}

.shipping-option input:checked+.ship-option-box {
  border-color: var(--primary);
  background: rgba(2, 97, 161, .03);
}

.ship-price {
  font-weight: 800;
  color: var(--primary);
  font-size: .88rem;
}

/* ─── Payment ────────────────────────────────────────────────────────────── */
.payment-secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 163, 74, .07);
  color: var(--success);
  font-size: .8rem;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: var(--r-sm);
  margin-bottom: 18px;
  border: 1px solid rgba(22, 163, 74, .12);
}

.payment-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.pay-tab {
  padding: 8px 16px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--ease);
}

.pay-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pay-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pay-panel {
  display: none;
  margin-bottom: 22px;
}

.pay-panel.active {
  display: block;
  animation: fadeUp .2s ease;
}

.accepted-cards {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--text-muted);
}

.card-chip {
  background: var(--n-100);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 800;
}

.cod-info {
  text-align: center;
  padding: 28px 20px;
}

.cod-icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.cod-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cod-info p {
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 12px;
}

.cod-info ul {
  list-style: none;
  text-align: left;
  max-width: 260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .85rem;
}

.co-order-summary {
  background: var(--n-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  margin-top: 24px;
}

.co-order-summary h4 {
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.co-summary-items {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.co-sum-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
}

.co-sum-item img {
  width: 38px;
  height: 38px;
  border-radius: var(--r-xs);
  object-fit: cover;
}

.co-sum-item span:last-child {
  margin-left: auto;
  font-weight: 700;
}

.btn-place-order {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .97rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 4px 18px rgba(2, 97, 161, .32);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-place-order:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(2, 97, 161, .44);
}

.btn-place-order:disabled {
  background: var(--n-300);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* ─── Confirmation ───────────────────────────────────────────────────────── */
.confirmation-box {
  text-align: center;
  padding: 48px 20px;
  max-width: 520px;
  margin: 0 auto;
}

.confirm-icon {
  width: 70px;
  height: 70px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 18px;
}

.confirmation-box h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.confirmation-box>p {
  color: var(--text-muted);
}

.confirm-order-id {
  margin: 14px 0;
  font-size: .88rem;
  background: var(--n-100);
  padding: 11px 18px;
  border-radius: var(--r-sm);
}

.confirm-order-id strong {
  color: var(--primary);
  font-size: .95rem;
}

.confirm-details {
  margin: 18px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  text-align: left;
}

.confirm-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--border);
  font-size: .84rem;
}

.confirm-detail-row:last-child {
  border-bottom: none;
}

.confirm-detail-row span {
  color: var(--text-muted);
  flex-shrink: 0;
}

.confirm-detail-row strong {
  text-align: right;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.confirm-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.confirm-info-card {
  background: var(--n-50);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 8px;
  text-align: center;
  font-size: .73rem;
  color: var(--text-muted);
}

.cic-icon {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

/* ─── Tracking Page ──────────────────────────────────────────────────────── */
.track-search-wrap {
  max-width: 560px;
  margin: 0 auto 36px;
}

.track-search-box {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.track-search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 97, 161, .09);
}

.track-search-box svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.track-search-box input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: .92rem;
  color: var(--text);
}

.track-search-box button {
  background: var(--primary);
  color: #fff;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--ease);
}

.track-search-box button:hover {
  background: var(--primary-dark);
}

.track-not-found {
  text-align: center;
  padding: 40px 20px;
}

.tnf-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.track-not-found h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.track-not-found p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.track-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
}

.track-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--n-50);
}

.track-order-id {
  font-weight: 800;
  font-size: .92rem;
  display: block;
  margin-bottom: 3px;
  color: var(--primary);
}

.track-order-date {
  font-size: .76rem;
  color: var(--text-muted);
}

.track-progress-wrap {
  padding: 26px 22px;
}

.track-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 18px;
}

.track-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  transition: width .8s ease;
}

.track-steps {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}

.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}

.ts-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .76rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--ease);
}

.track-step.done .ts-circle {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.track-step.current .ts-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(2, 97, 161, .14);
}

.ts-label {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

.track-step.done .ts-label,
.track-step.current .ts-label {
  color: var(--text);
}

.ts-date {
  font-size: .64rem;
  color: var(--text-light);
}

.track-items {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.track-items h4 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.track-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .83rem;
}

.track-item-row img {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.track-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.track-item-info small {
  color: var(--text-muted);
  font-size: .72rem;
}

.track-meta {
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.track-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tm-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
}

.tm-val {
  font-size: .85rem;
  font-weight: 600;
}

.tm-val.bold {
  font-weight: 800;
  color: var(--primary);
}

.track-actions {
  padding: 13px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  background: var(--n-50);
}

.track-recent {
  margin-top: 28px;
}

.track-recent-title {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.track-recent-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}

.track-recent-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--ease);
}

.track-recent-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ─── Support Page ───────────────────────────────────────────────────────── */
.support-hero {
  background: linear-gradient(135deg, #013f6e 0%, var(--primary) 100%);
  color: #fff;
  padding: 56px 24px;
  text-align: center;
}

.support-hero-content {
  max-width: 560px;
  margin: 0 auto;
}

.support-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.support-hero p {
  opacity: .82;
  margin-bottom: 24px;
}

.support-search-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.support-search-wrap svg {
  color: var(--text-muted);
}

.support-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: .92rem;
  color: var(--text);
  padding: 4px 0;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--ease);
}

.support-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sc-icon {
  font-size: 1.9rem;
  display: block;
  margin-bottom: 9px;
}

.support-card h3 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.support-card p {
  font-size: .76rem;
  color: var(--text-muted);
  margin-bottom: 9px;
}

.sc-link {
  font-size: .76rem;
  color: var(--primary);
  font-weight: 700;
}

.faq-section {
  margin-bottom: 44px;
}

.faq-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}

.faq-category {
  margin-bottom: 24px;
}

.faq-cat-title {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--ease);
}

.faq-item.open {
  border-color: rgba(2, 97, 161, .22);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-arrow {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  transition: transform .22s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 16px 15px;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

.contact-section {
  padding: 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  text-align: center;
}

.contact-icon {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 9px;
}

.contact-info-card h4 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-info-card p {
  font-size: .85rem;
  color: var(--primary);
  font-weight: 600;
}

.contact-info-card small {
  font-size: .72rem;
  color: var(--text-muted);
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}

.contact-form-wrap h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.contact-form-wrap>p {
  color: var(--text-muted);
  font-size: .87rem;
  margin-bottom: 22px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ─── Product Modal ──────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, .54);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn .18s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal {
  background: var(--surface);
  border-radius: var(--r-xl);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalPop .26s cubic-bezier(.34, 1.2, .64, 1);
}

@keyframes modalPop {
  from {
    transform: scale(.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--n-100);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--ease);
}

.modal-close:hover {
  background: #fef2f2;
  color: #ef4444;
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-images {
  padding: 24px;
  position: relative;
  background: var(--n-50);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}

.modal-main-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--r);
  margin-bottom: 12px;
}

.modal-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.thumb {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--ease);
}

.thumb.active,
.thumb:hover {
  border-color: var(--primary);
}

.modal-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-category {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
}

.modal-name {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.modal-desc {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.modal-variants {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.variant-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}

.variant-type-name {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.variant-selected-val {
  font-size: .76rem;
  color: var(--primary);
  font-weight: 600;
}

.variant-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.var-opt-btn {
  padding: 6px 14px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--ease);
  background: var(--surface);
}

.var-opt-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.var-opt-btn.active {
  border-color: var(--primary);
  /*background: var(--primary); color: #fff;*/
}

.modal-price-combo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-stock-info {
  font-size: .86rem;
  font-weight: 600;
}

.modal-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.03em;
}

.modal-sku {
  font-size: .7rem;
  color: var(--text-muted);
  font-family: monospace;
  background: var(--n-100);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}

.modal-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .86rem;
  font-weight: 600;
}

.modal-qty-row input {
  width: 68px;
  padding: 8px 12px;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: var(--ease);
}

.modal-qty-row input:focus {
  border-color: var(--primary);
}

.modal-actions {
  display: flex;
  gap: 10px;
}

.btn-add-cart-modal {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 4px 14px rgba(2, 97, 161, .28);
}

.btn-add-cart-modal:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-add-cart-modal:disabled {
  background: var(--n-300);
  color: var(--n-500);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-add-cart-modal svg {
  width: 18px;
  height: 18px;
}

.btn-wish-modal {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 11px 16px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-wish-modal:hover {
  border-color: #ef4444;
  color: #ef4444;
}

.btn-wish-modal.active {
  border-color: #ef4444;
  color: #ef4444;
  background: #fef2f2;
}

.badge-stock {
  padding: 4px 11px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 800;
}

.in-stock-badge {
  background: rgba(22, 163, 74, .1);
  color: var(--success);
}

.oos-badge {
  background: rgba(220, 38, 38, .1);
  color: var(--danger);
}

.in-stock {
  color: var(--success);
  font-size: .83rem;
  font-weight: 700;
}

.out-of-stock {
  color: var(--danger);
  font-size: .83rem;
  font-weight: 700;
}

.select-variant-hint {
  color: var(--primary);
  font-style: italic;
  font-size: .8rem;
}

/* ─── Toast ──────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) translateY(90px);
  /* background: var(--n-900);  */
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  font-weight: 600;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transition: transform .32s cubic-bezier(.34, 1.2, .64, 1), opacity .28s ease;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ─── App Loader ─────────────────────────────────────────────────────────── */
.app-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-box {
  text-align: center;
}

.loader-spinner {
  /* width: 46px;
  height: 46px; */
  position: absolute;
  width: 100px;
  height: 100px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .85s linear infinite;
  margin: 0 auto 14px;
}

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo-img {
  position: absolute;
  width: 75px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-box p {
  color: var(--text-muted);
  font-size: .9rem;
}

/* ─── Cart Variant / SKU Labels ──────────────────────────────────────────── */
.cart-variant-label {
  font-size: .76rem;
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-10);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 2px;
}

.cart-sku {
  font-size: .7rem;
  color: var(--text-muted);
  font-family: monospace;
}

/* ─── JazzCash / EasyPaisa ───────────────────────────────────────────────── */
.jazzcash-info,
.easypaisa-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 16px;
  gap: 13px;
}

.jc-logo {
  background: #d60000;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  padding: 9px 20px;
  border-radius: var(--r-sm);
}

.ep-logo {
  background: #2eaa4e;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  padding: 9px 20px;
  border-radius: var(--r-sm);
}

.jazzcash-info p,
.easypaisa-info p {
  color: var(--text-muted);
  font-size: .88rem;
  max-width: 340px;
}

.jc-num,
.ep-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--n-50);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 26px;
  width: 100%;
  max-width: 290px;
}

.jc-num strong,
.ep-num strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .06em;
}

.jc-num small,
.ep-num small {
  font-size: .7rem;
  color: var(--text-muted);
}

/* ─── Social ─────────────────────────────────────────────────────────────── */
.socialicon {
  display: flex;
  gap: 12px;
}

.socialicon a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f5f5f5;
  color: #333;
  transition: all .3s ease;
}

.socialicon a:hover {
  transform: translateY(-3px);
}

.socialicon i {
  font-size: 18px;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--n-900);
  color: #9ca3af;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 12px;
  display: flex;
}

.footer-brand .logo-word {
  color: #e5e7eb;
}

.footer-brand .logo-word span {
  color: #60a5fa;
}

.footer-brand p {
  font-size: .83rem;
  line-height: 1.75;
  color: #6b7280;
  max-width: 260px;
}

.footer-col h4 {
  font-size: .78rem;
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 16px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #6b7280;
  text-decoration: none;
  font-size: .84rem;
  transition: var(--ease);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 18px 28px;
  text-align: center;
  font-size: .77rem;
  color: #4b5563;
  max-width: 1320px;
  margin: 0 auto;
}

.sidebar1 {
  display: none;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .hb-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 20px 36px;
  }

  .hb-cards {
    grid-template-columns: 1fr 1fr;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .product-modal-body {
    grid-template-columns: 1fr;
  }

  .modal-images {
    border-radius: var(--r-xl) var(--r-xl) 0 0;
  }

  .track-meta {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .confirm-info-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 16px;
    gap: 12px;
  }

  .search-wrap {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-actions-btn {
    display: block;
  }

  .sidebar1 {
    display: block;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: .9rem;
  }

  .nav-link {
    padding: 6px 7px;
    font-size: .6rem;
  }

  .nav-link svg {
    width: 20px;
    height: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  main {
    padding: 24px 16px;
  }

  .hb-stats {
    gap: 12px;
  }

  .hb-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 16px 24px;
  }

  .confirm-info-cards {
    grid-template-columns: 1fr;
  }

  .modal {
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    position: fixed;
    bottom: 0;
    max-height: 95vh;
  }

  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
}

@media (max-width: 420px) {
  .hb-title {
    font-size: 1.65rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   HOME PAGE — IMAGE + GRADIENT BANNERS (UNIFIED)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Ticker ──────────────────────────────────────────────────────────────── */
.ticker-wrap {
  background: #0f172a;
  overflow: hidden;
  padding: 9px 0;
}

.ticker-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-track span {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Hero Grid ───────────────────────────────────────────────────────────── */
.hero-grid-wrap {
  background: #0f172a;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px 0;
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 14px;
}

.hg-main {
  border-radius: 22px;
  padding: 60px 52px;
  color: #fff;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hg-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.hg-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -.03em;
}

.hg-title em {
  color: #60d3ff;
  font-style: normal;
}

.hg-sub {
  font-size: 1rem;
  opacity: .9;
  margin: 0 0 20px;
  line-height: 1.6;
}

.hg-sub strong {
  color: #fbbf24;
  font-size: 1.1rem;
}

.hg-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hg-trust span {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.hg-cta {
  background: #fff;
  color: #0261A1;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 900;
  font-size: .92rem;
  cursor: pointer;
  transition: var(--ease);
  width: fit-content;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

.hg-cta:hover {
  background: #fbbf24;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, .4);
}

.hg-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hg-mini {
  flex: 1;
  border-radius: 18px;
  padding: 26px 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 160px;
  cursor: pointer;
}

.hg-mini-badge {
  background: rgba(255, 255, 255, .22);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
  width: fit-content;
}

.hg-mini h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.3;
}

.hg-mini h3 small {
  display: block;
  font-size: .78rem;
  font-weight: 400;
  opacity: .8;
  margin-top: 2px;
}

.hg-mini button {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
  transition: var(--ease);
  width: fit-content;
}

.hg-mini button:hover {
  background: #fff;
  color: #000;
}

/* Stats bar */
.hg-stats-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  background: rgba(255, 255, 255, .06);
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hgsb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  color: #fff;
}

.hgsb-icon {
  font-size: 1.4rem;
}

.hgsb-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.2;
}

.hgsb-item small {
  font-size: .68rem;
  opacity: .6;
}

.hgsb-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, .15);
}

/* ── Category Nav ────────────────────────────────────────────────────────── */
.sec-nav-bar {
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(2, 97, 161, .4);
}

.sec-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.sec-nav-inner::-webkit-scrollbar {
  display: none;
}

.snav-link {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  padding: 12px 18px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--ease);
  display: block;
}

.snav-link:hover,
.snav-link.active {
  color: #fff;
  border-bottom-color: #fff;
}

/* ── Trust Strip (gradient-free, clean) ─────────────────────────────────── */
.trust-strip-wrap {
  background: #fff;
  border-bottom: 1px solid var(--n-200);
  box-shadow: var(--shadow-xs);
}

.trust-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  cursor: pointer;
  transition: var(--ease);
}

.ts-item:hover {
  background: var(--n-50);
}

.ts-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
}

.ts-item strong {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  color: var(--text);
}

.ts-item small {
  font-size: .72rem;
  color: var(--text-muted);
}

.ts-sep {
  width: 1px;
  height: 36px;
  background: var(--n-200);
  flex-shrink: 0;
}

/* ── Home Section ────────────────────────────────────────────────────────── */
.home-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 28px;
}

.section-header-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.sih-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}

.view-all-btn {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: .82rem;
  transition: var(--ease);
}

.view-all-btn:hover {
  color: var(--primary-dark);
}

.deal-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 3px;
}

/* ── Circular Categories ─────────────────────────────────────────────────── */
.circ-cats-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.circ-cats-row::-webkit-scrollbar {
  display: none;
}

.circ-cat {
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
}

.circ-cat-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 10px;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.circ-cat:hover .circ-cat-img {
  transform: translateY(-5px) scale(1.06);
  box-shadow: var(--shadow-md);
}

.circ-cat-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

/* ── 2-Col IMAGE Banners ─────────────────────────────────────────────────── */
.img2-wrap {
  background: var(--n-50);
}

.img2-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.img2-card {
  border-radius: 20px;
  padding: 44px 38px;
  color: #fff;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: var(--ease);
}

.img2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.img2-tag {
  background: rgba(255, 255, 255, .22);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}

.img2-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 0 8px;
  line-height: 1.2;
}

.img2-card p {
  font-size: .85rem;
  opacity: .88;
  margin: 0 0 20px;
}

.img2-card button {
  background: #fff;
  color: #000;
  border: none;
  padding: 11px 24px;
  border-radius: 20px;
  font-weight: 800;
  cursor: pointer;
  font-size: .83rem;
  transition: var(--ease);
  width: fit-content;
}

.img2-card button:hover {
  background: var(--n-100);
  transform: translateY(-1px);
}

/* ── Deals Horizontal ────────────────────────────────────────────────────── */
.deals-bg-wrap {
  background: var(--n-100);
  border-top: 1px solid var(--n-200);
  border-bottom: 1px solid var(--n-200);
}

.deals-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.deals-scroll::-webkit-scrollbar {
  display: none;
}

.deal-card {
  flex-shrink: 0;
  width: 178px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--ease);
}

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.deal-card-img {
  width: 100%;
  height: 144px;
  object-fit: cover;
}

.deal-card-body {
  padding: 10px 12px 12px;
}

.deal-card-name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-card-price {
  font-size: .9rem;
  font-weight: 800;
  color: var(--primary);
}

/* ── Full-Width IMAGE Banner ─────────────────────────────────────────────── */
.fwib-wrap {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.fwib-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.fwib-text {
  color: #fff;
  flex: 1;
}

.fwib-eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 12px;
}

.fwib-text h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.18;
  margin: 0 0 12px;
}

.fwib-text h2 em {
  color: #fbbf24;
  font-style: normal;
}

.fwib-text p {
  font-size: .92rem;
  opacity: .82;
  margin: 0;
}

.fwib-btn {
  background: #fbbf24;
  color: #000;
  border: none;
  padding: 17px 38px;
  border-radius: 30px;
  font-weight: 900;
  cursor: pointer;
  font-size: .95rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--ease);
  box-shadow: 0 6px 24px rgba(251, 191, 36, .45);
}

.fwib-btn:hover {
  background: #f59e0b;
  transform: translateY(-2px) scale(1.03);
}

/* ── 3-Col IMAGE Promo Cards ─────────────────────────────────────────────── */
.pi3-wrap {
  padding: 28px 0;
  background: var(--surface);
}

.pi3-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pi3-card {
  border-radius: 20px;
  padding: 44px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  min-height: 250px;
  cursor: pointer;
  transition: var(--ease);
  overflow: hidden;
}

.pi3-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .32);
}

.pi3-tag {
  background: rgba(255, 255, 255, .22);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}

.pi3-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 0 18px;
  line-height: 1.3;
}

.pi3-card button {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 800;
  cursor: pointer;
  font-size: .83rem;
  transition: var(--ease);
  width: fit-content;
}

.pi3-card button:hover {
  background: var(--n-100);
}

/* ── Category Sections ───────────────────────────────────────────────────── */
.cat-sec {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 32px;
}

.cat-sec-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--n-200);
}

.cat-sec-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}

.cat-sec-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.cat-sec-scroll::-webkit-scrollbar {
  display: none;
}

/* ── Features V2 (white cards) ───────────────────────────────────────────── */
.feats-v2-wrap {
  background: var(--n-50);
  border-top: 1px solid var(--n-200);
  padding: 36px 0;
}

.feats-v2 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fv2-card {
  background: #fff;
  border: 1px solid var(--n-200);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--ease);
}

.fv2-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
  border-color: var(--primary-10);
}

.fv2-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}

.fv2-card strong {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.fv2-card small {
  font-size: .74rem;
  color: var(--text-muted);
}

/* ── Newsletter V2 (blue gradient) ──────────────────────────────────────── */
.nl-v2-wrap {
  background: linear-gradient(135deg, #0261A1 0%, #0387d9 55%, #38bdf8 100%);
}

.nl-v2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.nl-v2-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .2);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.nl-v2-left h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}

.nl-v2-left p {
  color: rgba(255, 255, 255, .82);
  margin: 0 0 24px;
  line-height: 1.72;
}

.nl-v2-form {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .2);
}

.nl-v2-input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-size: .9rem;
  font-family: inherit;
}

.nl-v2-btn {
  background: #fbbf24;
  color: #000;
  border: none;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
  font-size: .85rem;
  white-space: nowrap;
  transition: var(--ease);
}

.nl-v2-btn:hover {
  background: #f59e0b;
}

.nl-v2-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nl-v2-perk {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .2);
}

/* ── Back to Home ────────────────────────────────────────────────────────── */
.back-home-btn {
  background: var(--n-100);
  border: 1px solid var(--n-200);
  color: var(--text);
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .83rem;
  font-weight: 700;
  font-family: inherit;
  transition: var(--ease);
  flex-shrink: 0;
}

.back-home-btn:hover {
  background: var(--n-200);
}

/* ── Footer Big Brand ────────────────────────────────────────────────────── */
.footer-bigname {
  background: var(--n-900);
  text-align: center;
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  letter-spacing: -.02em;
  padding: 0 24px 16px;
  line-height: 1;
  user-select: none;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

/* ── Order Confirm Total ─────────────────────────────────────────────────── */
.confirm-detail-row.total-row {
  border-top: 1px solid var(--n-200);
  margin-top: 6px;
  padding-top: 8px;
}

.confirm-detail-row.total-row strong {
  font-size: 1.1rem;
  color: var(--primary);
}

/* ══ Responsive ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 250px;
  }

  .feats-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hg-side {
    flex-direction: row;
  }

  .hg-mini {
    flex: 1;
    min-height: 140px;
  }

  .hg-stats-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hgsb-sep {
    display: none;
  }

  .img2-grid {
    grid-template-columns: 1fr;
  }

  .pi3-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nl-v2-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ts-sep {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-grid {
    padding: 12px 12px 0;
    gap: 10px;
  }

  .hg-main {
    padding: 38px 26px;
    min-height: 260px;
  }

  .hg-side {
    flex-direction: column;
  }

  .hg-mini {
    min-height: 140px;
  }

  .home-section {
    padding: 28px 16px 20px;
  }

  .img2-grid {
    padding: 16px;
    gap: 12px;
  }

  .img2-card {
    padding: 30px 24px;
    min-height: 180px;
  }

  .img2-card h3 {
    font-size: 1.25rem;
  }

  .fwib-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 22px;
  }

  .fwib-btn {
    width: 100%;
    text-align: center;
  }

  .pi3-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .pi3-wrap {
    padding: 16px 0;
  }

  .feats-v2 {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
  }

  .nl-v2-inner {
    padding: 36px 16px;
  }

  .nl-v2-left h2 {
    font-size: 1.4rem;
  }

  .cat-sec {
    padding: 16px 16px 24px;
  }

  .footer-bigname {
    font-size: clamp(2.5rem, 18vw, 5rem);
  }

  .fwib-wrap {
    background-attachment: scroll;
  }
}

@media (max-width: 420px) {
  .feats-v2 {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Old hero classes (unused, keep for compat with other pages) ─────────── */
.hero-split {
  background: var(--n-100);
  padding: 20px 0 0;
}

.hs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 14px;
}

.hs-main-card {
  background: linear-gradient(135deg, #071830 0%, #0a2a52 45%, #0261A1 100%);
  border-radius: 20px;
  padding: 52px 44px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.hs-main-card::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.hs-main-card::after {
  content: '';
  position: absolute;
  right: 60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.hs-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 18px;
}

.hs-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -.02em;
}

.hs-title em {
  color: #60d3ff;
  font-style: normal;
}

.hs-offer {
  font-size: 1rem;
  margin: 0 0 28px;
  opacity: .9;
}

.hs-offer strong {
  color: #fbbf24;
  font-size: 1.2rem;
}

.hs-cta {
  background: #fff;
  color: #0261A1;
  border: none;
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--ease);
  width: fit-content;
  letter-spacing: .01em;
}

.hs-cta:hover {
  background: #fbbf24;
  color: #000;
  transform: translateY(-2px);
}

.hs-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hs-mini-card {
  border-radius: 16px;
  padding: 24px 20px;
  color: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hs-mini-1 {
  background: linear-gradient(135deg, #d97706, #b45309);
}

.hs-mini-2 {
  background: linear-gradient(135deg, #059669, #047857);
}

.hs-mini-card::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.hs-mini-badge {
  background: rgba(255, 255, 255, .22);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.hs-mini-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.hs-mini-card h3 small {
  display: block;
  font-size: .8rem;
  font-weight: 400;
  opacity: .75;
  margin-top: 2px;
}

.hs-mini-card button {
  background: rgba(255, 255, 255, .22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  transition: var(--ease);
  width: fit-content;
}

.hs-mini-card button:hover {
  background: #fff;
  color: #000;
}

/* ── Secondary Category Nav Bar ─────────────────────────────────────────── */
.sec-nav-bar {
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(2, 97, 161, .3);
}

.sec-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.sec-nav-inner::-webkit-scrollbar {
  display: none;
}

.snav-link {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  padding: 11px 16px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--ease);
  display: block;
  user-select: none;
}

.snav-link:hover,
.snav-link.active {
  color: #fff;
  border-bottom-color: #fff;
}

/* ── Home Section Wrapper ────────────────────────────────────────────────── */
.home-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 28px;
}

.section-header-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.sih-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}

.view-all-btn {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .03em;
  transition: var(--ease);
}

.view-all-btn:hover {
  color: var(--primary-dark);
}

.deal-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 3px;
}

/* ── Circular Categories ─────────────────────────────────────────────────── */
.circ-cats-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.circ-cats-row::-webkit-scrollbar {
  display: none;
}

.circ-cat {
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
}

.circ-cat-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin: 0 auto 10px;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.circ-cat:hover .circ-cat-img {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.circ-cat-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

/* ── Today's Best Deals ──────────────────────────────────────────────────── */
.deals-bg-wrap {
  background: var(--n-50);
  border-top: 1px solid var(--n-200);
  border-bottom: 1px solid var(--n-200);
}

.deals-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.deals-scroll::-webkit-scrollbar {
  display: none;
}

.deal-card {
  flex-shrink: 0;
  width: 175px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--ease);
}

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.deal-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.deal-card-body {
  padding: 10px 12px 12px;
}

.deal-card-name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-card-price {
  font-size: .88rem;
  font-weight: 800;
  color: var(--primary);
}

/* ── 3 Promo Banners ─────────────────────────────────────────────────────── */
.promo-3col-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px;
}

.promo-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.promo-card {
  border-radius: 18px;
  padding: 34px 26px;
  color: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--ease);
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.promo-1 {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.promo-2 {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.promo-3 {
  background: linear-gradient(135deg, #065f46, #10b981);
}

.promo-card::before {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.promo-card::after {
  content: '';
  position: absolute;
  right: 30px;
  top: -50px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
}

.promo-tag {
  background: rgba(255, 255, 255, .2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  display: inline-block;
  margin-bottom: 12px;
}

.promo-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.3;
}

.promo-card button {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 800;
  cursor: pointer;
  font-size: .82rem;
  transition: var(--ease);
  position: relative;
  z-index: 1;
}

.promo-card button:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

/* ── Category Product Sections ───────────────────────────────────────────── */
.cat-sec {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 32px;
}

.cat-sec-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--n-200);
}

.cat-sec-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}

.cat-sec-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.cat-sec-scroll::-webkit-scrollbar {
  display: none;
}

/* ── Features Strip ──────────────────────────────────────────────────────── */
.features-strip {
  background: var(--primary);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  color: #fff;
  padding: 28px 16px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.feat-item:last-child {
  border-right: none;
}

.feat-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feat-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.feat-item small {
  font-size: .73rem;
  opacity: .75;
}

/* ── Newsletter ──────────────────────────────────────────────────────────── */
.newsletter-wrap {
  background: var(--n-900);
}

.newsletter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.nl-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}

.nl-right p {
  color: var(--n-400);
  margin: 0 0 24px;
  line-height: 1.75;
}

.nl-form {
  display: flex;
  gap: 0;
}

.nl-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  border-radius: 8px 0 0 8px;
  font-size: .9rem;
  font-family: inherit;
}

.nl-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 0 8px 8px 0;
  font-weight: 800;
  cursor: pointer;
  font-size: .8rem;
  white-space: nowrap;
  transition: var(--ease);
  letter-spacing: .04em;
}

.nl-btn:hover {
  background: var(--primary-dark);
}

/* ── Back to Home Button ─────────────────────────────────────────────────── */
.back-home-btn {
  background: var(--n-100);
  border: 1px solid var(--n-200);
  color: var(--text);
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .83rem;
  font-weight: 700;
  font-family: inherit;
  transition: var(--ease);
  flex-shrink: 0;
}

.back-home-btn:hover {
  background: var(--n-200);
}

/* ── Footer Big Brand Name ───────────────────────────────────────────────── */
.footer-bigname {
  background: var(--n-900);
  text-align: center;
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  letter-spacing: -.02em;
  padding: 0 24px 16px;
  line-height: 1;
  user-select: none;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

/* ── Responsive — Smart Shop Sections ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hs-inner {
    grid-template-columns: 1fr 260px;
  }
}

@media (max-width: 820px) {
  .hs-inner {
    grid-template-columns: 1fr;
  }

  .hs-side {
    flex-direction: row;
  }

  .hs-mini-card {
    flex: 1;
  }

  .promo-3col {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 580px) {
  .hs-inner {
    padding: 0 14px 16px;
  }

  .hs-main-card {
    padding: 36px 24px;
    min-height: 260px;
  }

  .hs-side {
    flex-direction: column;
  }

  .promo-3col {
    grid-template-columns: 1fr;
  }

  .promo-3col-wrap {
    padding: 20px 16px;
  }

  .home-section {
    padding: 28px 16px 20px;
  }

  .features-strip {
    grid-template-columns: 1fr 1fr;
  }

  .feat-item {
    padding: 20px 12px;
  }

  .newsletter-inner {
    padding: 40px 16px;
  }

  .nl-left h2 {
    font-size: 1.6rem;
  }

  .footer-bigname {
    font-size: clamp(2.5rem, 18vw, 5rem);
  }

  .cat-sec {
    padding: 16px 16px 24px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   NEW BANNERS & LAYOUT ADDITIONS
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Scrolling Ticker ────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--n-900);
  overflow: hidden;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  flex-shrink: 0;
}

.ticker-track span:hover {
  color: #fff;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Hero improvements ───────────────────────────────────────────────────── */
.hs-deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.hs-dc1 {
  width: 220px;
  height: 220px;
  right: -60px;
  top: -60px;
}

.hs-dc2 {
  width: 130px;
  height: 130px;
  right: 80px;
  bottom: -40px;
}

.hs-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 24px;
}

.hs-badge-item {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .2);
}

.hs-mini-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  pointer-events: none;
}

.hs-mini-stat {
  font-size: .82rem;
  opacity: .85;
  margin: 0 0 12px;
}

.hs-mini-stat strong {
  font-size: 1rem;
  font-weight: 900;
}

/* Hero stats strip */
.hs-stats-strip {
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hss-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 36px;
  color: #fff;
}

.hss-item strong {
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.2;
}

.hss-item span {
  font-size: .72rem;
  opacity: .7;
}

.hss-div {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .2);
}

/* ── Top Promo Strip ─────────────────────────────────────────────────────── */
.top-promo-wrap {
  background: var(--surface);
  border-bottom: 1px solid var(--n-200);
  box-shadow: var(--shadow-xs);
}

.top-promo-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tps-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid var(--n-200);
  cursor: pointer;
  transition: var(--ease);
}

.tps-card:last-child {
  border-right: none;
}

.tps-card:hover {
  background: var(--n-50);
}

.tps-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.tps-card strong {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  color: var(--text);
}

.tps-card small {
  font-size: .72rem;
  color: var(--text-muted);
}

/* ── Mid-Page Double Banner ──────────────────────────────────────────────── */
.mid-banner-wrap {
  padding: 0 0 8px;
  background: var(--n-50);
}

.mid-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mid-banner {
  border-radius: 18px;
  padding: 36px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--ease);
}

.mid-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.mb-left {
  background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #fbbf24 100%);
}

.mb-right {
  background: linear-gradient(135deg, #0261A1 0%, #0387d9 60%, #38bdf8 100%);
}

.mb-tag {
  background: rgba(255, 255, 255, .22);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  display: inline-block;
  margin-bottom: 12px;
}

.mid-banner h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 0 8px;
  line-height: 1.25;
}

.mid-banner p {
  font-size: .85rem;
  opacity: .85;
  margin: 0 0 20px;
  line-height: 1.6;
}

.mid-banner button {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 800;
  cursor: pointer;
  font-size: .82rem;
  transition: var(--ease);
  position: relative;
  z-index: 1;
}

.mid-banner button:hover {
  background: var(--n-100);
  transform: translateY(-1px);
}

.mb-deco {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

/* ── Full-Width Mid Banner ───────────────────────────────────────────────── */
.fullwidth-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0261A1 50%, #0891b2 100%);
  margin: 0;
  padding: 0;
}

.fwb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.fwb-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.fwb-d1 {
  width: 300px;
  height: 300px;
  right: 200px;
  top: -120px;
}

.fwb-d2 {
  width: 200px;
  height: 200px;
  right: -40px;
  bottom: -80px;
}

.fwb-text {
  color: #fff;
  flex: 1;
  position: relative;
  z-index: 1;
}

.fwb-eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 10px;
}

.fwb-text h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 10px;
}

.fwb-text h2 em {
  color: #fbbf24;
  font-style: normal;
}

.fwb-text p {
  font-size: .9rem;
  opacity: .8;
  margin: 0;
}

.fwb-btn {
  background: #fbbf24;
  color: #000;
  border: none;
  padding: 15px 32px;
  border-radius: 30px;
  font-weight: 900;
  cursor: pointer;
  font-size: .95rem;
  white-space: nowrap;
  transition: var(--ease);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.fwb-btn:hover {
  background: #f59e0b;
  transform: translateY(-2px) scale(1.02);
}

/* ── Order Confirm Detail Row ────────────────────────────────────────────── */
.confirm-detail-row.total-row {
  border-top: 1px solid var(--n-200);
  margin-top: 6px;
  padding-top: 8px;
}

.confirm-detail-row.total-row strong {
  font-size: 1.1rem;
  color: var(--primary);
}

/* ── Responsive — New Banners ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .top-promo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .tps-card:nth-child(2) {
    border-right: none;
  }

  .mid-banner-inner {
    grid-template-columns: 1fr;
  }

  .hs-stats-strip {
    flex-wrap: wrap;
  }

  .hss-item {
    padding: 10px 20px;
  }
}

@media (max-width: 640px) {
  .top-promo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-promo-wrap {
    padding: 0;
  }

  .mid-banner-inner {
    padding: 16px;
    gap: 12px;
  }

  .mid-banner {
    padding: 26px 22px;
  }

  .mid-banner h3 {
    font-size: 1.2rem;
  }

  .fwb-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 20px;
  }

  .fwb-btn {
    width: 100%;
  }

  .ticker-track {
    gap: 40px;
  }

  .hs-stats-strip {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   CUSTOMER INFO MODAL
   ══════════════════════════════════════════════════════════════════════════ */

.cust-modal {
  max-width: 520px;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.cust-modal-header {
  background: linear-gradient(135deg, #0261A1, #0387d9);
  padding: 32px 32px 24px;
  text-align: center;
  color: #fff;
}

.cust-modal-avatar {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 2px solid rgba(255, 255, 255, .3);
}

.cust-modal-header h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.cust-modal-header p {
  font-size: .88rem;
  opacity: .85;
}

.cust-modal-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cust-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cust-field label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cust-field input {
  padding: 11px 14px;
  border: 1.5px solid var(--n-200);
  border-radius: 10px;
  font-size: .93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}

.cust-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 97, 161, .12);
}

.cust-field input::placeholder {
  color: var(--n-400);
}

.cust-req {
  color: #ef4444;
  margin-left: 2px;
}

.cust-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted);
  background: var(--n-50);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 2px;
}

.cust-modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 28px 24px;
  border-top: 1px solid var(--n-100);
}

.cust-submit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: .93rem;
  font-weight: 700;
}

/* ── Customer badge on checkout shipping step ──────────────────────────── */
.ck-customer-badge {
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #eaf4ff, #f0f9ff);
  border: 1.5px solid #bae0fd;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 18px;
  gap: 12px;
}

.ck-cust-name {
  font-size: .93rem;
  font-weight: 700;
  color: #0261A1;
}

.ck-cust-edit {
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  background: #fff;
  border: 1.5px solid var(--primary);
  border-radius: 7px;
  padding: 5px 12px;
  cursor: pointer;
  font-family: inherit;
  transition: var(--ease);
  white-space: nowrap;
}

.ck-cust-edit:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 560px) {
  .cust-modal-body {
    padding: 18px 16px;
  }

  .cust-modal-footer {
    padding: 14px 16px 18px;
    flex-direction: column;
  }

  .cust-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .cust-row {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   EASYPAISA ONLINE PAYMENT PANEL
   ══════════════════════════════════════════════════════════════════════════ */

#ep-panel-content {
  padding: 8px 0;
}

/* ── Shared step wrapper ─────────────────────────────────────────────────── */
.ep-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  text-align: center;
}

/* ── Brand bar ───────────────────────────────────────────────────────────── */
.ep-brand-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ep-logo-badge {
  background: #2eaa4e;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 8px;
  letter-spacing: .02em;
}

.ep-tagline {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── Description ─────────────────────────────────────────────────────────── */
.ep-desc {
  font-size: .88rem;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.55;
}

/* ── Mobile number input ─────────────────────────────────────────────────── */
.ep-input-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.ep-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
}

.ep-input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 2px solid var(--n-200);
  border-radius: 12px;
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  outline: none;
  box-sizing: border-box;
  letter-spacing: .04em;
  transition: border-color .18s, box-shadow .18s;
}

.ep-input:focus {
  border-color: #2eaa4e;
  box-shadow: 0 0 0 3px rgba(46, 170, 78, .14);
}

.ep-input::placeholder {
  color: var(--n-400);
  letter-spacing: 0;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.ep-btn {
  width: 100%;
  max-width: 320px;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: .96rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ep-btn-primary {
  background: #2eaa4e;
  color: #fff;
}

.ep-btn-primary:hover {
  background: #228c3e;
  box-shadow: 0 4px 16px rgba(46, 170, 78, .35);
}

.ep-btn-outline {
  background: transparent;
  color: #2eaa4e;
  border: 2px solid #2eaa4e;
}

.ep-btn-outline:hover {
  background: #f0fdf4;
}

/* ── Secure note ─────────────────────────────────────────────────────────── */
.ep-secure-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  color: var(--text-muted);
}

/* ── OTP sent info ───────────────────────────────────────────────────────── */
.ep-otp-sent-info {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: .88rem;
  color: #166534;
  font-weight: 600;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

/* ── OTP input ───────────────────────────────────────────────────────────── */
.ep-otp-field {
  width: 100%;
  max-width: 200px;
  padding: 16px;
  border: 2.5px solid var(--n-200);
  border-radius: 14px;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: .4em;
  font-family: monospace;
  outline: none;
  color: var(--text);
  background: var(--surface);
  transition: border-color .18s, box-shadow .18s;
}

.ep-otp-field:focus {
  border-color: #2eaa4e;
  box-shadow: 0 0 0 4px rgba(46, 170, 78, .15);
}

/* ── OTP footer links ────────────────────────────────────────────────────── */
.ep-otp-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: center;
}

.ep-link-btn {
  background: none;
  border: none;
  color: #2eaa4e;
  font-size: .8rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.ep-link-btn:hover {
  color: #166534;
}

/* ── Loading spinner ─────────────────────────────────────────────────────── */
.ep-step-loading {
  min-height: 180px;
  justify-content: center;
}

.ep-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid #bbf7d0;
  border-top-color: #2eaa4e;
  border-radius: 50%;
  animation: ep-spin .7s linear infinite;
}

@keyframes ep-spin {
  to {
    transform: rotate(360deg);
  }
}

.ep-loading-msg {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── Success state ───────────────────────────────────────────────────────── */
.ep-step-success {
  gap: 10px;
}

.ep-success-icon {
  font-size: 3rem;
  animation: ep-pop .35s ease;
}

@keyframes ep-pop {
  from {
    transform: scale(.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ep-step-success h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #166534;
}

.ep-step-success p {
  font-size: .9rem;
  color: var(--text-muted);
}

.ep-txn-id {
  font-size: .76rem;
  font-family: monospace;
  color: var(--text-muted);
  background: var(--n-100);
  padding: 5px 12px;
  border-radius: 6px;
}

.ep-placing-msg {
  font-size: .84rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Error state ─────────────────────────────────────────────────────────── */
.ep-error-icon {
  font-size: 2.6rem;
}

.ep-step-error h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #991b1b;
}

.ep-step-error p {
  font-size: .88rem;
  color: var(--text-muted);
  max-width: 300px;
}

.ep-error-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 320px;
}

@media (max-width: 480px) {
  .ep-btn {
    max-width: 100%;
  }

  .ep-input-wrap {
    max-width: 100%;
  }

  .ep-error-actions {
    flex-direction: column;
  }
}