/* =====================================================
   MyDailyShop – Design System (Deep Indigo + Mint)
   ===================================================== */

:root {
  /* ── Core Palette ── */
  --primary: #1a2a5e; /* deep indigo – authority, trust */
  --primary-dark: #0f1b40; /* darker indigo – hover states  */
  --primary-mid: #243570; /* mid indigo                     */

  --cta: #2e7d32; /* natural halal green – trust, CTAs */
  --cta-dark: #1b5e20; /* deep halal green – hover          */
  --cta-light: #c8e6c9; /* light green tint                  */

  --highlight: #f5f5f5; /* light gray – section BG, hover */
  --highlight-dark: #a5d6a7; /* mint border                    */

  /* ── Neutrals ── */
  --bg: #ffffff; /* white – clean, dominant white  */
  --surface: #ffffff;
  --text: #212121; /* dark gray – readable body text */
  --text-sub: #424242;
  --text-muted: #757575;
  --border: #e0e0e0;
  --border-light: #f0f0f0;

  /* ── Status ── */
  --red: #d97706;
  --red-light: #fef3c7;
  --yellow: #f9a825;
  --yellow-light: #fff8e1;
  --yellow-dark: #b45309;

  /* ── Elevation ── */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* ── Shape ── */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  --transition: all 0.2s ease;
  --header-h: 90px;
}

/* ── Typography tokens ── */
:root {
  --font-family: "Nunito", "Noto Sans JP", sans-serif;
  --font-display: var(--font-family);
  --font-body: var(--font-family);
}

/* ── Base ── */
* {
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* Headings, labels, prices, nav → Outfit */
h1,
h2,
h3,
h5,
h6,
.section-title,
.price-now,
.price-was,
.btn,
.product-name {
  font-family: var(--font-display);
}
img {
  display: block;
}
a {
  transition: var(--transition);
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: var(--border-light);
}
::-webkit-scrollbar-thumb {
  background: var(--highlight-dark);
  border-radius: 3px;
}

/* ── Topbar ── */

/* ── Header ── */
.main-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon i {
  font-size: 1.25rem;
  color: #fff;
}

/* Search */
.nav-search .form-control {
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--border-light);
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0.38rem 0.9rem;
  background: #fff;
  color: var(--text);
  transition: var(--transition);
  height: 36px;
}
.nav-search .form-control:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
  outline: none;
}
.nav-search .form-control::placeholder {
  color: #aaa;
  font-weight: 600;
}
.btn-search {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  border: 1px solid #002b5c;
  border-left: none;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-size: 13px;
  font-weight: 800;
  padding: 0.38rem 1rem;
  color: #fff;
  height: 36px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-search:hover {
  background: linear-gradient(135deg, #1a5fb4 0%, #002b5c 100%);
  border: 1px solid #1a5fb4;
  border-left: none;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 43, 92, 0.35);
}

/* Header Icons */
.badge-count {
  position: absolute;
  top: 0;
  right: 2px;
  background: linear-gradient(135deg, #002b5c 0%, #d97706 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* ── Category Navbar ── */

/* ── Grocery Category Chips ── */

/* ── Buttons ── */
/* Primary – indigo (authority/structure) */
.btn-green {
  background: var(--primary);
  border: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-green:hover:not(:disabled) {
  background: var(--primary-dark);
  color: #fff;
}
.btn-green:disabled {
  background: var(--primary);
  color: #fff;
  opacity: 0.55;
  cursor: not-allowed;
}

/* Outline – indigo border */

/* Global btn-sm override */
.btn-sm {
  font-size: 0.95rem !important;
  padding: 0.5rem 1.1rem !important;
}

/* Ghost – subtle */

/* ── Product Cards ── */
/* ── Product Card ── */
.product-card {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (hover: hover) {
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 10px 30px rgba(0, 43, 92, 0.15),
      0 0 0 1.5px rgba(75, 155, 58, 0.25);
    border-color: #a3c4f3;
  }
}

/* Image area */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #f5f5f5;
}
.product-img {
  width: 100%;
  padding: 10px;
  aspect-ratio: 1/1;
  object-fit: contain;
  transition: transform 0.35s ease;
}
@media (hover: hover) {
  .product-card:hover .product-img {
    transform: scale(1.06);
  }
}

/* Badges */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3px;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  z-index: 2;
}

/* Wishlist heart — inline in info row */

/* Product actions hover overlay */

/* Info area */
.product-info {
  padding: 0.85rem 0.9rem 0.9rem;
  display: flex !important;
  flex-direction: column !important;
  flex: 1;
}
.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  letter-spacing: -0.015em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-name a {
  color: inherit;
  text-decoration: none;
}
.product-name a:hover {
  color: rgb(0, 43, 92);
}
.product-weight {
  font-size: 0.78rem; font-weight: 500;
  color: #9ca3af; margin-bottom: 0.2rem;
}

/* Price / bottom area — always pinned to bottom of info */
.product-card-bottom {
  margin-top: auto;
  padding-top: 0.4rem;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
}
.price-row > div:first-child {
  min-width: 0;
  overflow: hidden;
}
.price-now {
  font-size: 1.45rem;
  font-weight: 900;
  color: rgb(0, 43, 92);
}
.price-was {
  font-size: 0.95rem;
  font-weight: 600;
  color: #d1d5db;
  text-decoration: line-through;
  margin-left: 0.25rem;
}

/* Add to Cart inline button */

/* Inline qty stepper */
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  border-radius: 8px;
  overflow: hidden;
  height: 34px;
  flex-shrink: 0;
}
.qty-stepper button {
  width: 30px;
  height: 34px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-stepper button:hover {
  background: rgba(255, 255, 255, 0.15);
}
.qty-stepper span {
  min-width: 24px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

/* Add-to-cart icon button */
.card-add-btn-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(0, 43, 92, 0.25);
}
.card-add-btn-icon:hover {
  background: linear-gradient(135deg, #001a3d 0%, #0f3d8a 100%);
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(0, 43, 92, 0.35);
}
.card-add-btn-icon:active {
  transform: scale(0.95);
}

/* Out of stock overlay */
.out-of-stock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.out-of-stock-label {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  font-size: 12px;
  font-weight: 800;
  color: #9ca3af;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
}

/* ── Section ── */
.section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
  letter-spacing: -0.025em;
}
.section-title::before {
  content: "";
  width: 4px;
  height: 1.1em;
  background: linear-gradient(180deg, #4b9b3a 0%, #002b5c 100%);
  border-radius: 2px;
  display: inline-block;
}
.section-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.see-all {
  font-size: 13px;
  font-weight: 800;
  color: #002b5c;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition);
}
.see-all:hover {
  color: var(--primary-dark);
}

/* ── Page Card ── */
.page-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  padding: 0.5rem;
}

/* ── Toast ── */
.toast-wrap {
  position: fixed;
  top: 100px;
  right: 1.25rem;
  z-index: 9999;
  pointer-events: none;
  min-width: 280px;
  max-width: 340px;
}
.toast-msg {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #4b9b3a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.08);
  font-family: var(--font-family);
}

/* ── Footer ── */

/* ── Sidebar ── */
.sidebar-wrap {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  box-shadow: 0 -1rem 0 0 #fff;
}
.sidebar-body {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-body::-webkit-scrollbar {
  display: none;
}
.cat-tree::-webkit-scrollbar {
  display: none;
}
.cat-tree .cat-btn {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  padding-right: 0.9rem;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.cat-tree .cat-btn:hover {
  background: var(--highlight);
  color: var(--primary);
}
.cat-tree .cat-btn.active {
  background: var(--highlight);
  color: var(--primary);
  font-weight: 800;
}
.cat-tree .leaf-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #6b7280;
  display: block;
  padding: 0.65rem 1rem 0.65rem 2.2rem;
  text-decoration: none;
  background: #fff;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}
.cat-tree .leaf-link:hover {
  color: #002b5c;
  background: var(--highlight);
}

/* ── Qty Controls ── */
.qty-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  color: var(--primary);
}
@media (hover: hover) {
  .qty-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }
}

/* ── Trust bar ── */

/* ── Step Progress (Checkout) ── */

/* ── Chips / Tags ── */

/* ── Breadcrumb ── */
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--text-muted);
  padding: 0 0.4rem;
  font-weight: 400;
}
.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item .breadcrumb-link {
  font-size: 13px;
  font-weight: 700;
}
.breadcrumb-item a,
.breadcrumb-item .breadcrumb-link {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}
.breadcrumb-item a:hover,
.breadcrumb-item .breadcrumb-link:hover {
  color: var(--primary-dark);
}
.breadcrumb-item.active {
  color: var(--text-muted);
}

/* ── Status Badges ── */

/* ── Pagination ── */

/* ── Form Controls ── */
.form-control {
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 42, 94, 0.1);
  outline: none;
}
.form-control.is-invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.form-control.is-valid   { border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.1); }
.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 0.35rem;
}

/* ── Horizontal Scroll Row ── */

/* ── Auto-scroll Marquee ── */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── Float Chat ── */

/* ── Cart Dropdown ── */
.cart-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  z-index: 1050;
  overflow: hidden;
}
.cart-dropdown-head {
  padding: 0.8rem 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Category Circle Cards ── */

/* ── Call for Order Banner ── */

/* ── Free Delivery Strip ── */

/* ── Sidebar Promo Block ── */
.sidebar-promo {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 1rem;
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .sidebar-wrap {
    position: static;
  }
}
@media (max-width: 575px) {
  body {
    font-size: 15px;
  }
  .section-title {
    font-size: 1.05rem;
  }
}

/* ── Halal Certification Badge (product card bottom-left) ── */

/* ── Attribute Chips ("No Pork", "No Alcohol") ── */

/* ── Halal Certification Trust Section ── */

/* ── Hero secondary CTA (green) ── */

/* ── Gradient Enhancements ── */
.price-now {
  font-family: var(--font-display);
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-main-link:hover,
.nav-main-link.active {
  background: linear-gradient(135deg, rgba(75,155,58,0.4) 0%, rgba(26,95,180,0.3) 100%) !important;
  color: #fff !important;
}
.cat-tree .cat-btn.active {
  background: linear-gradient(
    135deg,
    rgba(0, 43, 92, 0.08),
    rgba(26, 95, 180, 0.08)
  );
  color: #002b5c;
  font-weight: 800;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.hero-arrow-prev:hover,
.hero-arrow-next:hover {
  background: rgba(255, 255, 255, 0.35) !important;
}

/* === index.css === */

/* ── Hero (compact grocery style) ── */

/* ── Deal badge ── */

/* ── Promo strip ── */

/* ── Section header ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

/* ── Shop by Category carousel ── */

/* ── Section spacing ── */
main section {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
main section + section {
  margin-top: 0.25rem;
}

/* ── Category strip ── */

/* ── Newsletter ── */
.newsletter-box {
  background: linear-gradient(
    135deg,
    #001428 0%,
    #002b5c 45%,
    #003d7a 80%,
    #004d99 100%
  );
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

/* ── Cart dropdown item ── */
.cart-item-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--border-light);
}
.cart-item-row img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  padding: 3px;
  background: #fff;
  border: 1px solid var(--border-light);
}

/* ── Sidebar promo ── */
.sidebar-promo {
  background: linear-gradient(135deg, #001428 0%, #002b5c 50%, #1a5fb4 100%);
  border-radius: var(--radius);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

/* ── Flash Deals ── */

/* ── Halal Meat Section Banner ── */

/* ── Bundle Deal Cards ── */

/* ── Arabic watermark in hero ── */

/* ── Section accent — green left bar for halal sections ── */

/* ── Pantry category chips row ── */

/* ── SVG Category circles ── */

/* ── Auto-scrolling marquee ── */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.product-img-wrap a {
  display: block;
}
.discount-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  background: linear-gradient(135deg, #b45309, #d97706);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  line-height: 1.4;
  letter-spacing: 0.2px;
}
.product-info {
  padding: 0.6rem 0.7rem 0.7rem;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}

/* Add-to-cart icon button */
.card-add-btn-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgb(0, 43, 92);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(0, 43, 92, 0.25);
}
.card-add-btn-icon:hover {
  background: #001f45;
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(0, 43, 92, 0.35);
}
.card-add-btn-icon:active {
  transform: scale(0.95);
}

/* Horizontal scroll product row */
.product-hscroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
  scroll-behavior: smooth;
}
.product-hscroll::-webkit-scrollbar {
  display: none;
}
.product-hscroll .product-card {
  min-width: calc((100vw - 3rem) / 2);
  max-width: calc((100vw - 3rem) / 2);
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .product-hscroll .product-card {
    min-width: calc((100vw - 3rem) / 3 - 1.25rem);
    max-width: calc((100vw - 3rem) / 3 - 1.25rem);
  }
}
@media (min-width: 768px) {
  .product-hscroll .product-card {
    min-width: calc((100vw - 3rem) / 4 - 1.25rem);
    max-width: calc((100vw - 3rem) / 4 - 1.25rem);
  }
}
@media (min-width: 992px) {
  .product-hscroll .product-card {
    min-width: calc((100vw - 3rem) / 5 - 1.25rem);
    max-width: calc((100vw - 3rem) / 5 - 1.25rem);
  }
}
@media (min-width: 1200px) {
  .product-hscroll .product-card {
    min-width: calc((min(1560px, 100vw) - 3rem) / 6 - 1.25rem);
    max-width: calc((min(1560px, 100vw) - 3rem) / 6 - 1.25rem);
  }
}

/* Carousel scroll arrows */
.hscroll-wrap {
  position: relative;
  overflow: visible;
}
.hscroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.15s;
  color: #002b5c;
  font-size: 1rem;
}
.hscroll-arrow:hover {
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(0, 43, 92, 0.3);
}
.hscroll-arrow-left {
  left: -14px;
}
.hscroll-arrow-right {
  right: -14px;
}

/* Featured grid image smaller padding */
.featured-grid .product-img {
  padding: 0.3rem;
}

/* ── Navbar redesign ── */

/* ── Header layout ── */
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
.hdr-logo {
  flex: 1;
  flex-shrink: 0;
}
.hdr-search-wrap {
  width: 560px;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.hdr-search-wrap .nav-search {
  display: flex;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 43, 92, 0.08);
}
.hdr-search-wrap .nav-search input {
  flex: 1;
  min-width: 0;
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0.6rem 1.35rem;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.hdr-search-wrap .nav-search input:focus {
  border-color: #002b5c;
  background: #fff;
  box-shadow: none;
  outline: none;
}
.hdr-search-wrap .nav-search .btn-search {
  height: 52px;
  padding: 0.6rem 1.5rem;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  white-space: nowrap;
}
.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 1;
  flex-shrink: 0;
}
.hdr-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hdr-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  margin: 0 0.4rem;
}

/* Mobile: 2-row header */
@media (max-width: 767px) {
  .hdr-inner {
    flex-wrap: wrap;
    padding: 0.6rem 1rem 0;
    gap: 0.35rem 0.75rem;
  }
  .hdr-logo { order: 1; flex: 0 0 auto; }
  .hdr-right { order: 2; flex: 0 0 auto; justify-content: flex-end; margin-left: auto; }
  .hdr-search-wrap {
    order: 3;
    width: 100%;
    flex-shrink: 0;
    padding-bottom: 0.5rem;
  }
  .hdr-search-wrap .nav-search {
    max-width: 560px;
    width: 100%;
    height: 42px;
    margin: 0 auto;
  }
  .hdr-search-wrap .nav-search input,
  .hdr-search-wrap .nav-search .btn-search {
    height: 42px;
    font-size: 13px;
  }
}

/* Static Content Drawer */
.static-page-drawer {
  width: min(520px, 100vw);
}
@media (max-width: 575px) {
  .static-page-drawer {
    width: 100vw !important;
    max-width: 100vw !important;
    border-left: none !important;
  }
}
.static-drawer-header {
  background: linear-gradient(135deg, #001a3d, #002b5c);
  color: #fff;
  padding: 1rem 1.25rem;
}
.static-drawer-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.static-drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.static-section-heading {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.static-delivery-days {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0.4rem 0 0.2rem;
}
.static-delivery-badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  white-space: nowrap;
}
.static-delivery-badge--2day {
  background: #fef3c7;
  color: #92400e;
}
.static-delivery-badge--next {
  background: #d1fae5;
  color: #065f46;
}
.static-delivery-detail {
  font-size: 0.78rem;
  color: #4b5563;
  line-height: 1.5;
}
.static-pack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.static-pack-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem;
}
.static-pack-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1a2a5e;
  background: #e0e7ff;
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}
.static-pack-label.cool {
  color: #0c4a6e;
  background: #bae6fd;
}
.static-pack-desc {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.static-pack-fee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  padding: 0.2rem 0;
  border-top: 1px solid #f1f5f9;
}
.static-fee-tier {
  color: #6b7280;
}
.static-fee-val {
  font-weight: 700;
  color: #1a2a5e;
}
.static-fee-val.free {
  color: #059669;
}
.static-payment-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.85rem;
}
.static-payment-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.static-payment-desc {
  font-size: 0.82rem;
  color: #4b5563;
  margin-bottom: 0;
}
.static-bank-detail {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin: 0.5rem 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.static-bank-detail > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.static-bank-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 80px;
}
.static-bank-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a2a5e;
  display: flex;
  align-items: center;
}
.static-intro {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0.4rem;
}
.static-list {
  padding-left: 1rem;
  margin-bottom: 0.75rem;
}
.static-list li {
  margin-bottom: 0.35rem;
}
/* ── Contact Us — Minimal Premium ─────────────────────────── */
.ct-section-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #9aa5be;
  margin-bottom: 0.8rem;
}
.ct-channels {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ct-channel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.14s, box-shadow 0.14s;
}
.ct-channel:hover {
  border-color: #d0d9ec;
  box-shadow: 0 2px 10px rgba(0,26,61,0.06);
  color: inherit;
  text-decoration: none;
}
.ct-channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #edf0f7;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ct-channel-icon--wa {
  background: #e6f4ef;
  color: #128c7e;
}
.ct-channel-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ct-channel-lbl {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9aa5be;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.ct-channel-val {
  font-size: 0.93rem;
  font-weight: 700;
  color: #001a3d;
  letter-spacing: -0.01em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ct-channel-note {
  font-size: 0.77rem;
  color: #7a8aaa;
  margin-top: 0.1rem;
  line-height: 1.55;
}
.ct-channel-arr {
  font-size: 0.75rem;
  color: #c7d4ee;
  flex-shrink: 0;
}

/* Mobile right drawer (offcanvas-end) */
.mobile-nav-drawer .offcanvas-header {
  background: linear-gradient(135deg, #001a3d, #002b5c);
  color: #fff;
  padding: 1rem 1.25rem;
}
.mobile-nav-drawer .offcanvas-body {
  padding: 0;
}
.mnav-section-title {
  font-size: 10px;
  font-weight: 900;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 0.75rem 1.25rem 0.35rem;
}
.mnav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  border-left: none;
  border-right: none;
  border-top: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s;
}
.mnav-link:hover {
  background: #f9fafb;
}
.mnav-link i {
  font-size: 1rem;
  color: #4b9b3a;
  width: 20px;
  text-align: center;
}
.mnav-auth {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

/* Category nav redesign */

/* Header icons – improved */
.hdr-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #374151;
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  transition: all 0.16s;
  cursor: pointer;
}
.hdr-icon-btn:hover {
  color: #002b5c;
  background: rgba(0, 43, 92, 0.05);
}
.hdr-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #374151;
  transition: all 0.16s;
}
.hdr-icon-btn:hover .hdr-icon-circle {
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 43, 92, 0.22);
}
.hdr-icon-lbl {
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hdr-icon-btn:hover .hdr-icon-lbl {
  color: #002b5c;
}

/* ── Base font override ── */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

/* ── White utility top-bar ── */
.util-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}
.util-bar a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.12s;
}
.util-bar a:hover {
  color: var(--primary);
}

/* ── Navy category navbar ── */
.nav-main {
  background: linear-gradient(135deg, #001226 0%, #002b5c 40%, #0a3d6e 75%, #0d3322 100%);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  padding: 0.3rem 0.4rem;
  gap: 0.1rem;
}
.nav-main::-webkit-scrollbar {
  display: none;
}
.nav-all-cats {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-all-cats:hover {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 60%, #3a8a2c 100%);
}
.nav-main-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  border-radius: var(--radius-pill);
}
.nav-main-link:hover {
  background: linear-gradient(135deg, rgba(75,155,58,0.4) 0%, rgba(26,95,180,0.3) 100%);
  color: #fff;
}

/* ── Hero two-column layout ── */
/* Hero sidebar */

/* Call center 3-col */
.cc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .cc-grid {
    grid-template-columns: 1fr;
  }
}
.cc-col {
  padding: 2rem 1.75rem;
}

/* Customer Support redesign */
.support-section {
  background: linear-gradient(135deg, #001e3c 0%, #002b5c 50%, #003d82 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.support-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.support-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.support-phone-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  font-feature-settings: "tnum";
}
@media (max-width: 575px) {
  .support-phone-num {
    font-size: 1.9rem;
    white-space: nowrap;
  }
}
.support-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
.support-ch-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.18s;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}
.support-ch-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
}
.support-ch-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Delivery section */

/* Shipping section */

/* Footer white */
.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.5) 42%,
    rgba(0, 0, 0, 0.15) 68%,
    transparent 100%
  );
}
.hero-banner-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2.5rem 5.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}
/* Arrow buttons – inline inside stats strip */
.hero-arrow-prev,
.hero-arrow-next {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.15s,
    transform 0.1s;
  backdrop-filter: blur(4px);
}
.hero-arrow-prev:hover,
.hero-arrow-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}
/* Stats strip */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0.55rem 1.5rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.2rem 1.35rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-num {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.hero-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}
@media (max-width: 991px) {
  .hero-banner-content {
    max-width: 100%;
    padding: 1.75rem 1.75rem 5.5rem;
  }
}
@media (max-width: 575px) {
  .hero-banner-content {
    padding: 1.25rem 1.25rem 5rem;
  }
  .hero-stat {
    padding: 0.2rem 0.75rem;
  }
  .hero-stat-num {
    font-size: 0.9rem;
  }
}

/* ── Photo category circles ── */

/* ── Sidebar category tree ── */
.cat-sub {
  background: #fafafa;
}
.leaf-link {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition:
    color 0.12s,
    background 0.12s;
}
.leaf-link:hover {
  color: #4b9b3a;
  background: #f0fdf4;
}

/* ── Trust cards ── */
.trust-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
  min-width: 180px;
  transition: box-shadow 0.15s;
}
.trust-card:hover {
  box-shadow: 0 4px 16px rgba(0, 43, 92, 0.08);
}
.trust-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}
.trust-card-title {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.15rem;
  font-family: var(--font-family);
}
.trust-card-sub {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.4;
}

/* === cart.css === */

html {
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.util-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}
.util-bar a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.12s;
}
.util-bar a:hover {
  color: #002b5c;
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
.hdr-logo {
  flex: 1;
  flex-shrink: 0;
}
.hdr-search-wrap {
  width: 560px;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.hdr-search-wrap .nav-search {
  display: flex;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 43, 92, 0.08);
}
.hdr-search-wrap .nav-search input {
  flex: 1;
  min-width: 0;
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0.6rem 1.35rem;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.hdr-search-wrap .nav-search input:focus {
  border-color: #002b5c;
  background: #fff;
  box-shadow: none;
  outline: none;
}
.hdr-search-wrap .nav-search .btn-search {
  height: 52px;
  padding: 0.6rem 1.5rem;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  white-space: nowrap;
}
.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 1;
  flex-shrink: 0;
}
.hdr-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  margin: 0 0.4rem;
}
@media (max-width: 767px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
  .hdr-search-wrap .nav-search {
    height: 44px;
  }
  .hdr-search-wrap .nav-search input,
  .hdr-search-wrap .nav-search .btn-search {
    height: 44px;
    font-size: 13px;
  }
}

.hdr-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #374151;
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  transition: all 0.16s;
  cursor: pointer;
}
.hdr-icon-btn:hover {
  color: #002b5c;
  background: rgba(0, 43, 92, 0.05);
}
.hdr-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #374151;
  transition: all 0.16s;
}
.hdr-icon-btn:hover .hdr-icon-circle {
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 43, 92, 0.22);
}
.hdr-icon-lbl {
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hdr-icon-btn:hover .hdr-icon-lbl {
  color: #002b5c;
}

.nav-main {
  background: linear-gradient(135deg, #001226 0%, #002b5c 40%, #0a3d6e 75%, #0d3322 100%);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  padding: 0.3rem 0.4rem;
  gap: 0.1rem;
}
.nav-main::after {
  display: none;
}
.nav-main::-webkit-scrollbar {
  display: none;
}
.nav-all-cats {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-all-cats:hover {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 60%, #3a8a2c 100%);
}
.nav-main-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  border-radius: var(--radius-pill);
}
.nav-main-link:hover {
  background: linear-gradient(135deg, rgba(75,155,58,0.4) 0%, rgba(26,95,180,0.3) 100%);
  color: #fff;
}

/* Toast */
.toast-wrap {
  position: fixed;
  top: 100px;
  right: 1.25rem;
  z-index: 9999;
  pointer-events: none;
  min-width: 280px;
  max-width: 340px;
}
.toast-msg {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #4b9b3a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* ── Cart table redesign ── */
.ct-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.ct-thead {
  grid-template-columns: 88px 1fr 140px 110px 48px;
  gap: 0;
  background: transparent;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.6rem 1rem 0.75rem;
  align-items: center;
}
.ct-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  background: #fff;
  transition: background 0.12s;
}
.ct-row:last-child { border-bottom: none; }
.ct-row:hover { background: #f8faff; }
.ct-mobile-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-light);
}
.ct-mobile-bar > * { flex: 1; display: flex; justify-content: center; align-items: center; }
.ct-mobile-price { flex-direction: column; justify-content: center; align-items: flex-end; text-align: right; }
@media (min-width: 768px) {
  .ct-row {
    display: grid;
    grid-template-columns: 88px 1fr 140px 110px 48px;
    gap: 0;
    align-items: center;
    flex-wrap: unset;
  }
}
.ct-img-wrap { display: block; flex-shrink: 0; }
.ct-img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}
.ct-name-col { flex: 1; min-width: 0; padding: 0 0.75rem; }
.ct-name {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 0.25rem;
  white-space: normal;
  word-break: break-word;
}
.ct-name:hover { color: var(--primary); }
.ct-unit-mobile { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.ct-qty-col { display: flex; align-items: center; justify-content: flex-end; }
.ct-total-col { padding-right: 0.5rem; text-align: right; }
.ct-total-main { font-size: 1.05rem; font-weight: 900; color: var(--primary); }
.ct-tax-note { font-size: 11px; color: #9ca3af; margin-top: 1px; }
.ct-del-col { display: flex; align-items: center; justify-content: flex-end; }
.ct-del-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #fecaca;
  background: #fff5f5;
  color: #ef4444;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.ct-del-btn:hover { background: #ef4444; border-color: #ef4444; color: #fff; }

/* Cart items */

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 4px;
}
.qty-ctrl button {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.12s;
  line-height: 1;
}
.qty-ctrl button:hover {
  border-color: var(--cta);
  color: var(--cta);
  background: var(--highlight);
}
.qty-ctrl input {
  width: 52px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
  background: var(--surface);
}
.qty-ctrl input:focus {
  border-color: var(--cta);
  outline: none;
}

/* Summary */
.summary-sticky {
  position: sticky;
  top: 90px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border-light);
}
.summary-line:last-of-type {
  border-bottom: none;
}
.summary-line .lbl {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}
.summary-line .val {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.delivery-bar-wrap {
  background: var(--border-light);
  border-radius: 99px;
  height: 6px;
  overflow: hidden;
  margin-top: 0.4rem;
}
.delivery-bar {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  transition: width 0.4s ease;
}

/* Coupon */

/* Empty state */
.empty-icon {
  width: 110px;
  height: 110px;
  background: var(--highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* === product.css === */

/* ── Base font override ── */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

/* ── White utility top-bar ── */
.util-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}
.util-bar a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.12s;
}
.util-bar a:hover {
  color: #002b5c;
}

/* ── Header 3-column grid layout ── */
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
.hdr-logo {
  flex: 1;
  flex-shrink: 0;
}
.hdr-search-wrap {
  width: 560px;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.hdr-search-wrap .nav-search {
  display: flex;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 43, 92, 0.08);
}
.hdr-search-wrap .nav-search input {
  flex: 1;
  min-width: 0;
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0.6rem 1.35rem;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.hdr-search-wrap .nav-search input:focus {
  border-color: #002b5c;
  background: #fff;
  box-shadow: none;
  outline: none;
}
.hdr-search-wrap .nav-search .btn-search {
  height: 52px;
  padding: 0.6rem 1.5rem;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  white-space: nowrap;
}
.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 1;
  flex-shrink: 0;
}
.hdr-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  margin: 0 0.4rem;
}
@media (max-width: 767px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
  .hdr-search-wrap .nav-search {
    height: 44px;
  }
  .hdr-search-wrap .nav-search input,
  .hdr-search-wrap .nav-search .btn-search {
    height: 44px;
    font-size: 13px;
  }
}

/* ── Header icons ── */
.hdr-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #374151;
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  transition: all 0.16s;
  cursor: pointer;
}
.hdr-icon-btn:hover {
  color: #002b5c;
  background: rgba(0, 43, 92, 0.05);
}
.hdr-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #374151;
  transition: all 0.16s;
}
.hdr-icon-btn:hover .hdr-icon-circle {
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 43, 92, 0.22);
}
.hdr-icon-lbl {
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hdr-icon-btn:hover .hdr-icon-lbl {
  color: #002b5c;
}

/* ── Navy category navbar ── */
.nav-main {
  background: linear-gradient(135deg, #001226 0%, #002b5c 40%, #0a3d6e 75%, #0d3322 100%);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  padding: 0.3rem 0.4rem;
  gap: 0.1rem;
}
.nav-main::after {
  display: none;
}
.nav-main::-webkit-scrollbar {
  display: none;
}
.nav-all-cats {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-all-cats:hover {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 60%, #3a8a2c 100%);
}
.nav-main-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  border-radius: var(--radius-pill);
}
.nav-main-link:hover {
  background: linear-gradient(135deg, rgba(75,155,58,0.4) 0%, rgba(26,95,180,0.3) 100%);
  color: #fff;
}

/* ── Toast ── */
.toast-wrap {
  position: fixed;
  top: 100px;
  right: 1.25rem;
  z-index: 9999;
  pointer-events: none;
  min-width: 280px;
  max-width: 340px;
}
.toast-msg {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #4b9b3a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* ── Product page-specific overrides ─── */
.main-img-wrap {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--bg);
}
.main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-img-wrap:hover img {
  transform: scale(1.04);
}

.thumb-btn {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border-light);
  background: var(--bg);
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  display: block;
}
.thumb-btn:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.thumb-btn.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 42, 94, 0.15);
}

/* ── Product card hover actions (match homepage) ── */
.card-add-btn-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgb(0, 43, 92);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(0, 43, 92, 0.25);
}
.card-add-btn-icon:hover {
  background: #001f45;
  transform: scale(1.1);
}
.card-add-btn-icon:active {
  transform: scale(0.95);
}
.product-info {
  padding: 0.6rem 0.7rem 0.7rem;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.discount-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  background: linear-gradient(135deg, #b45309, #d97706);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  line-height: 1.4;
  letter-spacing: 0.2px;
}
.featured-grid .product-img {
  padding: 0.3rem;
}

/* === checkout.css === */

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}
.util-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}
.util-bar a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.12s;
}
.util-bar a:hover {
  color: #002b5c;
}
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
.hdr-logo {
  flex: 1;
  flex-shrink: 0;
}
.hdr-search-wrap {
  width: 560px;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.hdr-search-wrap .nav-search {
  display: flex;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 43, 92, 0.08);
}
.hdr-search-wrap .nav-search input {
  flex: 1;
  min-width: 0;
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0.6rem 1.35rem;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.hdr-search-wrap .nav-search input:focus {
  border-color: #002b5c;
  background: #fff;
  box-shadow: none;
  outline: none;
}
.hdr-search-wrap .nav-search .btn-search {
  height: 52px;
  padding: 0.6rem 1.5rem;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  white-space: nowrap;
}
.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 1;
  flex-shrink: 0;
}
.hdr-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  margin: 0 0.4rem;
}
@media (max-width: 767px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
  .hdr-search-wrap .nav-search {
    height: 44px;
  }
  .hdr-search-wrap .nav-search input,
  .hdr-search-wrap .nav-search .btn-search {
    height: 44px;
    font-size: 13px;
  }
}
.hdr-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #374151;
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  transition: all 0.16s;
  cursor: pointer;
}
.hdr-icon-btn:hover {
  color: #002b5c;
  background: rgba(0, 43, 92, 0.05);
}
.hdr-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #374151;
  transition: all 0.16s;
}
.hdr-icon-btn:hover .hdr-icon-circle {
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 43, 92, 0.22);
}
.hdr-icon-lbl {
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hdr-icon-btn:hover .hdr-icon-lbl {
  color: #002b5c;
}
.nav-main {
  background: linear-gradient(135deg, #001226 0%, #002b5c 40%, #0a3d6e 75%, #0d3322 100%);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  padding: 0.3rem 0.4rem;
  gap: 0.1rem;
}
.nav-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #4b9b3a 0%,
    #1a5fb4 40%,
    #002b5c 70%,
    transparent 100%
  );
}
.nav-main::-webkit-scrollbar {
  display: none;
}
.nav-all-cats {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-all-cats:hover {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 60%, #3a8a2c 100%);
}
.nav-main-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  border-radius: var(--radius-pill);
}
.nav-main-link:hover {
  background: linear-gradient(135deg, rgba(75,155,58,0.4) 0%, rgba(26,95,180,0.3) 100%);
  color: #fff;
}
.toast-wrap {
  position: fixed;
  top: 100px;
  right: 1.25rem;
  z-index: 9999;
  pointer-events: none;
  min-width: 280px;
  max-width: 340px;
}
.toast-msg {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #4b9b3a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* ── Checkout-specific overrides ── */
.checkout-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.checkout-section-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checkout-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.checkout-section-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Toggle Buttons (Sign In / Guest) */
.mode-toggle {
  display: flex;
  gap: 0;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 1.75rem;
}
.mode-toggle-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.6rem 1rem;
  font-weight: 800;
  font-size: 15px;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}
.mode-toggle-btn.active {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 42, 94, 0.25);
}

/* Date cards */
.date-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: #fff;
}
.date-card:hover {
  border-color: var(--primary);
  background: var(--bg);
}
.date-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 42, 94, 0.3);
}
.date-card .day-name {
  font-size: 1.05rem;
  font-weight: 900;
  margin: 0.15rem 0;
}
.date-card .day-date {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.8;
}

.date-card.selected .day-date {
  color: rgba(255, 255, 255, 0.85);
}

/* Time slot cards */
.time-slot {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
  background: #fff;
  color: var(--text);
}
.time-slot:hover {
  border-color: var(--primary);
  background: var(--bg);
}
.time-slot.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 42, 94, 0.25);
}

/* Shipping / Payment radio cards */
.option-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  background: #fff;
  position: relative;
}
.option-card:hover {
  border-color: var(--primary);
  background: var(--bg);
}
.option-card.selected {
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: 0 4px 16px rgba(26, 42, 94, 0.12);
}
.option-card .selected-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.option-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.option-icon i {
  font-size: 1.3rem;
  color: #fff;
}
.option-card.cod-card .option-icon {
  background: linear-gradient(135deg, #f9a825, #fdd835);
}
.option-card.cod-card .option-icon i {
  color: var(--primary-dark);
}
.option-card.bank-card .option-icon {
  background: linear-gradient(135deg, #0e7490, #22d3ee);
}
.option-card.bank-card .option-icon i {
  color: #fff;
}
.bt-inline-notice {
  margin-top: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: #f8fafc;
  border-left: 3px solid #0e7490;
  border-radius: 4px;
  padding: 0.6rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.5;
}
.bt-inline-icon {
  color: #0e7490;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Credit card form */

/* Stripe Card Element */

/* Review summary boxes */

/* Product rows in review & sidebar */

/* Order total rows */

/* Success screen */
@keyframes successPop {
  0% {
    transform: scale(0) rotate(-10deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.15) rotate(3deg);
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}
@keyframes checkDraw {
  0% {
    stroke-dashoffset: 80;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.success-circle {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #1a6e2e 0%, #4b9b3a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 0 12px 40px rgba(75, 155, 58, 0.4);
}
.success-circle svg {
  overflow: visible;
}
.success-circle .check-path {
  stroke: #fff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: checkDraw 0.5s 0.4s ease forwards;
}

/* ── Success screen redesign ── */
.success-centered-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}
@media (max-width: 575.98px) {
  .success-centered-wrap { padding-left: 1.25rem; padding-right: 1.25rem; }
}
.success-order-block {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #f0fdf4;
  border: 1.5px dashed #86efac;
  border-radius: 10px;
  padding: 0.6rem 1.1rem;
}
.sob-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #16a34a;
  margin-bottom: 0.15rem;
}
.sob-number {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary-dark, #1a2a5e);
  letter-spacing: 0.4px;
}
.sob-copy-btn {
  background: #fff;
  border: 1.5px solid #86efac;
  color: #16a34a;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.sob-copy-btn:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.success-info-box {
  background: #f8fafc;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  height: 100%;
}
.success-info-box--warn {
  background: #fffbeb;
  border-color: #fde68a;
}
.sib-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.sib-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.sib-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.success-email-notice {
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
}
.sen-main {
  background: #f0fdf4;
  border-bottom: 1px solid #bbf7d0;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #166534;
  line-height: 1.55;
}

/* Bank Transfer success card */
.bts-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #a5f3fc;
  box-shadow: 0 4px 20px rgba(14, 116, 144, 0.1);
}
.bts-header {
  background: linear-gradient(135deg, #0c4a6e, #0e7490);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.bts-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bts-header-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.bts-title {
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}
.bts-subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}
.bts-amount-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 0.45rem 0.85rem;
  text-align: right;
  flex-shrink: 0;
}
.bts-amount-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bts-amount-val {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.bts-body {
  background: #fff;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bts-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #e0f7fa;
  border-radius: 10px;
  overflow: hidden;
}
.bts-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid #e0f7fa;
  border-right: 1px solid #e0f7fa;
}
.bts-detail:nth-child(even) { border-right: none; }
.bts-detail--full {
  grid-column: 1 / -1;
  border-right: none;
}
.bts-detail:last-child,
.bts-detail--full:last-child { border-bottom: none; }
.bts-dlbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bts-dval {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.bts-ref-box {
  background: #f0fdfe;
  border: 2px solid #0e7490;
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
.bts-ref-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0e7490;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
.bts-ref-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0c4a6e;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.2;
}
.bts-ref-hint {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-top: 0.3rem;
}
.bts-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: #78350f;
  line-height: 1.5;
}
.bts-warn-icon {
  color: #d97706;
  flex-shrink: 0;
  margin-top: 2px;
}
.bts-contact-link {
  color: #0e7490;
  font-weight: 800;
  text-decoration: none;
}
.bts-contact-link:hover { text-decoration: underline; }

/* Sidebar security strip */

/* Step bar responsive */

/* Input prefix icon */

/* Address lookup button group */

/* Back button text link style */

/* === account.css === */

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}
.util-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}
.util-bar a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.12s;
}
.util-bar a:hover {
  color: #002b5c;
}
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
.hdr-logo {
  flex: 1;
  flex-shrink: 0;
}
.hdr-search-wrap {
  width: 560px;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.hdr-search-wrap .nav-search {
  display: flex;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 43, 92, 0.08);
}
.hdr-search-wrap .nav-search input {
  flex: 1;
  min-width: 0;
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0.6rem 1.35rem;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.hdr-search-wrap .nav-search input:focus {
  border-color: #002b5c;
  background: #fff;
  box-shadow: none;
  outline: none;
}
.hdr-search-wrap .nav-search .btn-search {
  height: 52px;
  padding: 0.6rem 1.5rem;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  white-space: nowrap;
}
.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 1;
  flex-shrink: 0;
}
.hdr-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  margin: 0 0.4rem;
}
@media (max-width: 767px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
  .hdr-search-wrap .nav-search {
    height: 44px;
  }
  .hdr-search-wrap .nav-search input,
  .hdr-search-wrap .nav-search .btn-search {
    height: 44px;
    font-size: 13px;
  }
}
.hdr-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #374151;
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  transition: all 0.16s;
  cursor: pointer;
}
.hdr-icon-btn:hover {
  color: #002b5c;
  background: rgba(0, 43, 92, 0.05);
}
.hdr-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #374151;
  transition: all 0.16s;
}
.hdr-icon-btn:hover .hdr-icon-circle {
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 43, 92, 0.22);
}
.hdr-icon-lbl {
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hdr-icon-btn:hover .hdr-icon-lbl {
  color: #002b5c;
}
.nav-main {
  background: linear-gradient(135deg, #001226 0%, #002b5c 40%, #0a3d6e 75%, #0d3322 100%);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  padding: 0.3rem 0.4rem;
  gap: 0.1rem;
}
.nav-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #4b9b3a 0%,
    #1a5fb4 40%,
    #002b5c 70%,
    transparent 100%
  );
}
.nav-main::-webkit-scrollbar {
  display: none;
}
.nav-all-cats {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-all-cats:hover {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 60%, #3a8a2c 100%);
}
.nav-main-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  border-radius: var(--radius-pill);
}
.nav-main-link:hover {
  background: linear-gradient(135deg, rgba(75,155,58,0.4) 0%, rgba(26,95,180,0.3) 100%);
  color: #fff;
}
.toast-wrap {
  position: fixed;
  top: 100px;
  right: 1.25rem;
  z-index: 9999;
  pointer-events: none;
  min-width: 280px;
  max-width: 340px;
}
.toast-msg {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #4b9b3a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* === login.css === */

/* ── Base font override ── */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

/* ── White utility top-bar ── */
.util-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}
.util-bar a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.12s;
}
.util-bar a:hover {
  color: #002b5c;
}

/* ── Header 3-column grid layout ── */
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
.hdr-logo {
  flex: 1;
  flex-shrink: 0;
}
.hdr-search-wrap {
  width: 560px;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.hdr-search-wrap .nav-search {
  display: flex;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 43, 92, 0.08);
}
.hdr-search-wrap .nav-search input {
  flex: 1;
  min-width: 0;
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0.6rem 1.35rem;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.hdr-search-wrap .nav-search input:focus {
  border-color: #002b5c;
  background: #fff;
  box-shadow: none;
  outline: none;
}
.hdr-search-wrap .nav-search .btn-search {
  height: 52px;
  padding: 0.6rem 1.5rem;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  white-space: nowrap;
}
.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 1;
  flex-shrink: 0;
}
.hdr-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  margin: 0 0.4rem;
}
@media (max-width: 767px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
  .hdr-search-wrap .nav-search {
    height: 44px;
  }
  .hdr-search-wrap .nav-search input,
  .hdr-search-wrap .nav-search .btn-search {
    height: 44px;
    font-size: 13px;
  }
}

/* ── Header icons ── */
.hdr-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #374151;
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  transition: all 0.16s;
  cursor: pointer;
}
.hdr-icon-btn:hover {
  color: #002b5c;
  background: rgba(0, 43, 92, 0.05);
}
.hdr-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #374151;
  transition: all 0.16s;
}
.hdr-icon-btn:hover .hdr-icon-circle {
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 43, 92, 0.22);
}
.hdr-icon-lbl {
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hdr-icon-btn:hover .hdr-icon-lbl {
  color: #002b5c;
}

/* ── Navy category navbar ── */
.nav-main {
  background: linear-gradient(135deg, #001226 0%, #002b5c 40%, #0a3d6e 75%, #0d3322 100%);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  padding: 0.3rem 0.4rem;
  gap: 0.1rem;
}
.nav-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #4b9b3a 0%,
    #1a5fb4 40%,
    #002b5c 70%,
    transparent 100%
  );
}
.nav-main::-webkit-scrollbar {
  display: none;
}
.nav-all-cats {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-all-cats:hover {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 60%, #3a8a2c 100%);
}
.nav-main-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  border-radius: var(--radius-pill);
}
.nav-main-link:hover {
  background: linear-gradient(135deg, rgba(75,155,58,0.4) 0%, rgba(26,95,180,0.3) 100%);
  color: #fff;
}

/* ── Toast ── */
.toast-wrap {
  position: fixed;
  top: 100px;
  right: 1.25rem;
  z-index: 9999;
  pointer-events: none;
  min-width: 280px;
  max-width: 340px;
}
.toast-msg {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #4b9b3a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* ── Auth Layout ── */
body {
  background: var(--bg);
}

/* ── Hero Panel ── */

/* Decorative circles */

/* Benefit items */

/* Stats row */

/* ── Form Panel ── */
.btn-postal-lookup {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0 1rem;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  height: 42px;
  transition: background 0.15s;
}
.btn-postal-lookup:hover { background: var(--primary-dark); }

/* Address lookup */
.addr-lookup-hint {
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
  margin-left: 2px;
}
.addr-found-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #15803d;
  gap: 4px;
}
/* Dot loader */
@keyframes dotPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

/* Address fields grid */
.addr-field-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
/* Unified icon-prefix wrapper for addr fields */
.addr-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.addr-input-wrap .addr-input {
  padding-left: 2.5rem;
  width: 100%;
  height: 42px;
}
.addr-input-icon {
  position: absolute;
  left: 12px;
  font-size: 15px;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}
.addr-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.addr-field-label {
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.addr-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.addr-input:focus   { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,42,94,0.1); }
.addr-input.is-invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.addr-input.is-valid   { border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.1); }
.co-field-error {
  font-size: 12px;
  font-weight: 600;
  color: #ef4444;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.co-field-error::before {
  content: "⚠";
  font-size: 11px;
}
@media (max-width: 767px) {
  .addr-field-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .addr-field-row > .addr-field { flex: 1 1 100% !important; max-width: 100% !important; width: 100%; }
}

/* Registration Step Indicator */
.reg-steps {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.reg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.reg-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}
.reg-step-circle.current {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0fdf4;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.14);
}
.reg-step-circle.done {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.reg-step-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.reg-step.active .reg-step-label {
  color: var(--primary);
}
.reg-step-line {
  width: 56px;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.reg-step-line.done {
  background: var(--primary);
}
/* Email verification */

.btn-auth-back {
  background: #fff;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-auth-back:hover {
  background: var(--primary);
  color: #fff;
}

/* Pill Tabs */
.auth-tabs {
  display: flex;
  gap: 6px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 2rem;
}
.tab-pill {
  flex: 1;
  border: none;
  background: transparent;
  font-weight: 800;
  font-size: 15px;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.tab-pill.active {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 42, 94, 0.25);
}
.tab-pill:hover:not(.active) {
  color: var(--primary);
  background: var(--highlight);
}

/* Input with prefix icon */
.input-group-icon {
  position: relative;
}
.input-group-icon .icon-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
  z-index: 5;
}
.input-group-icon .form-control,
.input-group-icon .addr-input {
  padding-left: 2.7rem;
}
.input-group-icon .eye-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: var(--transition);
  z-index: 5;
}
.input-group-icon .eye-btn:hover {
  color: var(--primary);
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--border-light);
  border-radius: 1px;
}

/* Google signup info card */
.google-signup-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #f8faff;
  border: 1.5px solid #dadce0;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
}
.gsi-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.3;
}
.gsi-email {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Social buttons */

.social-btn-full {
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid #dadce0;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  background: #fff;
  transition: box-shadow 0.15s, background 0.15s;
}
.social-btn-full:hover {
  background: #f8faff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  border-color: #b0c4f5;
}

.btn-continue-shopping {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.55rem 1.25rem;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  background: #fff;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-continue-shopping:hover {
  background: var(--primary);
  color: #fff;
}
.btn-continue-shopping--full {
  font-size: 0.875rem;
}

/* ── Unified primary CTA (Proceed to Checkout / Place Order) ── */
.btn-primary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 43, 92, 0.3);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-primary-cta:hover {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 43, 92, 0.4);
}
.btn-primary-cta:active { transform: translateY(0); box-shadow: none; }
.btn-primary-cta.btn-disabled-state,
.btn-primary-cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Unified fee notice ── */
.cart-fee-notice {
  margin-top: 1.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-size: 12px;
  color: #92400e;
  line-height: 1.5;
}

/* Benefits preview card */

/* Form label sizing */
.auth-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
  display: block;
}

/* Submit buttons */
.btn-auth-primary {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  border: none;
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  border-radius: var(--radius-pill);
  padding: 0.9rem 1.5rem;
  width: 100%;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
}
.btn-auth-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 43, 92, 0.35);
}
.btn-auth-primary:disabled {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-auth-signin {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  border: none;
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  border-radius: var(--radius-pill);
  padding: 0.9rem 1.5rem;
  width: 100%;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.btn-auth-signin:hover:not(:disabled) {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 43, 92, 0.4);
}
.btn-auth-signin:disabled {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Remember me & checkbox */

/* Bottom switch link */
.auth-switch {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.auth-switch a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
  transition: var(--transition);
}
.auth-switch a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Forgot password */
.forgot-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.forgot-link:hover { color: var(--primary); }
.forgot-panel {
  background: #f9fafb;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.forgot-panel-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.forgot-panel-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.btn-forgot-send {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 1.1rem;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  height: 42px;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-forgot-send:hover { background: var(--primary-dark); }

/* Responsive */

/* === wishlist.css === */

/* ── Base font override ── */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

/* ── White utility top-bar ── */
.util-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}
.util-bar a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.12s;
}
.util-bar a:hover {
  color: #002b5c;
}

/* ── Header 3-column grid layout ── */
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
.hdr-logo {
  flex: 1;
  flex-shrink: 0;
}
.hdr-search-wrap {
  width: 560px;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.hdr-search-wrap .nav-search {
  display: flex;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 43, 92, 0.08);
}
.hdr-search-wrap .nav-search input {
  flex: 1;
  min-width: 0;
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0.6rem 1.35rem;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.hdr-search-wrap .nav-search input:focus {
  border-color: #002b5c;
  background: #fff;
  box-shadow: none;
  outline: none;
}
.hdr-search-wrap .nav-search .btn-search {
  height: 52px;
  padding: 0.6rem 1.5rem;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  white-space: nowrap;
}
.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 1;
  flex-shrink: 0;
}
.hdr-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  margin: 0 0.4rem;
}
@media (max-width: 767px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
  .hdr-search-wrap .nav-search {
    height: 44px;
  }
  .hdr-search-wrap .nav-search input,
  .hdr-search-wrap .nav-search .btn-search {
    height: 44px;
    font-size: 13px;
  }
}

/* ── Header icons ── */
.hdr-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #374151;
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  transition: all 0.16s;
  cursor: pointer;
}
.hdr-icon-btn:hover {
  color: #002b5c;
  background: rgba(0, 43, 92, 0.05);
}
.hdr-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #374151;
  transition: all 0.16s;
}
.hdr-icon-btn:hover .hdr-icon-circle {
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 43, 92, 0.22);
}
.hdr-icon-lbl {
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hdr-icon-btn:hover .hdr-icon-lbl {
  color: #002b5c;
}

/* ── Navy category navbar ── */
.nav-main {
  background: linear-gradient(135deg, #001226 0%, #002b5c 40%, #0a3d6e 75%, #0d3322 100%);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  padding: 0.3rem 0.4rem;
  gap: 0.1rem;
}
.nav-main::after {
  display: none;
}
.nav-main::-webkit-scrollbar {
  display: none;
}
.nav-all-cats {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-all-cats:hover {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 60%, #3a8a2c 100%);
}
.nav-main-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  border-radius: var(--radius-pill);
}
.nav-main-link:hover {
  background: linear-gradient(135deg, rgba(75,155,58,0.4) 0%, rgba(26,95,180,0.3) 100%);
  color: #fff;
}

/* ── Toast ── */
.toast-wrap {
  position: fixed;
  top: 100px;
  right: 1.25rem;
  z-index: 9999;
  pointer-events: none;
  min-width: 280px;
  max-width: 340px;
}
.toast-msg {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #4b9b3a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* ── Wishlist page-specific ── */

/* === search.css === */

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}
.util-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}
.util-bar a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.12s;
}
.util-bar a:hover {
  color: #002b5c;
}
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
.hdr-logo {
  flex: 1;
  flex-shrink: 0;
}
.hdr-search-wrap {
  width: 560px;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.hdr-search-wrap .nav-search {
  display: flex;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 43, 92, 0.08);
}
.hdr-search-wrap .nav-search input {
  flex: 1;
  min-width: 0;
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0.6rem 1.35rem;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.hdr-search-wrap .nav-search input:focus {
  border-color: #002b5c;
  background: #fff;
  box-shadow: none;
  outline: none;
}
.hdr-search-wrap .nav-search .btn-search {
  height: 52px;
  padding: 0.6rem 1.5rem;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  white-space: nowrap;
}
.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 1;
  flex-shrink: 0;
}
.hdr-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  margin: 0 0.4rem;
}
@media (max-width: 767px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
  .hdr-search-wrap .nav-search {
    height: 44px;
  }
  .hdr-search-wrap .nav-search input,
  .hdr-search-wrap .nav-search .btn-search {
    height: 44px;
    font-size: 13px;
  }
}
.hdr-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #374151;
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  transition: all 0.16s;
  cursor: pointer;
}
.hdr-icon-btn:hover {
  color: #002b5c;
  background: rgba(0, 43, 92, 0.05);
}
.hdr-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #374151;
  transition: all 0.16s;
}
.hdr-icon-btn:hover .hdr-icon-circle {
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 43, 92, 0.22);
}
.hdr-icon-lbl {
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hdr-icon-btn:hover .hdr-icon-lbl {
  color: #002b5c;
}
.nav-main {
  background: linear-gradient(135deg, #001226 0%, #002b5c 40%, #0a3d6e 75%, #0d3322 100%);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  padding: 0.3rem 0.4rem;
  gap: 0.1rem;
}
.nav-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #4b9b3a 0%,
    #1a5fb4 40%,
    #002b5c 70%,
    transparent 100%
  );
}
.nav-main::-webkit-scrollbar {
  display: none;
}
.nav-all-cats {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-all-cats:hover {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 60%, #3a8a2c 100%);
}
.nav-main-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  border-radius: var(--radius-pill);
}
.nav-main-link:hover {
  background: linear-gradient(135deg, rgba(75,155,58,0.4) 0%, rgba(26,95,180,0.3) 100%);
  color: #fff;
}
.toast-wrap {
  position: fixed;
  top: 100px;
  right: 1.25rem;
  z-index: 9999;
  pointer-events: none;
  min-width: 280px;
  max-width: 340px;
}
.toast-msg {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #4b9b3a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}
.view-btn {
  padding: 0.4rem 0.65rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
  line-height: 1;
}
.view-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
/* ── Product card hover actions (match homepage) ── */
.card-add-btn-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgb(0, 43, 92);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(0, 43, 92, 0.25);
}
.card-add-btn-icon:hover {
  background: #001f45;
  transform: scale(1.1);
}
.card-add-btn-icon:active {
  transform: scale(0.95);
}
.product-info {
  padding: 0.6rem 0.7rem 0.7rem;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.discount-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  background: linear-gradient(135deg, #b45309, #d97706);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  line-height: 1.4;
  letter-spacing: 0.2px;
}
.featured-grid .product-img {
  padding: 0.3rem;
}

/* ── Pagination ── */
.pg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding: 0.5rem;
}
.pg-num,
.pg-nav {
  height: 40px;
  min-width: 40px;
  padding: 0 0.7rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: all 0.18s;
}
.pg-num:hover,
.pg-nav:hover {
  border-color: #002b5c;
  color: #002b5c;
  background: #f0f4ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 43, 92, 0.12);
}
.pg-num.pg-active {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  border-color: transparent;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(0, 43, 92, 0.35);
  transform: scale(1.1);
}
.pg-nav {
  padding: 0 1.1rem;
  font-weight: 800;
  color: #002b5c;
  white-space: nowrap;
}
.pg-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: #fff;
  border-color: #e5e7eb;
  color: #374151;
}

/* === compare.css === */

/* ── Base font override ── */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

/* ── White utility top-bar ── */
.util-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}
.util-bar a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.12s;
}
.util-bar a:hover {
  color: #002b5c;
}

/* ── Header 3-column grid layout ── */
.hdr-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
.hdr-logo {
  flex: 1;
  flex-shrink: 0;
}
.hdr-search-wrap {
  width: 560px;
  max-width: 100%;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.hdr-search-wrap .nav-search {
  display: flex;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 43, 92, 0.08);
}
.hdr-search-wrap .nav-search input {
  flex: 1;
  min-width: 0;
  height: 52px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 0.6rem 1.35rem;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.hdr-search-wrap .nav-search input:focus {
  border-color: #002b5c;
  background: #fff;
  box-shadow: none;
  outline: none;
}
.hdr-search-wrap .nav-search .btn-search {
  height: 52px;
  padding: 0.6rem 1.5rem;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  white-space: nowrap;
}
.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 1;
  flex-shrink: 0;
}
.hdr-divider {
  width: 1px;
  height: 32px;
  background: #e5e7eb;
  margin: 0 0.4rem;
}
@media (max-width: 767px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.65rem 1rem;
    gap: 0.75rem;
  }
  .hdr-search-wrap .nav-search {
    height: 44px;
  }
  .hdr-search-wrap .nav-search input,
  .hdr-search-wrap .nav-search .btn-search {
    height: 44px;
    font-size: 13px;
  }
}

/* ── Header icons ── */
.hdr-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #374151;
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
  transition: all 0.16s;
  cursor: pointer;
}
.hdr-icon-btn:hover {
  color: #002b5c;
  background: rgba(0, 43, 92, 0.05);
}
.hdr-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #374151;
  transition: all 0.16s;
}
.hdr-icon-btn:hover .hdr-icon-circle {
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 43, 92, 0.22);
}
.hdr-icon-lbl {
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hdr-icon-btn:hover .hdr-icon-lbl {
  color: #002b5c;
}

/* ── Navy category navbar ── */
.nav-main {
  background: linear-gradient(135deg, #001226 0%, #002b5c 40%, #0a3d6e 75%, #0d3322 100%);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  padding: 0.3rem 0.4rem;
  gap: 0.1rem;
}
.nav-main::after {
  display: none;
}
.nav-main::-webkit-scrollbar {
  display: none;
}
.nav-all-cats {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-all-cats:hover {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 60%, #3a8a2c 100%);
}
.nav-main-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  border-radius: var(--radius-pill);
}
.nav-main-link:hover {
  background: linear-gradient(135deg, rgba(75,155,58,0.4) 0%, rgba(26,95,180,0.3) 100%);
  color: #fff;
}

/* ── Toast ── */
.toast-wrap {
  position: fixed;
  top: 100px;
  right: 1.25rem;
  z-index: 9999;
  pointer-events: none;
  min-width: 280px;
  max-width: 340px;
}
.toast-msg {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #4b9b3a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* ===== COMPARE TABLE ===== */

/* Header row */

/* Body rows */

/* First column (attribute label) */

/* Alternating rows */

/* Hover highlight */

/* Data cells */

/* Product image header */

/* Remove button */

/* Check icons */

/* Empty add-slot column */

/* === Extracted Inline Styles === */

/* Toast notification icon (repeated across all pages) */
.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, #002b5c, #4b9b3a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Toast label (small uppercase heading inside toast) */
.toast-label {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.1rem;
}

/* Toast body text */
.toast-body-text {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  white-space: normal;
}

/* Utility bar inner layout (max-width container inside .util-bar) */
.util-bar-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .util-bar-inner { padding: 0 1rem; justify-content: center; }
  .util-bar-text { justify-content: center; flex-wrap: wrap; text-align: center; }
}

/* Logo wordmark — "My" and "Shop" in navy */
.logo-word-navy {
  font-family: var(--font-family);
  font-size: 1.35rem;
  font-weight: 900;
  color: #002b5c;
  letter-spacing: -0.04em;
}

/* Logo wordmark — "Daily" in gradient green */
.logo-word-daily {
  font-family: var(--font-family);
  font-size: 1.35rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4b9b3a, #2d7a25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

/* Logo sub-tagline row */
.logo-tagline {
  font-size: 0.7rem;
  color: #6b7280;
  letter-spacing: 0.01em;
  margin-top: 0.1rem;
  white-space: nowrap;
  line-height: 1;
}

/* Arabic حلال watermark inline in logo/taglines */
.halal-arabic-inline {
  font-family: var(--font-family);
  direction: rtl;
  color: #2e7d32;
  font-weight: 800;
}

/* Phone icon circle in header (call-to-order button) */
.hdr-phone-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #002b5c, #1a5fb4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* "Call to Order" small label above phone number */
.call-to-order-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Phone number in header */
.hdr-phone-num {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--primary);
}

/* === Shared header/footer extracted classes (identical across all pages) === */
.cart-checkout-btn {
  font-size: 13px;
  padding: 0.5rem 1rem;
}
.cart-close-btn {
  font-size: 0.65rem;
}
.cart-dropdown-scroll {
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: none;
}
.cart-dropdown-scroll::-webkit-scrollbar { display: none; }

/* Cart dropdown items */
.cart-item-row {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.cart-item-name { word-break: break-word; white-space: normal; }
.cart-item-row:last-child { border-bottom: none; }
.cart-item-row img {
  width: 46px; height: 46px; object-fit: cover;
  border-radius: 8px; flex-shrink: 0;
  border: 1px solid var(--border-light);
}
.cart-item-name { font-size: 0.88rem; color: #111827; }
.cart-item-meta { font-size: 0.82rem; color: #6b7280; margin-top: 2px; }
.cart-item-price { color: var(--primary); }
.cart-remove-btn {
  background: #f3f4f6; border: none; border-radius: 50%;
  width: 26px; height: 26px; display: flex; align-items: center;
  justify-content: center; cursor: pointer; flex-shrink: 0;
  color: #6b7280; font-size: 1rem;
  transition: background 0.15s, color 0.15s;
  margin-top: 2px;
}
.cart-remove-btn:hover { background: #fee2e2; color: #dc2626; }
.cart-empty-text {
  font-size: 0.9rem; color: #9ca3af; font-weight: 600;
}
.cart-footer-bar {
  border-top: 1px solid var(--border-light);
  background: #f9fafb;
}
.cart-subtotal-row {
  font-size: 0.92rem; color: #374151;
}
.cart-subtotal-row .cart-item-price { font-size: 1.05rem; }
.cart-empty-text {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 2rem;
}
.cart-footer-bar {
  border-top: 1px solid var(--border-light);
  background: var(--bg);
}
.cart-item-meta {
  font-size: 12px;
  color: var(--text-muted);
}
.cart-item-name {
  font-size: 13px;
  color: var(--text);
}
.cart-item-price {
  color: var(--primary);
}
.cart-remove-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
}
.cart-subtotal-label {
  color: #002b5c;
  font-weight: 800;
  font-size: 11px;
}
.cat-btn-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cat-btn-link {
  flex: 1;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.cat-btn-link:hover {
  color: var(--primary);
}
.cat-chevron-toggle {
  background: none;
  border: none;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cat-chevron-small {
  font-size: 0.7rem;
  opacity: 0.5;
}
.flex-column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-bg {
  background: linear-gradient(135deg, #001428 0%, #002b5c 55%, #003d7a 100%);
  margin-top: 0;
}
.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-main-body {
  max-width: 1560px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}
.halal-check-icon {
  color: #4b9b3a;
}
.hdr-phone-icon-inner {
  color: #fff;
  font-size: 0.9rem;
}
.hdr-phone-text {
  line-height: 1.2;
}
.logo-text-row {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}
.mnav-auth-btn {
  font-size: 15px;
}
.mnav-call-block {
  padding: 0.85rem 1.25rem;
  margin-top: 0.5rem;
}
.mnav-call-label {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.3rem;
}
.mnav-call-link {
  font-size: 1.1rem;
  font-weight: 900;
  color: #002b5c;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mobile-menu-icon {
  font-size: 1.3rem;
}
.mobile-nav-brand-name {
  font-family: var(--font-family);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}
.mobile-nav-header-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mobile-nav-width {
  max-width: 300px;
}
.mobile-sidebar-width {
  max-width: 280px;
}
#mobileSidebar .offcanvas-body,
#mobileSidebar .cat-tree {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
#mobileSidebar .offcanvas-body::-webkit-scrollbar,
#mobileSidebar .cat-tree::-webkit-scrollbar {
  width: 0 !important;
  display: none !important;
}
.bg-custom-3 {
  background: #002b5c;
  color: #fff;
}
.nav-main-scroll {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}
.out-of-stock-inline-text {
  font-size: 0.85rem;
  color: #ef4444;
  font-weight: 700;
  margin-top: 0.25rem;
}
.price-now-bold {
  font-weight: 900;
}
.sidebar-cat-icon-sm {
  color: #4b9b3a;
  width: 16px;
  text-align: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.sidebar-title-size {
  font-size: 1rem;
}
.sticky-element {
  position: sticky;
  top: 90px;
}
.toast-check-icon {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}
.toast-check-icon-2 {
  flex: 1;
  min-width: 0;
}
.util-bar-separator {
  opacity: 0.3;
}
.util-bar-text {
  font-size: 13.5px;
}
.float-chat-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.float-chat-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a7a3c 0%, #25d366 100%);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 43, 92, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.float-chat-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}
.float-chat-toggle--open {
  background: linear-gradient(135deg, #374151 0%, #111827 100%);
}
.float-chat-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: transform 0.15s, box-shadow 0.15s;
  animation: float-pop 0.2s ease both;
}
.float-chat-option:hover {
  color: #fff;
  transform: translateY(-3px);
}
.float-chat-option--wa {
  background: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}
.float-chat-option--wa:hover { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.55); }
.float-chat-option--ms {
  background: linear-gradient(135deg, #0084ff 0%, #a033ff 100%);
  box-shadow: 0 4px 14px rgba(0, 132, 255, 0.4);
}
.float-chat-option--ms:hover { box-shadow: 0 8px 20px rgba(0, 132, 255, 0.55); }
@keyframes float-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* === page-index scoped classes === */
#page-index .cart-subtotal-row {
  font-size: 0.95rem;
}
#page-index .main-row-no-top-margin {
  margin-top: 0;
}
#page-index .sidebar-sticky {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
#page-index .sidebar-cat-header {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
}
#page-index .sidebar-grid-icon {
  font-size: 0.9rem;
}
#page-index .sidebar-cat-tree-scroll {
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow-y: auto;
  scrollbar-width: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
#page-index .sidebar-cat-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
}
#page-index .sidebar-cat-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.55rem 0.6rem 0.8rem;
  text-decoration: none;
  color: #1a2a5e;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.12s;
}
#page-index .sidebar-cat-icon {
  color: #4b9b3a;
  width: 16px;
  text-align: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}
#page-index .sidebar-toggle-btn {
  background: none;
  border: none;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  color: #9ca3af;
  flex-shrink: 0;
  transition: color 0.12s;
}
#page-index .sidebar-chevron-icon {
  font-size: 0.85rem;
}
#page-index .sidebar-promo-arabic {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: var(--font-family);
  direction: rtl;
}
#page-index .sidebar-promo-title {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
#page-index .inline-style-2 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
#page-index .bg-custom {
  font-size: 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
#page-index .nav-main-radius {
  border-radius: var(--radius-lg);
}
#page-index .nav-main-radius-2 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 460px;
}
@media (max-width: 991px) {
  #page-index .nav-main-radius-2 { height: 360px; }
}
@media (max-width: 575px) {
  #page-index .nav-main-radius-2 { height: 260px; }
}
#page-index .hero-inner-wrap {
  width: 100%;
  height: 100%;
}
#page-index .hero-carousel-height {
  height: 100%;
}
#page-index .hero-carousel-height .carousel-inner,
#page-index .hero-carousel-height .carousel-item {
  height: 100%;
}
#page-index .hero-headline {
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
#page-index .inline-style-4 {
  color: #fff;
}
#page-index .halal-highlight {
  display: inline;
  color: #4ade80;
  font-family: var(--font-family);
  direction: rtl;
  unicode-bidi: isolate;
}
#page-index .hero-subtext {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.4rem;
  line-height: 1.7;
  max-width: 400px;
}
#page-index .halal-shop-btn {
  background: #fff;
  color: #002b5c;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.7rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.15s;
}
#page-index .hero-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: all 0.15s;
  backdrop-filter: blur(4px);
}
#page-index .hero-stat-no-border {
  border-left: none;
}
#page-index .hero-arrow-container {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
#page-index .trust-card-halal {
  border-left: 3px solid #16a34a;
}
#page-index .trust-icon-wrap-halal {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}
#page-index .trust-icon-halal {
  color: #16a34a;
}
#page-index .trust-card-delivery {
  border-left: 3px solid #2563eb;
}
#page-index .trust-icon-wrap-delivery {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
}
#page-index .trust-icon-delivery {
  color: #2563eb;
}
#page-index .trust-card-cold {
  border-left: 3px solid #0284c7;
}
#page-index .trust-icon-wrap-cold {
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
}
#page-index .trust-icon-cold {
  color: #0284c7;
}
#page-index .trust-card-payment {
  border-left: 3px solid #7c3aed;
}
#page-index .trust-icon-wrap-payment {
  background: #f5f3ff;
  border: 1.5px solid #ddd6fe;
}
#page-index .trust-icon-payment {
  color: #7c3aed;
}
#page-index .cat-carousel-wrap {
  position: relative;
}
#page-index .cat-carousel-arrow {
  position: absolute;
  top: calc(6px + (130px - 36px) / 2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #1a2a5e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  z-index: 2;
}
#page-index .cat-carousel-arrow-left  { left: 0; }
#page-index .cat-carousel-arrow-right { right: 0; }
#page-index .cat-carousel-arrow:hover {
  background: #1a2a5e;
  border-color: #1a2a5e;
  color: #fff;
}
#page-index .cat-carousel-clip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 44px 12px 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#page-index .cat-carousel-clip::-webkit-scrollbar { display: none; }
#page-index .cat-carousel-item {
  flex: 0 0 150px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  scroll-snap-align: start;
}
#page-index .cat-carousel-clip-2 {
  width: 150px;
  height: 150px;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
  outline: 2px solid transparent;
  outline-offset: 0;
  transition: outline-color 0.2s, transform 0.2s;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page-index .cat-carousel-item:hover .cat-carousel-clip-2 {
  outline-color: #1a2a5e;
  transform: translateY(-2px);
}
#page-index .cat-img-fill {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#page-index .cat-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page-index .cat-name-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2a5e;
  text-align: center;
  line-height: 1.35;
}
#page-index .promo-banner-meat {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 180px;
  background: #3b1800;
  display: flex !important;
  align-items: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
#page-index .promo-bg-img-meat {
  position: absolute;
  inset: 0;
  background-image: url("/images/promotions/promotions-1.png");
  background-size: cover;
  background-position: right center;
  opacity: 0.75;
}
#page-index .promo-overlay-meat {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #3b1800 38%,
    rgba(59, 24, 0, 0.75) 58%,
    transparent 88%
  );
}
#page-index .promo-content-meat {
  position: relative;
  z-index: 2;
  padding: 1.4rem 1.5rem;
  max-width: 65%;
}
#page-index .promo-headline {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}
#page-index .promo-subtext {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.85rem;
}
#page-index .promo-banner-rice {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 180px;
  background: #450a0a;
  display: flex !important;
  align-items: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
#page-index .promo-bg-img-rice {
  position: absolute;
  inset: 0;
  background-image: url("/images/promotions/promotions-2.png");
  background-size: cover;
  background-position: right center;
  opacity: 0.75;
}
#page-index .promo-overlay-rice {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #450a0a 38%,
    rgba(69, 10, 10, 0.75) 58%,
    transparent 88%
  );
}
#page-index .promo-cta-amber {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f59e0b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}
#page-index .promo-cta-red {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #dc2626;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}
#page-index .promo-banner-members {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 180px;
  background: #2d0a3e;
  display: flex !important;
  align-items: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
#page-index .promo-bg-img-members {
  position: absolute;
  inset: 0;
  background-image: url("/images/promotions/promotions-3.png");
  background-size: cover;
  background-position: right center;
  opacity: 0.75;
}
#page-index .promo-overlay-members {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #2d0a3e 38%,
    rgba(45, 10, 62, 0.75) 58%,
    transparent 88%
  );
}
#page-index .promo-content-members {
  position: relative;
  z-index: 2;
  padding: 1.4rem 1.5rem;
  max-width: 65%;
  margin-top: 1.5rem;
}
#page-index .promo-cta-indigo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #be185d;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}
#page-index .support-online-label {
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.6rem;
}
#page-index .text-styled-2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
#page-index .inline-style-5 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 360px;
}
#page-index .bg-custom-2 {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
#page-index .flex-row {
  width: 44px;
  height: 44px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#page-index .inline-style-6 {
  color: #4ade80;
  font-size: 1.15rem;
}
#page-index .text-styled-3 {
  font-size: 0.68rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.15rem;
}
#page-index .inline-style-7 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.2rem;
}
#page-index .text-styled-4 {
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
#page-index .support-whatsapp-icon {
  background: #25d366;
}
#page-index .support-whatsapp-icon-color {
  color: #fff;
}
#page-index .support-ch-name {
  font-size: 0.85rem;
  font-weight: 900;
}
#page-index .inline-style-8 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
#page-index .support-ch-arrow {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}
#page-index .support-email-icon-wrap {
  background: rgba(255, 255, 255, 0.12);
}
#page-index .support-email-icon-color {
  color: #93c5fd;
}
#page-index .support-card-cursor {
  cursor: pointer;
}
#page-index .support-line-icon {
  background: #06c755;
}
#page-index .inline-style-9 {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
}
#page-index .support-qr-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 0.9rem;
  margin-top: 0.4rem;
  text-align: center;
}
#page-index .support-qr-img {
  width: 110px;
  height: 110px;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}
#page-index .support-qr-handle {
  font-size: 0.7rem;
  color: #6b7280;
  margin-top: 0.5rem;
  font-weight: 700;
}
#page-index .support-viber-icon-wrap {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
#page-index .support-viber-img {
  display: block;
  border-radius: var(--radius-sm);
}
#page-index .shipping-dry-col {
  background: linear-gradient(135deg, #065f46 0%, #064e3b 100%);
  border-right: 1px solid #064e3b;
}
#page-index .shipping-icon-circle {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
#page-index .inline-style-10 {
  color: #fff;
  font-size: 1.4rem;
}
#page-index .text-styled-5 {
  font-size: 0.85rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
#page-index .inline-style-11 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}
#page-index .shipping-price {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
#page-index .shipping-price-suffix {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
#page-index .shipping-cold-col {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e2d6b 100%);
  border-right: 1px solid #1e2d6b;
}
#page-index .shipping-cta-col {
  background: linear-gradient(135deg, #001428 0%, #002b5c 60%, #1a4a8a 100%);
}
#page-index .shipping-cta-icon-circle {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.05);
}
#page-index .inline-style-12 {
  color: #fff;
  font-size: 1.25rem;
}
#page-index .text-styled-6 {
  font-size: 0.88rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
#page-index .text-styled-7 {
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}
#page-index .text-styled-8 {
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff;
  padding: 0.45rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(34, 197, 94, 0.4);
  transition: opacity 0.15s;
}
#page-index .halal-trust-section {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  padding: 2.5rem 2rem;
}
#page-index .halal-watermark {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-family);
  font-size: 11rem;
  direction: rtl;
  color: rgba(0, 43, 92, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
#page-index .inline-style-13 {
  z-index: 1;
}
#page-index .halal-assured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #16a34a;
  font-size: 11px;
  font-weight: 900;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
#page-index .halal-badge-arabic {
  font-family: var(--font-family);
  direction: rtl;
  font-size: 1rem;
}
#page-index .halal-section-headline {
  font-size: 1.75rem;
  font-weight: 900;
  color: #002b5c;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}
#page-index .halal-section-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
#page-index .halal-shop-btn-2 {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #002b5c;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.15s;
}
#page-index .halal-pillar-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
}
#page-index .halal-pillar-icon-halal {
  width: 48px;
  height: 48px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
#page-index .halal-pillar-icon-color-halal {
  font-size: 1.35rem;
  color: #16a34a;
}
#page-index .halal-pillar-title {
  font-size: 0.85rem;
  font-weight: 900;
  color: #002b5c;
  margin-bottom: 0.25rem;
}
#page-index .halal-pillar-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.55;
}
#page-index .halal-pillar-icon-meat {
  width: 48px;
  height: 48px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
#page-index .halal-pillar-icon-color-meat {
  font-size: 1.35rem;
  color: #ea580c;
}
#page-index .halal-pillar-icon-verified {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
#page-index .halal-pillar-icon-color-verified {
  font-size: 1.35rem;
  color: #2563eb;
}
#page-index .halal-pillar-icon-pure {
  width: 48px;
  height: 48px;
  background: #faf5ff;
  border: 1.5px solid #e9d5ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
#page-index .halal-pillar-icon-color-pure {
  font-size: 1.35rem;
  color: #9333ea;
}
#page-index .halal-info-bar {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
#page-index .halal-info-icon {
  color: #16a34a;
  flex-shrink: 0;
}
#page-index .halal-info-text {
  font-size: 0.88rem;
  color: #6b7280;
}
#page-index .inline-style-14 {
  color: #002b5c;
}
#page-index .newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(75, 155, 58, 0.2);
  border: 1px solid rgba(75, 155, 58, 0.35);
  color: #86efac;
  font-size: 11px;
  font-weight: 900;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.65rem;
  letter-spacing: 0.3px;
}
#page-index .text-styled-9 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}
#page-index .inline-style-15 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}
#page-index .inline-style-16 {
  width: 100%;
  max-width: 360px;
}
#page-index .flex-row-2 {
  display: flex;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#page-index .text-styled-10 {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: #fff;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  padding: 0.85rem 1.25rem;
}
#page-index .text-styled-11 {
  flex-shrink: 0;
  background: #4b9b3a;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 800;
  padding: 0.85rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
#page-index .inline-style-17 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  text-align: center;
}
#page-index .inline-style-18 {
  color: #fff;
  font-size: 1.1rem;
}
#page-index .inline-style-20 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
#page-index .inline-style-21 {
  color: #fff;
  font-size: 0.85rem;
}
#page-index .inline-style-22 {
  flex: 1;
}
#page-index .inline-style-23 {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
}
#page-index .bg-custom-3 {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}
#page-index .bg-custom-4 {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  padding: 3px;
  flex-shrink: 0;
}
#page-index .bg-custom-5 {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.12) 20%,
    rgba(255, 255, 255, 0.12) 80%,
    transparent
  );
}

/* === page-cart scoped classes === */
#page-cart .page-card { padding: 1.25rem; }
#page-cart .sidebar-cat-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #f3f4f6;
}
#page-cart .bg-custom {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  padding: 3px;
  background: #fff;
  border: 1px solid #e5e7eb;
}
#page-cart .inline-style-2 {
  font-size: 12px;
  color: #6b7280;
}
#page-cart .bg-custom-2 {
  padding: 0.75rem;
  border-top: 1px solid #f3f4f6;
  background: #f9fafb;
}
#page-cart .cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
#page-cart .inline-style-4 {
  color: #002b5c;
}
#page-cart .flex-row {
  display: flex;
  gap: 0.5rem;
}
#page-cart .bg-custom-3 {
  background: #002b5c;
  color: #fff;
  padding: 0.9rem 1rem;
}
#page-cart .inline-style-5 {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
#page-cart .inline-style-6 {
  font-size: 1.65rem;
  color: var(--text);
}
#page-cart .text-styled-2 {
  background: var(--highlight);
  color: var(--primary);
  border: 1.5px solid var(--highlight-dark);
  font-size: 13px;
  font-weight: 800;
  border-radius: 99px;
  padding: 0.2rem 0.8rem;
}
#page-cart .inline-style-7 {
  width: 96px;
  flex-shrink: 0;
}
#page-cart .inline-style-8 {
  width: 120px;
  text-align: center;
}
#page-cart .inline-style-9 {
  width: 110px;
  text-align: right;
}
#page-cart .inline-style-10 {
  width: 48px;
}
#page-cart .inline-style-11 {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.3rem;
}
#page-cart .text-styled-3 {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
#page-cart .text-styled-4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}
#page-cart .inline-style-12 {
  font-size: 13px;
  color: #9ca3af;
}
#page-cart .inline-style-13 {
  width: 120px;
  justify-content: center;
}
#page-cart .inline-style-14 {
  width: 110px;
}
#page-cart .inline-style-15 {
  font-size: 1.3rem;
  color: var(--primary);
  line-height: 1.2;
}
#page-cart .text-styled-5 {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 600;
  margin-top: 0.15rem;
}
#page-cart .flex-row-2 {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 1.05rem;
  transition: all 0.15s;
}
#page-cart .flex-row-2:hover {
  color: #fff;
  border-color: #ef4444;
  background: #ef4444;
}
#page-cart .inline-style-16 {
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-light);
  width: 100%;
}
#page-cart .inline-style-17 {
  font-size: 1.1rem;
  color: var(--primary);
}
#page-cart .inline-style-18 {
  font-size: 11px;
  color: #9ca3af;
}
#page-cart .inline-style-20 {
  font-size: 0.9rem;
  color: var(--text);
}
#page-cart .inline-style-21 {
  font-size: 13px;
  height: 38px;
}
#page-cart .inline-style-22 {
  font-size: 13px;
  height: 38px;
  white-space: nowrap;
}
#page-cart .inline-style-23 {
  font-size: 12px;
  color: var(--red);
}
#page-cart .bg-custom-4 {
  font-size: 13px;
  height: 38px;
  white-space: nowrap;
  background: #fef9ee;
  border-color: #f59e0b;
  color: #d97706;
}
#page-cart .text-styled-6 {
  font-size: 11px;
  font-weight: 800;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 99px;
  padding: 0.15rem 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
#page-cart .text-styled-7 {
  font-size: 11px;
  font-weight: 800;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 99px;
  padding: 0.15rem 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
#page-cart .bg-custom-5 {
  background: var(--highlight);
  border: 1px solid var(--highlight-dark);
}
#page-cart .text-styled-8 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
#page-cart .inline-style-35 {
  color: var(--yellow-deep);
}
#page-cart .text-styled-9 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
#page-cart .inline-style-43 {
  border-top: 1px solid var(--border-light);
}
#page-cart .text-styled-10 {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
}
#page-cart .inline-style-44 {
  font-size: 1.15rem;
  color: var(--primary);
}
#page-cart .inline-style-45 {
  font-size: 3rem;
  color: var(--primary);
}
#page-cart .inline-style-46 {
  font-size: 1.7rem;
  color: var(--text);
}
#page-cart .inline-style-47 {
  font-size: 1rem;
  color: var(--text-muted);
}
#page-cart .inline-style-48 {
  font-size: 1rem;
  border-radius: var(--radius-pill);
}
#page-cart .text-styled-11 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}

/* === page-product scoped classes === */
#page-product .sidebar-cat-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #f3f4f6;
}
#page-product .bg-custom {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  padding: 3px;
  background: #fff;
  border: 1px solid #e5e7eb;
}
#page-product .inline-style-2 {
  font-size: 12px;
  color: #6b7280;
}
#page-product .bg-custom-2 {
  padding: 0.75rem;
  border-top: 1px solid #f3f4f6;
  background: #f9fafb;
}
#page-product .cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
#page-product .inline-style-4 {
  color: #002b5c;
}
#page-product .flex-row {
  display: flex;
  gap: 0.5rem;
}
#page-product .bg-custom-3 {
  background: #002b5c;
  color: #fff;
  padding: 0.9rem 1rem;
}
#page-product .main-row-no-top-margin {
  margin-top: 0;
}
#page-product .sidebar-sticky {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
#page-product .sidebar-col-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  align-self: flex-start;
  height: fit-content;
}
#page-product .sidebar-col-sticky .sidebar-wrap {
  position: static;
  box-shadow: none;
}
#page-product .col-content-min-h {
  min-height: calc(100vh - var(--header-h));
}
#page-product .sidebar-cat-header {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
}
#page-product .sidebar-grid-icon {
  font-size: 0.9rem;
}
#page-product .sidebar-cat-tree-scroll {
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow-y: auto;
  scrollbar-width: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
#page-product .sidebar-cat-row-2 {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
}
#page-product .sidebar-cat-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.55rem 0.55rem 0.8rem;
  text-decoration: none;
  color: #1a2a5e;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.12s;
}
#page-product .sidebar-cat-icon {
  color: #4b9b3a;
  width: 16px;
  text-align: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}
#page-product .sidebar-toggle-btn {
  background: none;
  border: none;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  color: #9ca3af;
  flex-shrink: 0;
  transition: color 0.12s;
}
#page-product .sidebar-chevron-icon {
  font-size: 0.85rem;
}
#page-product .sidebar-promo-arabic {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: var(--font-family);
  direction: rtl;
}
#page-product .sidebar-promo-title {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
#page-product .inline-style-5 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
#page-product .bg-custom-4 {
  font-size: 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
#page-product .nav-main-radius {
  border-radius: var(--radius-lg);
}
#page-product .inline-style-6 {
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.3;
}
#page-product .inline-style-7 {
  font-size: 2rem;
  line-height: 1;
}
#page-product .inline-style-8 {
  font-size: 0.95rem;
}
#page-product .inline-style-9 {
  font-weight: 700;
  color: var(--cta);
}
#page-product .inline-style-10 {
  color: var(--border);
  font-weight: 300;
}
#page-product .inline-style-11 {
  font-weight: 600;
  color: var(--text-muted);
}
#page-product .inline-style-12 {
  color: var(--text);
}
#page-product .inline-style-13 {
  margin: 0.25rem 0;
  border-color: var(--border-light);
}
#page-product .inline-style-14 {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
#page-product .inline-style-15 {
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
}
#page-product .inline-style-16 {
  width: 64px;
  height: 36px;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  padding: 0 4px;
}
#page-product .inline-style-17 {
  font-size: 13px;
  color: var(--text-muted);
}
#page-product .text-styled-2 {
  color: var(--cta);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}
#page-product .inline-style-18 {
  font-size: 0.9rem;
  border-radius: var(--radius);
  white-space: nowrap;
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  border: none;
}
#page-product .inline-style-20 {
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}
#page-product .flex-row-2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
@media (max-width: 575.98px) {
  #page-product .inline-style-20 { gap: 0 !important; width: 100%; }
  #page-product .flex-row-2 { flex: 1; flex-direction: column; gap: 0.15rem; text-align: center; font-size: 12px; justify-content: center; align-items: center; padding: 0.5rem 0; }
  #page-product .inline-style-21 { font-size: 1.2rem; }
}
#page-product .inline-style-21 {
  color: var(--cta);
}
#page-product .inline-style-22 {
  font-size: 1rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.75rem;
}
#page-product .inline-style-23 {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
#page-product .text-styled-3 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}
#page-product .text-styled-4 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #4b9b3a;
  letter-spacing: -0.04em;
}
#page-product .text-styled-5 {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 0.2rem;
}
#page-product .text-styled-6 {
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.1rem;
}
#page-product .text-styled-7 {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
#page-product .text-styled-8 {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}
#page-product .text-styled-9 {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
#page-product .text-styled-10 {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}
#page-product .bg-custom-5 {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}
#page-product .text-styled-11 {
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}
#page-product .inline-style-35 {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.45rem;
}

/* === page-checkout scoped classes === */
#page-checkout .page-card { padding: 1.25rem; }
#page-checkout .checkout-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
#page-checkout .checkout-page-title {
  font-size: 1.65rem;
  color: var(--text);
}
#page-checkout .checkout-breadcrumb {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  #page-checkout .checkout-container {
    padding: 0 0.75rem;
  }
  #page-checkout .page-card {
    padding: 1rem;
  }
  #page-checkout .checkout-section-header {
    margin-bottom: 1rem;
  }
  #page-checkout .checkout-section-title {
    font-size: 1.1rem;
  }
  #page-checkout .checkout-page-title {
    font-size: 1.3rem;
  }
  #page-checkout .addr-field-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 0.75rem !important;
  }
  #page-checkout .addr-field { flex: 1 1 100% !important; max-width: 100% !important; width: 100%; }
  #page-checkout .addr-input-wrap { width: 100%; }
  #page-checkout .addr-input { width: 100% !important; }
  #page-checkout .row.g-4 { --bs-gutter-y: 1rem; --bs-gutter-x: 1rem; }
}

/* Signed-in user card */
#page-checkout .ch-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
#page-checkout .ch-user-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
}
#page-checkout .ch-user-avatar-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
#page-checkout .ch-user-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
}
#page-checkout .ch-user-email {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}
#page-checkout .ch-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #4285F4;
  background: #eff6ff;
  border-radius: 20px;
  padding: 0.15rem 0.55rem;
}

/* Address picker */
#page-checkout .ch-add-addr-btn {
  background: none;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}
#page-checkout .ch-add-addr-btn:hover {
  background: var(--primary);
  color: #fff;
}
/* Radio-style address selector cards */
#page-checkout .ch-addr-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  background: #fff;
}
#page-checkout .ch-addr-radio-card:hover {
  border-color: var(--primary);
  background: #f9fffe;
}
#page-checkout .ch-addr-radio-card.selected {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,197,94,0.15);
}
#page-checkout .ch-addr-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}
#page-checkout .ch-addr-radio-card.selected .ch-addr-radio {
  border-color: var(--primary);
  border-width: 2px;
}
#page-checkout .ch-addr-radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
#page-checkout .ch-addr-card-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.4rem;
}
#page-checkout .ch-addr-default {
  display: inline-flex; align-items: center;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 99px;
  padding: 0.15rem 0.55rem;
}
#page-checkout .ch-addr-line {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}
#page-checkout .ch-edit-addr-btn {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  border-radius: 8px;
  font-size: 15px;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
#page-checkout .ch-edit-addr-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0fdf4;
}
#page-checkout .ch-form-back-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.85rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 8px;
}
#page-checkout .ch-form-mode-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}
#page-checkout .ch-new-addr-header {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary);
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  display: flex;
  align-items: center;
}
#page-checkout .ch-cancel-add-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.55rem 1.25rem; border-radius: var(--radius-pill);
  border: 1.5px solid var(--primary); background: #fff;
  font-size: 0.875rem; font-weight: 800; color: var(--primary);
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
#page-checkout .ch-cancel-add-btn:hover { background: var(--primary); color: #fff; }

/* Order Summary — checkout (explicit sizes matching cart) */
#page-checkout .co-summary-title {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
#page-checkout .co-summary-lines {
  border-top: 1px solid var(--border-light);
  padding-top: 0.6rem;
  margin-top: 0.6rem;
  font-size: 0.875rem;
}
#page-checkout .co-summary-lines .summary-line .lbl {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}
#page-checkout .co-summary-lines .summary-line .val {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
#page-checkout .co-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--border-light);
}
#page-checkout .co-total-lbl {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
}
#page-checkout .co-total-val {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
#page-checkout .co-trust-strip {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
#page-checkout .co-trust-item {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
}
#page-checkout .co-trust-icon {
  font-size: 1.15rem;
  color: var(--primary);
}

/* Password eye button inside addr-input-wrap */
#page-checkout .addr-eye-btn {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 15px;
  padding: 0;
  z-index: 2;
}
#page-checkout .flex-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
#page-checkout .sidebar-cat-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #f3f4f6;
}
#page-checkout .bg-custom {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  padding: 3px;
  background: #fff;
  border: 1px solid #e5e7eb;
}
#page-checkout .inline-style-2 {
  font-size: 12px;
  color: #6b7280;
}
#page-checkout .bg-custom-2 {
  padding: 0.75rem;
  border-top: 1px solid #f3f4f6;
  background: #f9fafb;
}
#page-checkout .cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
#page-checkout .inline-style-4 {
  color: #002b5c;
}
#page-checkout .flex-row-2 {
  display: flex;
  gap: 0.5rem;
}
#page-checkout .bg-custom-3 {
  background: #002b5c;
  color: #fff;
  padding: 0.9rem 1rem;
}
#page-checkout .nav-main-radius {
  border-radius: var(--radius-lg);
}
#page-checkout .bg-custom-4 {
  background: #fff;
  border-bottom: 2px solid var(--border-light);
}
#page-checkout .inline-style-5 {
  color: var(--red);
}
#page-checkout .bg-custom-5 {
  background: var(--bg);
  border: 1.5px solid var(--border);
}
#page-checkout .inline-style-6 {
  font-size: 15px;
  color: var(--text);
}
#page-checkout .inline-style-7 {
  font-size: 13px;
  color: var(--primary);
}
#page-checkout .inline-style-8 {
  padding-right: 3rem;
}
#page-checkout .inline-style-9 {
  color: var(--text-muted);
  font-size: 1.1rem;
}
#page-checkout .inline-style-10 {
  font-size: 1rem;
  border-radius: var(--radius-pill);
}
#page-checkout .inline-style-11 {
  font-size: 1.05rem;
}
#page-checkout .inline-style-12 {
  font-size: 15px;
}
#page-checkout .inline-style-13 {
  color: var(--text-muted);
  font-size: 0.9rem;
}
#page-checkout .inline-style-14 {
  color: var(--text-muted);
}
#page-checkout .inline-style-15 {
  font-weight: 600;
  color: var(--text-muted);
}
#page-checkout .inline-style-16 {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  accent-color: var(--primary);
}
#page-checkout .inline-style-17 {
  font-size: 15px;
  color: var(--text);
}
#page-checkout .inline-style-18 {
  font-size: 13px;
  color: var(--text-muted);
}
#page-checkout .text-styled-2 {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
}
#page-checkout .inline-style-20 {
  color: var(--primary-dark);
}
#page-checkout .inline-style-21 {
  font-size: 1.05rem;
  color: var(--text);
}
#page-checkout .inline-style-22 {
  font-size: 1.5rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
#page-checkout .inline-style-23 {
  height: 18px;
  object-fit: contain;
}
#page-checkout .text-styled-3 {
  color: #dc3545;
  font-size: 12px;
  font-weight: 600;
  margin-top: 0.5rem;
  min-height: 18px;
}
#page-checkout .inline-style-35 {
  font-size: 1rem;
  color: var(--text);
}
#page-checkout .inline-style-43 {
  color: var(--primary);
  font-weight: 900;
}
#page-checkout .inline-style-44 {
  font-size: 1.1rem;
}
#page-checkout .inline-style-45 {
  font-size: 1.3rem;
}
#page-checkout .inline-style-46 {
  font-size: 2rem;
  color: var(--text);
}
#page-checkout .inline-style-47 {
  font-size: 1rem;
  color: var(--text-muted);
}
#page-checkout .inline-style-48 {
  font-size: 15px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#page-checkout .text-styled-4 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}
#page-checkout .text-styled-5 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #4b9b3a;
  letter-spacing: -0.04em;
}
#page-checkout .text-styled-6 {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-top: 0.2rem;
}
#page-checkout .text-styled-7 {
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.1rem;
}
#page-checkout .text-styled-8 {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
#page-checkout .text-styled-9 {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}
#page-checkout .text-styled-10 {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
#page-checkout .text-styled-11 {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* === page-account scoped classes === */
#page-account .flex-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
#page-account .sidebar-cat-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #f3f4f6;
}
#page-account .bg-custom {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  padding: 3px;
  background: #fff;
  border: 1px solid #e5e7eb;
}
#page-account .inline-style-2 {
  font-size: 12px;
  color: #6b7280;
}
#page-account .bg-custom-2 {
  padding: 0.75rem;
  border-top: 1px solid #f3f4f6;
  background: #f9fafb;
}
#page-account .cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
#page-account .inline-style-4 {
  color: #002b5c;
}
#page-account .flex-row-2 {
  display: flex;
  gap: 0.5rem;
}
#page-account .bg-custom-3 {
  background: #002b5c;
  color: #fff;
  padding: 0.9rem 1rem;
}
#page-account .nav-main-radius {
  border-radius: var(--radius-lg);
}
#page-account .inline-style-5 {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  #page-account .inline-style-5 { padding: 0 1rem; }
}
#page-account .bg-custom-4 {
  width: 90px;
  height: 90px;
  background: var(--highlight);
  border: 3px solid var(--primary);
}
#page-account .inline-style-6 {
  font-size: 3rem;
  color: var(--primary);
}
#page-account .inline-style-7 {
  font-size: 1.2rem;
  color: var(--text);
}
#page-account .inline-style-8 {
  font-size: 15px;
  color: var(--text-muted);
}
#page-account .inline-style-9 {
  border-color: var(--border-light);
  margin: 0.4rem 0;
}
#page-account .inline-style-10 {
  color: #dc3545 !important;
}
#page-account .inline-style-11 {
  font-size: 1.8rem;
  color: var(--text);
}
#page-account .inline-style-12 {
  font-size: 1.1rem;
  color: var(--text);
}
#page-account .inline-style-13 {
  font-size: 1.2rem;
  color: var(--primary);
}
#page-account .bg-custom-5 {
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 3px;
  background: #fff;
  border: 2px solid var(--border-light);
}
#page-account .inline-style-14 {
  border: 2px solid #fce4ec;
  font-size: 15px;
}
#page-account .support-qr-img {
  width: 110px;
  height: 110px;
  background: var(--bg);
}
#page-account .inline-style-15 {
  font-size: 3.5rem;
  color: var(--primary);
}
#page-account .inline-style-16 {
  font-size: 1.5rem;
  color: var(--text);
}
#page-account .inline-style-17 {
  font-size: 15px;
}
#page-account .inline-style-18 {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
}
#page-account .inline-style-20 {
  border: 2px solid var(--border);
  color: var(--primary);
  font-size: 15px;
}
#page-account .inline-style-21 {
  font-size: 16px;
}
#page-account .inline-style-22 {
  font-size: 16px;
  border: 2px solid var(--border);
}
#page-account .inline-style-23 {
  border-color: var(--primary);
}
#page-account .text-styled-2 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}
#page-account .text-styled-3 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #4b9b3a;
  letter-spacing: -0.04em;
}
#page-account .text-styled-4 {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-top: 0.2rem;
}
#page-account .text-styled-5 {
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.1rem;
}
#page-account .text-styled-6 {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
#page-account .text-styled-7 {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}
#page-account .text-styled-8 {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
#page-account .text-styled-9 {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}
#page-account .text-styled-10 {
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}
#page-account .text-styled-11 {
  font-size: 0.9rem;
  font-weight: 900;
  color: #06c755;
}
#page-account .inline-style-35 {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.45rem;
}

/* === page-login scoped classes === */
#page-login .bg-custom {
  padding: 0.75rem;
  border-top: 1px solid #f3f4f6;
  background: #f9fafb;
}
#page-login .flex-row {
  display: flex;
  gap: 0.5rem;
}
#page-login .bg-custom-2 {
  background: #002b5c;
  color: #fff;
  padding: 0.9rem 1rem;
}
#page-login .nav-main-radius {
  margin: 1rem 1rem 0.5rem;
  border-radius: var(--radius-lg);
}
#page-login .inline-style-2 {
  flex-shrink: 0;
}
#page-login .text-styled-2 {
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: 900;
  color: #86efac;
  letter-spacing: -0.04em;
}
#page-login .text-styled-3 {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
  margin-top: 0.2rem;
}
#page-login .inline-style-4 {
  font-size: 2.2rem;
  line-height: 1.2;
  color: #fff;
}
#page-login .inline-style-5 {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
#page-login .inline-style-6 {
  border-top: 1.5px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}
#page-login .text-styled-4 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #002b5c;
  letter-spacing: -0.04em;
}
#page-login .text-styled-5 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4b9b3a, #2d7a25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}
#page-login .text-styled-6 {
  font-size: 9px;
  font-weight: 600;
  color: #6b7280;
  margin-top: 0.1rem;
}
#page-login .inline-style-7 {
  font-family: var(--font-family);
  direction: rtl;
  color: #2e7d32;
}
#page-login .inline-style-8 {
  font-size: 1.65rem;
  color: var(--text);
}
#page-login .inline-style-9 {
  font-size: 15px;
  color: var(--text-muted);
}
#page-login .inline-style-10 {
  font-size: 16px;
  font-weight: 600;
}
#page-login .inline-style-11 {
  font-size: 16px;
  font-weight: 600;
  padding-right: 3rem;
}
#page-login .inline-style-12 {
  color: var(--red);
  font-size: 0.85rem;
}
#page-login .inline-style-13 {
  color: var(--red);
}
#page-login .inline-style-14 {
  color: var(--primary);
  font-size: 0.85rem;
}
#page-login .inline-style-15 {
  color: var(--primary);
}
#page-login .inline-style-16 {
  color: var(--primary);
  font-weight: 900;
}
#page-login .flex-row-2 {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #4b9b3a, #2d7a25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#page-login .inline-style-17 {
  color: #fff;
  font-size: 1.1rem;
}
#page-login .text-styled-7 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}
#page-login .text-styled-8 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #4b9b3a;
  letter-spacing: -0.04em;
}
#page-login .text-styled-9 {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-top: 0.2rem;
}
#page-login .inline-style-18 {
  font-family: var(--font-family);
  direction: rtl;
  color: #4b9b3a;
}
#page-login .text-styled-10 {
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.1rem;
}
#page-login .inline-style-20 {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.12s;
}
#page-login .inline-style-21 {
  color: #fff;
  font-size: 0.87rem;
}
#page-login .text-styled-11 {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
#page-login .inline-style-22 {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}
#page-login .inline-style-23 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
}
#page-login .bg-custom-3 {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}
#page-login .bg-custom-4 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(6, 199, 85, 0.15);
  border: 1px solid rgba(6, 199, 85, 0.3);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}
#page-login .bg-custom-5 {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

/* === page-wishlist scoped classes === */

/* === page-search scoped classes === */
#page-search .flex-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
#page-search .sidebar-cat-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #f3f4f6;
}
#page-search .bg-custom {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  padding: 3px;
  background: #fff;
  border: 1px solid #e5e7eb;
}
#page-search .inline-style-2 {
  font-size: 12px;
  color: #6b7280;
}
#page-search .bg-custom-2 {
  padding: 0.75rem;
  border-top: 1px solid #f3f4f6;
  background: #f9fafb;
}
#page-search .cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
#page-search .inline-style-4 {
  color: #002b5c;
}
#page-search .flex-row-2 {
  display: flex;
  gap: 0.5rem;
}
#page-search .bg-custom-3 {
  background: #002b5c;
  color: #fff;
  padding: 0.9rem 1rem;
}
#page-search .main-row-no-top-margin {
  margin-top: 0;
}
#page-search .sidebar-sticky {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
#page-search .sidebar-col-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  align-self: flex-start;
  height: fit-content;
}
#page-search .sidebar-col-sticky .sidebar-wrap {
  position: static;
  box-shadow: none;
}
#page-search .col-content-min-h {
  min-height: calc(100vh - var(--header-h));
}
#page-search .sidebar-cat-header {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 60%, #4b9b3a 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
}
#page-search .sidebar-grid-icon {
  font-size: 0.9rem;
}
#page-search .sidebar-cat-tree-scroll {
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow-y: auto;
  scrollbar-width: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
#page-search .sidebar-cat-row-2 {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
}
.sidebar-cat-skeleton {
  display: inline-block;
  height: 0.75rem;
  border-radius: 4px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
#page-search .sidebar-cat-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.55rem 0.55rem 0.8rem;
  text-decoration: none;
  color: #1a2a5e;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.12s;
}
#page-search .sidebar-cat-icon {
  color: #4b9b3a;
  width: 16px;
  text-align: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}
#page-search .sidebar-toggle-btn {
  background: none;
  border: none;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  color: #9ca3af;
  flex-shrink: 0;
  transition: color 0.12s;
}
#page-search .sidebar-chevron-icon {
  font-size: 0.85rem;
}
#page-search .sidebar-promo-arabic {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: var(--font-family);
  direction: rtl;
}
#page-search .sidebar-promo-title {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
#page-search .inline-style-5 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
#page-search .bg-custom-4 {
  font-size: 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
#page-search .nav-main-radius {
  border-radius: var(--radius-lg);
}
#page-search .inline-style-6 {
  color: var(--primary);
}
#page-search .inline-style-7 {
  font-size: 1.6rem;
  color: var(--text);
}
#page-search .inline-style-8 {
  font-size: 16px;
  color: var(--text-muted);
}
#page-search .inline-style-9 {
  font-size: 15px;
  color: var(--text-muted);
}
/* List view card — mobile: column, desktop: row */
#page-search .lv-card { display: flex; flex-direction: column; }
#page-search .lv-top { display: flex; gap: 0.75rem; align-items: flex-start; }
#page-search .lv-name { white-space: normal; overflow: visible; }
#page-search .lv-fav-icon {
  position: absolute; top: 8px; right: 8px;
  background: rgba(255,255,255,0.9); border: none; border-radius: 50%;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--primary); font-size: 0.95rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12); transition: transform 0.15s;
}
#page-search .lv-fav-icon:hover { transform: scale(1.15); }
#page-search .lv-fav-icon.active { color: var(--primary); }
#page-search .lv-fav-btn {
  background: none; border: none; padding: 4px; cursor: pointer;
  color: var(--primary); font-size: 1.1rem; line-height: 1; transition: color 0.15s, transform 0.15s;
  border-radius: 50%;
}
#page-search .lv-fav-btn:hover { transform: scale(1.15); }
#page-search .lv-fav-btn.active { color: var(--primary); }
/* Mobile actions: full-width row below, with border */
#page-search .lv-actions {
  display: flex; flex-direction: row; align-items: center; gap: 0.5rem;
  border-top: 1px solid var(--border-light); padding-top: 0.75rem; margin-top: 0.75rem;
}
#page-search .lv-qty-row { flex: 1; }
#page-search .lv-add-btn { flex: 1; width: auto; }
/* Desktop: image | info | actions in one row */
@media (min-width: 576px) {
  #page-search .lv-card { flex-direction: row; align-items: center; gap: 1rem; }
  #page-search .lv-top { flex: 1; min-width: 0; }
  #page-search .lv-actions {
    flex-direction: column; border-top: none; padding-top: 0; margin-top: 0;
    flex: 0 0 170px; align-items: stretch; gap: 0.4rem;
  }
  #page-search .lv-actions .lv-fav-btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; gap: 0.4rem; font-size: 0.82rem; font-weight: 700;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    padding: 0.35rem; color: var(--primary);
  }
  #page-search .lv-actions .lv-fav-btn.active { color: var(--primary); border-color: #a3c4f3; background: #eff6ff; }
  #page-search .lv-qty-row { flex: unset; }
  #page-search .lv-add-btn { flex: unset; width: 100%; }
}
#page-search .lv-qty-row { justify-content: center; }
#page-search .lv-qty-label { font-size: 0.8rem; color: #6b7280; }
#page-search .lv-qty-btn {
  width: 28px; height: 28px; border-radius: 6px;
  border: 1.5px solid var(--border); background: #f8fafc;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0; line-height: 1; color: var(--text);
}
#page-search .lv-qty-btn:hover,
#page-search .lv-qty-btn:active {
  background: #e2e8f0; color: var(--text); border-color: var(--border);
}
#page-search .lv-qty-btn:disabled { opacity: 0.4; cursor: default; }
#page-search .lv-qty-input {
  width: 44px; height: 28px; padding: 0;
  font-size: 0.85rem; border-radius: 6px;
  border: 1.5px solid var(--border);
}
#page-search .lv-add-btn {
  font-size: 0.82rem; padding: 0.4rem 0.75rem;
  white-space: nowrap; width: 100%;
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  border: none;
}
#page-search .lv-add-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #001f42 0%, #1248a0 100%);
}
#page-search .lv-add-btn:disabled {
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  opacity: 0.55;
  cursor: not-allowed;
}
#page-search .bg-custom-5 {
  width: 150px;
  height: 150px;
  object-fit: contain;
  padding: 0.4rem;
  border: 1.5px solid var(--border-light);
  background: #fff;
}
#page-search .inline-style-10 {
  font-size: 1.1rem;
  color: var(--text);
}
#page-search .inline-style-11 {
  font-size: 15px;
  color: var(--primary);
}
#page-search .inline-style-12 {
  font-size: 15px;
  color: #e53935;
}
#page-search .inline-style-13 {
  font-size: 15px;
  background: linear-gradient(135deg, #002b5c 0%, #1a5fb4 100%);
  border: none;
}
#page-search .inline-style-14 {
  color: #fff;
  font-size: 1.1rem;
}
#page-search .text-styled-2 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}
#page-search .text-styled-3 {
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 900;
  color: #4b9b3a;
  letter-spacing: -0.04em;
}
#page-search .text-styled-4 {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-top: 0.2rem;
}
#page-search .inline-style-15 {
  font-family: var(--font-family);
  direction: rtl;
  color: #4b9b3a;
}
#page-search .inline-style-16 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
#page-search .text-styled-5 {
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.1rem;
}
#page-search .inline-style-17 {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.12s;
}
#page-search .inline-style-18 {
  color: #fff;
  font-size: 0.87rem;
}
#page-search .text-styled-6 {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
#page-search .text-styled-7 {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}
#page-search .inline-style-20 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
}
#page-search .text-styled-8 {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
#page-search .text-styled-9 {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}
#page-search .text-styled-10 {
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}
#page-search .inline-style-21 {
  text-align: center;
}
#page-search .inline-style-22 {
  color: #06c755;
  font-size: 0.65rem;
}
#page-search .text-styled-11 {
  font-size: 0.9rem;
  font-weight: 900;
  color: #06c755;
}
#page-search .inline-style-23 {
  display: block;
  border-radius: 5px;
}

/* === page-compare scoped classes === */

/* === Dynamic state classes (replaced :style bindings) === */
.btn-disabled-state {
  background: #d1d5db !important;
  color: #9ca3af !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  pointer-events: all !important;
  opacity: 1 !important;
}

/* === Delivery cut-off notice banner (Step 3) === */
.delivery-cutoff-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
}
.dcn-icon {
  font-size: 1rem;
  color: #9ca3af;
  margin-top: 2px;
  flex-shrink: 0;
}
.dcn-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #6b7280;
  margin-bottom: 0.2rem;
}
/* Shipping type read-only pill — mirrors cart's text-styled-6/7 */
#page-checkout .co-stype-pill,
#page-cart .co-stype-pill {
  font-size: 11px;
  font-weight: 800;
  border-radius: 99px;
  padding: 0.15rem 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
#page-checkout .co-stype-dry,
#page-cart .co-stype-dry {
  background: #f3f4f6;
  color: #6b7280;
}
#page-checkout .co-stype-frozen,
#page-cart .co-stype-frozen {
  background: #eff6ff;
  color: #3b82f6;
}
#page-cart .co-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--border-light);
}
#page-cart .co-total-lbl {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
}
#page-cart .co-total-val {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  text-align: right;
}

.dcn-body {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Date navigation prev/next */
.date-nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.date-nav-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  padding: 0;
}
.date-nav-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0fdf4;
}
.date-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.date-nav-hint {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  min-width: 80px;
  text-align: center;
}

/* "Earliest" pill badge on first date card */
.dc-earliest-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 0.35rem;
}
.date-card.selected .dc-earliest-badge {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* Time slot without icon — center text cleanly (checkout only) */
#page-checkout .time-slot {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Order note textarea */
#page-checkout .order-note-input {
  width: 100%;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: var(--text);
  resize: vertical;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  line-height: 1.55;
}
#page-checkout .order-note-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
#page-checkout .order-note-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

/* Special Requests card */
#page-checkout .special-requests-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}
#page-checkout .special-requests-header i {
  color: var(--primary);
  font-size: 1.05rem;
}
#page-checkout .special-requests-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 99px;
  padding: 2px 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
#page-checkout .special-requests-hint {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

/* Order confirmation call notice */
#page-checkout .order-confirm-call-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}
#page-checkout .occ-icon {
  font-size: 0.85rem;
  color: #9ca3af;
  flex-shrink: 0;
}
#page-checkout .occ-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 0;
}
#page-checkout .occ-body {
  font-size: 0.9rem;
  font-weight: 500;
  color: #9ca3af;
  line-height: 1.4;
}

/* Delivery disclaimer note */
.delivery-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.55;
}

/* === Missing class fixes (Step 3) === */

/* wishlist-pin: heart button on product cards in account wishlist tab
   (same style as wishlist-pin-inline) */

/* hero-logo-icon: branded icon circle in login page hero area */

/* ── Shared Footer ── */
.ftr-tagline { font-size: 0.75rem; color: #fff; margin-top: 0.1rem; }
.ftr-tagline .ftr-halal { color: #4ade80; font-family: var(--font-family); }
.ftr-desc { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 1.25rem; }
.ftr-sublabel { font-size: 0.68rem; font-weight: 900; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 1.1px; margin-bottom: 0.7rem; margin-top: 0.25rem; }
.ftr-social-wrap { display: flex; flex-direction: row; gap: 0.55rem; flex-wrap: wrap; }
.ftr-social-card { display: flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 0.55rem 0.9rem; text-decoration: none; color: inherit; transition: background 0.15s, border-color 0.15s; flex: 1; min-width: 140px; }
.ftr-social-card:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.22); color: inherit; }
.ftr-social-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.ftr-social-icon-fb { background: #1877f2; color: #fff; }
.ftr-social-icon-gmap { background: #34a853; color: #fff; }
.ftr-social-card-body { flex: 1; }
.ftr-social-name { font-size: 0.87rem; font-weight: 700; color: #fff; line-height: 1; }
.ftr-social-handle { font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; }
.ftr-social-ext { font-size: 0.7rem; color: rgba(255,255,255,0.3); }
.ftr-section-title { font-size: 0.88rem; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 1rem; }
.ftr-links { display: flex; flex-direction: column; gap: 0.55rem; }
.ftr-link-item { font-size: 0.92rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.ftr-link-item:hover { color: #fff; }
.ftr-contact-list { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.2rem; }
.ftr-contact-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.ftr-contact-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.ftr-contact-icon-green { background: rgba(255,255,255,0.12); color: #fff; }
.ftr-contact-icon-blue { background: rgba(255,255,255,0.12); color: #fff; }
.ftr-contact-label { font-size: 0.92rem; font-weight: 700; color: rgba(255,255,255,0.38); letter-spacing: 0.6px; }
.ftr-contact-phone { font-size: 1.1rem; font-weight: 900; color: #fff; line-height: 1.2; }
.ftr-contact-value { font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.ftr-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 1.2rem 0; }
.ftr-qr-wrap { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.ftr-qr-item { display: flex; align-items: center; gap: 0.65rem; }
.ftr-qr-box { background: #fff; border-radius: 8px; padding: 4px; display: flex; align-items: center; justify-content: center; }
.ftr-qr-img { display: block; border-radius: 4px; }
.ftr-qr-platform { font-size: 0.9rem; font-weight: 800; color: #fff; }
.ftr-qr-platform-line { color: #06c755; }
.ftr-qr-platform-viber { color: #8b5cf6; }
.ftr-qr-scan { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 0.15rem; }
.ftr-bottom-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0; }
.ftr-bottom { max-width: 1560px; margin: 0 auto; padding: 1.1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.ftr-copyright { font-size: 0.87rem; color: rgba(255,255,255,0.4); margin: 0; }
.ftr-payments { display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap; }
.ftr-payments-label { font-size: 0.7rem; color: rgba(255,255,255,0.38); font-weight: 600; }
.ftr-badge { font-size: 0.65rem; font-weight: 900; padding: 0.22rem 0.55rem; border-radius: 4px; letter-spacing: 0.3px; }
.ftr-badge-cod { background: #374151; color: #d1d5db; }
.ftr-card-img { height: 16px; width: auto; object-fit: contain; }
@media (max-width: 575px) {
  .footer-main-body { padding: 2.5rem 1.25rem 2rem; }
  .ftr-bottom { padding: 1rem 1.25rem; flex-direction: column; align-items: flex-start; }
}

/* ── Search page: subcat strip & per-page ── */
.subcat-chip {
  font-size: 13px;
  font-weight: 700;
  padding: 0.28rem 0.85rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.subcat-chip:hover,
.subcat-chip.active {
  border-color: #22c55e;
  color: #16a34a;
  background: #f0fdf4;
}
.perpage-select {
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  background: var(--surface);
  width: auto;
}
.perpage-select:focus { border-color: var(--primary); box-shadow: none; outline: none; }
.sidebar-cat-link-active {
  color: #16a34a !important;
  font-weight: 900 !important;
}

/* Reset button element when used as sidebar-cat-link */
button.sidebar-cat-link {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
button.leaf-link {
  background: none;
  border: none;
  cursor: pointer;
}

/* Footer logo overrides — white/green on dark background */
.footer-bg .logo-word-navy {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.footer-bg .logo-word-daily {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #4ade80;
  color: #4ade80;
}

.ftr-contact-phone.text-decoration-none { color: #fff; }
.ftr-contact-phone.text-decoration-none:hover { color: #4ade80; }
.ftr-contact-value.text-decoration-none { color: rgba(255,255,255,0.7); }
.ftr-contact-value.text-decoration-none:hover { color: #fff; }

/* ── Product page: redesigned discount badge ── */
#page-product .discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(220,38,38,0.4);
  text-transform: uppercase;
}

/* ── Product image disclaimer ── */
.product-img-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
}
.product-img-disclaimer i {
  font-size: 11px;
  flex-shrink: 0;
}

.prod-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  transition: background 0.15s, color 0.15s;
}
.prod-tag:hover {
  background: #e5e7eb;
  color: #1a2a5e;
}

/* ===== Account Page — New Classes ===== */

/* Avatar */

/* Sidebar nav */

/* Section titles */
#page-account .acct-card-title { font-size: 1rem; color: #111827; }
#page-account .acct-total-spent {
  display: flex; align-items: center; gap: 0.4rem;
  background: #f9fafb; border: 1px solid var(--border-light);
  border-radius: 99px; padding: 0.3rem 0.85rem;
}
#page-account .acct-total-spent-label { font-size: 0.8rem; font-weight: 600; color: #6b7280; }
#page-account .acct-total-spent-val { font-size: 0.95rem; font-weight: 900; color: #111827; }
#page-account .acct-order-meta { font-size: 0.9rem; color: #6b7280; font-weight: 600; }
#page-account .acct-order-id { font-size: 0.87rem; color: #111827; }
#page-account .acct-order-total { font-size: 1rem; color: var(--primary); }

/* Orders table */
#page-account .acct-orders-table { border-collapse: collapse; }
#page-account .acct-orders-table th {
  padding: 0.85rem 1rem;
  font-size: 0.87rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #6b7280; background: #f9fafb;
  border-bottom: 2px solid var(--border-light);
  white-space: nowrap;
}
#page-account .acct-orders-table td {
  padding: 0.95rem 1rem;
  font-size: 0.875rem; font-weight: 600; color: #374151;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
#page-account .acct-orders-table tbody tr:last-child td { border-bottom: none; }
#page-account .acct-orders-table tbody tr:hover { background: #f9fafb; }
#page-account .acct-no-tracking { color: #d1d5db; }
#page-account .acct-orders-table td.acct-tracking-col {
  width: 160px; min-width: 140px;
}
#page-account .acct-tracking-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.87rem; font-weight: 700; color: var(--primary);
  word-break: break-all;
  text-decoration: none; white-space: nowrap;
  transition: color 0.15s;
}
#page-account .acct-tracking-link:hover { color: var(--primary-dark); text-decoration: underline; }

/* Mobile order card */
#page-account .acct-order-card-mobile { padding: 1rem; }

/* Order detail — top bar */
#page-account .od-topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; margin-bottom: 1.25rem;
}
@media (max-width: 575.98px) {
  #page-account .od-topbar { flex-wrap: wrap; }
  #page-account .od-topbar > h1 { width: 100%; }
  #page-account .od-topbar-actions { width: 100%; }
}
#page-account .od-topbar-actions { display: flex; align-items: center; gap: 0.5rem; }
#page-account .od-cancel-notice {
  display: flex; align-items: flex-start; gap: 0.25rem;
  background: #fff8e1; border: 1px solid #ffe082; border-radius: var(--radius);
  padding: 0.75rem 1rem; font-size: 0.92rem; font-weight: 500; color: #7a5c00;
}
#page-account .acct-tab-bar {
  display: flex; gap: 0.5rem;
  overflow-x: auto; flex-wrap: nowrap;
  scrollbar-width: none; padding-bottom: 2px;
}
#page-account .acct-tab-bar::-webkit-scrollbar { display: none; }
#page-account .acct-tab-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.55rem 1.25rem; border-radius: var(--radius-pill);
  font-size: 0.875rem; font-weight: 800;
  color: var(--primary); background: #fff;
  border: 1.5px solid var(--primary);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap; cursor: pointer;
}
#page-account .acct-tab-btn:hover { background: var(--primary); color: #fff; }
#page-account .acct-tab-btn.active {
  background: var(--primary); color: #fff; pointer-events: none;
}

/* Order detail — hero banner */
#page-account .od-hero {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  border-radius: 14px; padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  background: #f9fafb;
  border: 1px solid var(--border-light);
}
#page-account .od-hero-label {
  font-size: 0.9rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: #9ca3af; margin-bottom: 2px;
}
#page-account .od-hero-id { font-size: 1.2rem; font-weight: 900; color: #111827; line-height: 1.2; }
#page-account .od-hero-date { font-size: 0.9rem; color: #6b7280; font-weight: 500; margin-top: 4px; }
#page-account .od-hero-right { text-align: right; }
#page-account .od-hero-status-wrap {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.87rem; font-weight: 700;
  border-radius: 99px; padding: 0.2rem 0.65rem; margin-bottom: 6px;
  background: #f3f4f6; color: #374151;
}
#page-account .od-hero-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #9ca3af; display: inline-block; flex-shrink: 0;
}
#page-account .od-hero-status-text { font-size: 0.87rem; }
#page-account .od-hero-total { font-size: 1.5rem; font-weight: 900; color: #111827; line-height: 1; }

/* Order items table */
#page-account .od-items-header {
  display: flex; align-items: center;
  font-size: 0.87rem; font-weight: 800; color: #111827;
  margin-bottom: 1rem;
}
#page-account .od-items-count {
  margin-left: auto; font-size: 0.87rem; font-weight: 700;
  color: #6b7280; background: #f3f4f6;
  padding: 0.2rem 0.65rem; border-radius: 99px;
}
#page-account .od-table-head {
  display: grid;
  grid-template-columns: 1fr 80px 100px 100px;
  gap: 0;
  margin: 0 -1.25rem 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #f9fafb;
  font-size: 0.85rem; font-weight: 800; color: #6b7280;
  text-transform: uppercase; letter-spacing: 0.05em;
}
#page-account .od-table-body { display: flex; flex-direction: column; gap: 0; }
#page-account .od-table-row {
  display: grid;
  grid-template-columns: 1fr 80px 100px 100px;
  align-items: center; gap: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}
#page-account .od-table-row:last-child { border-bottom: none; }
#page-account .od-table-product {
  display: flex; align-items: center; gap: 0.75rem;
}
#page-account .od-prod-img {
  width: 52px; height: 52px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--border-light);
}
#page-account .od-prod-name { font-size: 0.875rem; color: #111827; line-height: 1.4; }
#page-account .od-table-cell { font-size: 0.875rem; color: #374151; }
#page-account .od-qty-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: #f3f4f6; font-size: 0.9rem; font-weight: 800; color: #374151;
}
#page-account .od-unit-price { color: #6b7280; font-size: 0.9rem; }
#page-account .od-subtotal { font-size: 0.92rem; color: #111827; }
#page-account .od-items-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0 0; margin-top: 0.5rem;
  border-top: 2px solid var(--border-light);
}
#page-account .od-items-total-val { font-size: 1.1rem; color: var(--primary); }

/* Order summary card */
#page-account .od-summary-title {
  font-size: 0.9rem; font-weight: 800; color: #6b7280;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
#page-account .od-summary-rows { margin-bottom: 1rem; }
#page-account .od-summary-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 0.75rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.85rem;
}
#page-account .od-summary-row:last-child { border-bottom: none; }
#page-account .od-summary-label { color: #6b7280; font-weight: 600; flex-shrink: 0; }
#page-account .od-summary-val { color: #111827; text-align: right; word-break: break-word; max-width: 58%; }
#page-account .od-summary-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0; margin-top: 0.25rem;
  border-top: 2px solid var(--border-light);
  font-size: 0.9rem; font-weight: 800; color: #374151;
}
#page-account .od-summary-total-val { font-size: 1.2rem; font-weight: 900; color: #111827; }
#page-account .od-cancel-notice {
  background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px;
  padding: 0.65rem 0.9rem; font-size: 0.82rem; font-weight: 600; color: #6b7280;
  line-height: 1.5;
}

/* Order hero status color variants */

/* Summary & tracking cards (extend page-card) */
#page-account .od-summary-title { font-size: 0.95rem; font-weight: 800; color: #111827; margin-bottom: 0.75rem; }

/* Tracking section inside summary card */
#page-account .od-carrier-name { font-size: 0.9rem; font-weight: 600; color: #6b7280; }
#page-account .od-tracking-chip {
  display: flex; align-items: center;
  background: #f3f4f6; border: 1px solid var(--border-light);
  border-radius: 10px; padding: 0.65rem 0.9rem;
  font-size: 0.88rem; color: #374151;
}
#page-account .od-tracking-link { color: var(--primary); text-decoration: none; }
#page-account .od-tracking-link:hover { text-decoration: underline; }
#page-account .od-tracking-notice {
  display: flex; align-items: flex-start; gap: 0.4rem;
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px;
  padding: 0.65rem 0.9rem; font-size: 0.85rem; color: #92400e;
}

/* Legacy compat — keep these for order list */
#page-account .acct-order-total { font-size: 1rem; color: var(--primary); }

/* Timeline */

/* Tracking */

/* Order items */

/* Addresses */
/* ── Saved Addresses redesign ── */
#page-account .acct-card-subtitle {
  font-size: 0.8rem; color: #9ca3af; font-weight: 600; margin-top: 2px;
}
#page-account .acct-addr-add-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.82rem; font-weight: 800;
  color: var(--primary); background: #f0fdf4;
  border: 1.5px solid #bbf7d0; border-radius: 99px;
  padding: 0.35rem 1rem; cursor: pointer; transition: all 0.15s;
  white-space: nowrap;
}
#page-account .acct-addr-add-btn:hover { background: #dcfce7; border-color: #86efac; }
#page-account .acct-addr-loading {
  display: flex; align-items: center; gap: 0.6rem;
  justify-content: center; padding: 2rem;
  font-size: 0.875rem; color: #9ca3af; font-weight: 600;
}
#page-account .acct-addr-empty {
  text-align: center; padding: 2.5rem 1rem;
}
#page-account .acct-addr-empty-icon {
  font-size: 2.5rem; color: #d1d5db; margin-bottom: 0.75rem;
}
#page-account .acct-addr-empty-title {
  font-size: 1rem; font-weight: 800; color: #374151; margin-bottom: 0.25rem;
}
#page-account .acct-addr-empty-sub {
  font-size: 0.82rem; color: #9ca3af; font-weight: 600;
}
#page-account .acct-addr-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
@media (max-width: 575px) {
  #page-account .acct-addr-list { grid-template-columns: 1fr; }
}
#page-account .acct-addr-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  background: transparent;
  transition: background 0.12s;
}
#page-account .acct-addr-item:hover { background: #f9fafb; }
#page-account .acct-addr-item-default { background: transparent; padding: 0.875rem 1.25rem; }
#page-account .acct-addr-pin { display: none; }
#page-account .acct-addr-body { flex: 1; min-width: 0; font-size: 0.92rem; }
#page-account .acct-addr-top {
  display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.2rem;
}
#page-account .acct-addr-index {
  font-size: 0.72rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.04em;
}
#page-account .acct-addr-default-chip {
  display: inline-flex; align-items: center;
  font-size: 0.66rem; font-weight: 700;
  color: var(--primary); background: #dcfce7;
  padding: 0.05rem 0.45rem; border-radius: 99px;
}
#page-account .acct-addr-postcode {
  margin-bottom: 0.1rem;
}
#page-account .acct-addr-line {
  line-height: 1.5;
}
#page-account .acct-addr-actions {
  display: flex; flex-direction: row; gap: 0.25rem;
  flex-shrink: 0; align-items: center;
}
#page-account .acct-addr-act-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; border: 1px solid var(--border-light);
  background: #fff; color: #9ca3af; font-size: 0.78rem;
  cursor: pointer; transition: all 0.12s;
}
#page-account .acct-addr-act-btn:hover { background: #f3f4f6; color: #374151; border-color: #d1d5db; }
#page-account .acct-addr-act-star:hover { background: #fffbeb; color: #d97706; border-color: #fde68a; }
#page-account .acct-addr-act-star-filled { color: #d97706 !important; border-color: #fde68a; background: #fffbeb; cursor: default; }
#page-account .acct-addr-act-del:hover { background: #fef2f2; color: #ef4444; border-color: #fecaca; }

/* Profile form */
#page-account .acct-form-label { font-size: 0.9rem; color: #374151; margin-bottom: 0.3rem; }
#page-account .acct-form-input {
  border-radius: 8px; border: 1.5px solid var(--border-light);
  font-size: 0.9rem; font-weight: 600; color: #111827;
  padding: 0.55rem 0.85rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
#page-account .acct-form-input:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(34,197,94,0.12); outline: none;
}

/* Password toggle */
#page-account .acct-pwd-toggle {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; color: #9ca3af;
  cursor: pointer; padding: 0; line-height: 1;
  transition: color 0.15s;
}
#page-account .acct-pwd-toggle:hover { color: var(--primary); }

/* Stats */

/* Settings toggles */
#page-account .acct-setting-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}
#page-account .acct-setting-row:last-child { border-bottom: none; padding-bottom: 0; }
#page-account .acct-setting-name { font-size: 0.9rem; color: #111827; }
#page-account .acct-setting-desc { font-size: 0.88rem; color: #6b7280; margin-top: 2px; }

/* Toggle switch */
#page-account .acct-toggle {
  position: relative; display: inline-block;
  width: 44px; height: 24px; flex-shrink: 0;
}
#page-account .acct-toggle input { opacity: 0; width: 0; height: 0; }
#page-account .acct-toggle-slider {
  position: absolute; inset: 0;
  background: #d1d5db; border-radius: 999px;
  cursor: pointer; transition: background 0.2s;
}
#page-account .acct-toggle-slider::before {
  content: ''; position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%; background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
#page-account .acct-toggle input:checked + .acct-toggle-slider { background: var(--primary); }
#page-account .acct-toggle input:checked + .acct-toggle-slider::before { transform: translateX(20px); }

/* Danger zone */

/* Spinner */
@keyframes acct-spin { to { transform: rotate(360deg); } }
#page-account .acct-spin { display: inline-block; animation: acct-spin 0.7s linear infinite; }

/* Back button */
#page-account .acct-back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.55rem 1.25rem; border-radius: var(--radius-pill);
  border: 1.5px solid var(--primary); background: #fff;
  font-size: 0.875rem; font-weight: 800; color: var(--primary);
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
#page-account .acct-back-btn:hover { background: var(--primary); color: #fff; }

/* Profile banner */

/* Google badge */

/* Google connect button */
#page-account .acct-google-btn {
  border: 1.5px solid #e5e7eb; background: #fff; color: #374151; border-radius: 999px;
  font-size: 0.88rem; padding: 0.35rem 1rem; white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}
#page-account .acct-google-btn:hover { border-color: #4285F4; color: #4285F4; }
#page-account .acct-google-disconnect-btn {
  border: 1.5px solid #fecaca; background: #fff; color: #ef4444; border-radius: 999px;
  font-size: 0.88rem; padding: 0.35rem 1rem; white-space: nowrap;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
#page-account .acct-google-disconnect-btn:hover { background: #fef2f2; border-color: #ef4444; }
#page-account .acct-google-disconnect-btn:disabled { opacity: 0.6; }

/* Order toolbar */
#page-account .acct-order-toolbar {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem; flex-wrap: wrap;
}
#page-account .acct-toolbar-left {
  flex: 1; min-width: 0;
}
#page-account .acct-toolbar-sub {
  font-size: 0.9rem; font-weight: 600; color: #6b7280; margin-top: 1px;
}
#page-account .acct-toolbar-filter-name {
  text-transform: capitalize; color: var(--primary); font-weight: 700;
}

/* Compact search */
#page-account .acct-order-search-wrap {
  position: relative; width: 320px; flex-shrink: 0;
}
#page-account .acct-order-search-input {
  width: 100%; padding: 0.6rem 2.4rem 0.6rem 1.2rem;
  border: 1.5px solid var(--border-light); border-radius: var(--radius-pill);
  font-size: 0.95rem; font-weight: 500; color: var(--text);
  outline: none; background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
#page-account .acct-order-search-input:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
#page-account .acct-order-search-clear {
  position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #9ca3af; cursor: pointer;
  padding: 0; line-height: 1; font-size: 0.9rem;
  transition: color 0.15s;
}
#page-account .acct-order-search-clear:hover { color: #374151; }

/* Filter tabs */
#page-account .acct-filter-tabs {
  display: flex; align-items: center; gap: 0.4rem;
  overflow-x: auto; flex-shrink: 0;
  scrollbar-width: none; padding-bottom: 2px;
}
#page-account .acct-filter-tabs::-webkit-scrollbar { display: none; }
#page-account .acct-filter-tab {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.38rem 0.9rem; border-radius: 99px;
  border: 1.5px solid #e5e7eb;
  font-size: 0.8rem; font-weight: 700; color: #6b7280;
  background: #fff; cursor: pointer; white-space: nowrap;
  transition: all 0.15s;
}
#page-account .acct-filter-tab i { font-size: 0.75rem; }
#page-account .acct-filter-tab:hover { border-color: #9ca3af; color: #374151; }

/* Pagination */
#page-account .acct-page-btn {
  width: 38px; height: 38px; border-radius: 99px;
  border: 1.5px solid var(--border-light); background: #fff;
  font-size: 0.95rem; font-weight: 700; color: #374151;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.15s, color 0.15s, background 0.15s;
}
#page-account .acct-page-btn:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
#page-account .acct-page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
#page-account .acct-page-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* Profile info display */
#page-account .acct-info-grid { display: flex; flex-direction: column; gap: 0.9rem; }
#page-account .acct-info-item { padding: 0.75rem 1rem; background: #f9fafb; border-radius: 10px; border: 1px solid var(--border-light); }
#page-account .acct-info-label { font-size: 0.85rem; color: #6b7280; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
#page-account .acct-info-value { font-size: 0.92rem; color: #111827; }

/* Security row */
#page-account .acct-security-row { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 1rem; background: #fffbeb; border-radius: 10px; border: 1px solid #fde68a; }
#page-account .acct-security-icon { width: 38px; height: 38px; border-radius: 50%; background: #f59e0b20; display: flex; align-items: center; justify-content: center; color: #f59e0b; font-size: 1rem; flex-shrink: 0; }

#page-account .page-card { padding: 1.5rem; }

/* Modal overlay */
#page-account .acct-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
#page-account .acct-modal-card {
  background: #fff; border-radius: 16px;
  width: 100%; max-width: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  overflow: hidden;
  position: relative;
}
#page-account .acct-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 1rem; color: #111827;
}
#page-account .acct-modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: #f3f4f6; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #6b7280; font-size: 0.85rem;
  transition: background 0.15s, color 0.15s;
}
#page-account .acct-modal-close:hover { background: #e5e7eb; color: #111827; }
#page-account .acct-modal-body { padding: 1.25rem 1.5rem; }
#page-account .acct-modal-footer {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem;
}
#page-account .acct-modal-cancel {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #f3f4f6; color: #6b7280; border: none; border-radius: var(--radius-pill);
  font-size: 1rem; padding: 0.85rem 1.5rem; font-weight: 700;
}
#page-account .acct-modal-cancel:hover { background: #e5e7eb; color: #374151; }
#page-account .acct-pwd-mismatch { font-size: 0.88rem; color: #dc2626; margin-top: 0.4rem; }

/* Address checkbox */
/* Postal code lookup */

/* Set Default button */
#page-account .acct-postal-msg {
  font-size: 0.82rem; font-weight: 600; margin-top: 0.4rem;
  display: flex; align-items: center;
}
#page-account .acct-postal-msg-ok { color: #059669; }
#page-account .acct-postal-msg-err { color: #dc2626; }

#page-account .acct-addr-check-wrap {
  display: flex; align-items: center; gap: 0.6rem;
  cursor: pointer; user-select: none;
  padding: 0.6rem 0.8rem; background: #f9fafb;
  border-radius: 8px; border: 1px solid #e5e7eb;
}
#page-account .acct-addr-check-input { accent-color: #6b7280; width: 16px; height: 16px; cursor: pointer; }
#page-account .acct-addr-check-label { font-size: 0.87rem; font-weight: 600; color: #374151; }

/* Mobile responsiveness */
@media (max-width: 767px) {
  #page-account .od-table-row { grid-template-columns: 1fr 50px 80px; }
  #page-account .od-table-row .od-unit-price { display: none; }
  #page-account .od-table-head { grid-template-columns: 1fr 50px 80px; }
  #page-account .od-table-head span:nth-child(3) { display: none; }
  #page-account .od-hero { padding: 1rem; }
  #page-account .od-hero-total { font-size: 1.3rem; }
  #page-account .od-hero { padding: 1rem 1.25rem; }
  #page-account .acct-setting-row { flex-wrap: wrap; gap: 0.5rem; }
  #page-account .acct-order-toolbar { gap: 0.5rem; }
  #page-account .acct-order-search-wrap { width: 100%; }
  #page-account .acct-filter-tabs { width: 100%; overflow-x: auto; }
  #page-account .acct-modal-overlay { align-items: flex-end; padding: 0; }
  #page-account .acct-modal-card { border-radius: 16px 16px 0 0; max-width: 100%; }
}

/* ================================================================
   GLOBAL RESPONSIVE FIXES — Mobile & Tablet
   Breakpoints:
     ≤991px  tablet
     ≤767px  mobile
     ≤575px  small mobile
     ≤400px  extra-small (iPhone SE, Galaxy A01, etc.)
   ================================================================ */

/* ── Utility bar: center text on mobile ── */
@media (max-width: 767px) {
  .util-bar-inner {
    padding: 0 1rem;
    justify-content: center;
  }
  .util-bar-inner > .d-none {
    display: none !important;
  }
  .util-bar-text {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
}

/* ── Header: shrink logo on very narrow screens ── */
@media (max-width: 380px) {
  .logo-word-navy,
  .logo-word-daily {
    font-size: 1.05rem;
  }
  .logo-tagline {
    display: none;
  }
  .hdr-inner {
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
  }
}


/* ── Hero stats strip: make horizontally scrollable on mobile ── */
@media (max-width: 767px) {
  .hero-stats {
    padding: 0.4rem 0.75rem;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .hero-stats::-webkit-scrollbar {
    display: none;
  }
  .hero-stat {
    padding: 0.15rem 0.9rem;
    flex-shrink: 0;
  }
  .hero-stat-num {
    font-size: 0.875rem;
  }
  .hero-stat-lbl {
    font-size: 9.5px;
  }
}

/* ── Hero stats: hide 3rd and 4th stat on small mobile ── */
@media (max-width: 575px) {
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) {
    display: none;
  }
  .hero-stat {
    padding: 0.15rem 0.65rem;
  }
  #page-index .hero-arrow-container {
    padding-left: 0.6rem;
  }
}

/* ── Hero banner content padding on very small screens ── */
@media (max-width: 400px) {
  .hero-banner-content {
    padding: 1rem 1rem 4.5rem;
  }
}

/* ── Trust cards: two-per-row on small mobile ── */
@media (max-width: 575px) {
  .trust-card {
    min-width: calc(50% - 0.375rem);
    max-width: calc(50% - 0.375rem);
    flex: 1 1 calc(50% - 0.375rem);
    padding: 0.65rem 0.75rem;
    gap: 0.5rem;
  }
  .trust-card-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .trust-card-title {
    font-size: 12px;
  }
  .trust-card-sub {
    font-size: 10px;
  }
}



/* ── Horizontal scroll arrows: smaller on mobile ── */
@media (max-width: 767px) {
  .hscroll-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .hscroll-arrow-left { left: -4px; }
  .hscroll-arrow-right { right: -4px; }
}

/* ── Horizontal scroll: always show left arrow on desktop ── */
@media (min-width: 768px) {
  .hscroll-arrow-left {
    display: flex !important;
  }
}

/* ── Section header: wrap on mobile ── */
@media (max-width: 575px) {
  .section-header {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
  }
  .section-sub {
    font-size: 12px;
  }
}

/* ── Section spacing: reduce on mobile ── */
@media (max-width: 575px) {
  .mb-5 {
    margin-bottom: 2.5rem !important;
  }
}

/* ── Category photo circles: smaller on extra-small screens ── */

/* ── Nav main: compact on small mobile ── */
@media (max-width: 575px) {
  .nav-all-cats {
    font-size: 0.82rem;
    padding: 0.4rem 0.9rem;
  }
  .nav-main-link {
    font-size: 0.82rem;
    padding: 0.4rem 0.65rem;
  }
}

/* ── Support section phone number on tablet ── */
@media (max-width: 767px) {
  .support-phone-num {
    font-size: 2rem;
    white-space: nowrap;
  }
}

/* ── Footer: tablet and mobile padding ── */
@media (max-width: 767px) {
  .footer-main-body {
    padding: 2.5rem 1.5rem 2rem;
  }
  .ftr-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
  }
}

/* ── Cart page: container padding on mobile ── */
@media (max-width: 767px) {
  #page-cart .inline-style-5 {
    padding: 0 1rem;
  }
}

@media (max-width: 400px) {
  #page-cart .inline-style-5 {
    padding: 0 0.75rem;
  }
  #page-cart .inline-style-6 {
    font-size: 1.3rem;
  }
}

/* ── Cart page: summary not sticky on mobile/tablet ── */
@media (max-width: 991px) {
  .summary-sticky {
    position: static;
    top: auto;
  }
}

/* ── Cart page: smaller product image on small mobile ── */

/* ── Cart/Product qty controls: compact on very small screens ── */
@media (max-width: 400px) {
  .qty-ctrl input {
    width: 44px;
  }
  .qty-ctrl button {
    width: 32px;
    height: 32px;
  }
}

/* ── Checkout page: tighter container padding on small mobile ── */
@media (max-width: 400px) {
  #page-checkout .checkout-container {
    padding: 0 0.75rem;
  }
  #page-checkout .page-card {
    padding: 0.9rem 0.85rem;
  }
}

/* ── Checkout: order summary not sticky on tablet ── */

/* ── Product page: title and price size on very small screens ── */
@media (max-width: 400px) {
  #page-product .inline-style-6 {
    font-size: 1.2rem;
  }
  #page-product .inline-style-7 {
    font-size: 1.6rem;
  }
  #page-product .text-styled-2 {
    font-size: 1.3rem;
  }
}

/* ── Login page: auth layout on mobile ── */

/* ── Account page: sidebar spacing on tablet ── */

/* ── Nav-main: only All Categories button on mobile (hide nav links) ── */
@media (max-width: 991px) {
  .nav-main-scroll {
    display: none;
  }
  .nav-main {
    background: transparent;
    padding: 0;
    border-radius: 0;
    justify-content: center;
  }
  .nav-all-cats {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius);
    padding: 1rem;
  }
}

/* ── Hero slider: hide CTA buttons on mobile, keep text ── */
@media (max-width: 767px) {
  .halal-shop-btn,
  .hero-btn-secondary {
    display: none !important;
  }
}

/* ── Footer bottom: center payments row on mobile ── */
@media (max-width: 767px) {
  .ftr-payments {
    justify-content: center;
    flex-wrap: wrap;
  }
  .ftr-copyright {
    text-align: center;
  }
}

/* ── Footer: same padding on all pages (575px override) ── */
@media (max-width: 575px) {
  .footer-main-body {
    padding: 2.5rem 1.5rem 2rem;
  }
  .ftr-bottom {
    padding: 1rem 1.5rem;
  }
}

/* ── Hero badge: hide on mobile ── */

/* ── Trust cards: ensure 2-per-row wrapping on mobile ── */
@media (max-width: 575px) {
  .d-flex.flex-wrap.gap-3:has(.trust-card) {
    gap: 0.75rem !important;
  }
}

/* ── Header logout button ── */


/* ── Topbar centered layout ── */
.util-bar-inner--center {
  justify-content: center;
}

/* ── Call to Order: never wrap ── */
.hdr-phone { white-space: nowrap; flex-shrink: 0; }
.hdr-phone-num { white-space: nowrap; }

/* ── Desktop: center search between logo and Call to Order ── */
@media (min-width: 992px) {
  .hdr-inner { justify-content: space-between; }
  .hdr-logo { flex: 1; flex-shrink: 0; justify-content: flex-start; }
  .hdr-search-wrap { flex: 0 1 560px; margin: 0 auto; }
  .hdr-right { flex: 1; flex-shrink: 0; justify-content: flex-end; }
}

/* ── Desktop header: true center search with CSS Grid ── */
@media (min-width: 992px) {
  .hdr-inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    gap: 1.25rem !important;
  }
  .hdr-logo {
    flex: unset;
    min-width: 0;
  }
  .hdr-search-wrap {
    width: 560px;
    max-width: 100%;
    min-width: 0;
  }
  .hdr-right {
    flex: unset;
    justify-content: flex-end;
    min-width: 0;
  }
}

/* ── Topbar: horizontal scroll on mobile/tablet (no wrapping) ── */
@media (max-width: 991px) {
  .util-bar-text {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start !important;
    padding: 0.1rem 0;
  }
  .util-bar-text::-webkit-scrollbar { display: none; }
  .util-bar-text > span { flex-shrink: 0; white-space: nowrap; }
}

/* ── Contact: brand header & map ── */
.ct-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #edf0f5;
}
.ct-brand-icon {
  width: 36px !important;
  height: 36px !important;
  font-size: 1.1rem !important;
  flex-shrink: 0;
}
.ct-map-wrap {
  margin-bottom: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #edf0f5;
}
.ct-map-wrap iframe {
  display: block;
  border-radius: 0;
}

/* ── Contact: redesigned location cards ── */
.ct-locs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.ct-loc {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 12px;
  transition: border-color 0.14s, box-shadow 0.14s;
}
.ct-loc:hover {
  border-color: #d0d9ec;
  box-shadow: 0 2px 10px rgba(0,26,61,0.06);
}
.ct-loc-pin {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #edf0f8;
  color: #5b7aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ct-loc-pin--main {
  background: #001a3d;
  color: #fff;
}
.ct-loc-body { flex: 1; min-width: 0; }
.ct-loc-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.22rem;
}
.ct-loc-name {
  font-size: 0.93rem;
  font-weight: 700;
  color: #001a3d;
}
.ct-loc-badge {
  font-size: 0.57rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 2px 7px;
  border-radius: 20px;
  background: #edf0f5;
  color: #6b7a99;
  line-height: 1.6;
}
.ct-loc-badge--main {
  background: #001a3d;
  color: #fff;
}
.ct-loc-addr {
  font-size: 0.77rem;
  color: #7a8aaa;
  margin: 0 0 0.5rem;
  line-height: 1.55;
}

/* ── Contact: colored channel icons ── */
.ct-channel-icon--phone { background: #e8f0fe; color: #1a5fb4; }
.ct-channel-icon--mobile { background: #ede9fe; color: #4338ca; }
.ct-channel-icon--email { background: #fff7ed; color: #c2410c; }

/* ── Toast notifications (matches template) ── */
.toast-wrap {
  position: fixed;
  top: 100px;
  right: 1.25rem;
  z-index: 9999;
  pointer-events: none;
  min-width: 280px;
  max-width: 340px;
  animation: toast-slide-in 0.25s ease;
}
.toast-wrap-visible { display: block; }
.toast-msg {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #4b9b3a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  font-family: var(--font-family);
}
.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, #002b5c, #4b9b3a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-check-icon { color: #fff; font-size: 1.1rem; font-weight: 700; }
.toast-check-icon-2 { display: flex; flex-direction: column; }
.toast-label {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.1rem;
}
.toast-body-text {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}
@keyframes toast-slide-in {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Page loader ── */
.page-loader-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: all;
}
.page-loader-fading {
  opacity: 0;
  pointer-events: none;
}
.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 280px;
}
.page-loader-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}
.page-loader-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.page-loader-brand {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.page-loader-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-top: 0.2rem;
}
.page-loader-bar {
  width: 280px;
  height: 4px;
  background: #f0f0f0;
  border-radius: 99px;
  overflow: hidden;
}
.page-loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #002b5c, #4b9b3a);
  border-radius: 99px;
  animation: loader-progress 1.5s ease-in-out forwards;
}
@keyframes loader-progress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── Global font override — must stay last to win over duplicate body blocks ── */
body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
}

/* Out of stock */
.oos-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  background: #fee2e2; color: #dc2626; border-radius: 4px;
  padding: 2px 7px; vertical-align: middle; letter-spacing: 0.3px;
}
.co-missing-notice {
  background: linear-gradient(135deg, #fef9ec 0%, #fff8e1 100%);
  border: 1.5px solid #fbd96b;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
}
.co-missing-title {
  font-weight: 800;
  color: #92400e;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.co-missing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.co-missing-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #78350f;
  font-weight: 600;
  font-size: 0.78rem;
}
.co-missing-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
}
.oos-checkout-warn {
  background: #fff8e1; border: 1px solid #ffe082;
  border-radius: var(--radius); padding: 0.65rem 1rem;
  font-size: 0.9rem; font-weight: 600; color: #7a5c00;
  margin-bottom: 0.75rem;
}

/* Favourites */
.fav-btn {
  position: absolute; top: 8px; right: 8px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.95); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: transform 0.15s, opacity 0.15s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  opacity: 0;
}
@media (hover: hover) {
  .product-card:hover .fav-btn { opacity: 1; }
  .fav-btn:hover { transform: scale(1.12); }
}
@media (hover: none) {
  .fav-btn { opacity: 1; }
}
.fav-btn.fav-btn--active { opacity: 1; }
.fav-btn .bi-heart-fill { color: var(--navy, #1a2e5a); font-size: 1rem; }
.fav-btn .bi-heart { color: var(--navy, #1a2e5a); font-size: 1rem; }
.pd-fav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #f0f4ff; border: 1.5px solid #c7d4f0;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.15s, background 0.15s; flex-shrink: 0;
}
.pd-fav-btn:hover { transform: scale(1.1); background: #e0e8ff; }
.pd-fav-btn .bi-heart-fill,
.pd-fav-btn .bi-heart { color: var(--navy, #1a2e5a); font-size: 1.2rem; }
.fav-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--white); position: relative;
  display: flex; flex-direction: column;
}
.fav-item-img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.fav-item-body { padding: 0.5rem 0.65rem 0.65rem; display: flex; flex-direction: column; flex: 1; }
.fav-item-name { font-size: 0.82rem; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 0.3rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.fav-item-price { font-size: 0.88rem; font-weight: 900; color: var(--primary); }
.fav-item-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.35rem; }
.fav-remove-btn {
  position: absolute; top: 6px; right: 6px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--navy, #1a2e5a); font-size: 0.85rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

@media (min-width: 576px) {
  .w-sm-280 { width: 280px !important; }
}

@media (min-width: 992px) {
  .w-sm-280 { width: 380px !important; }
}

/* Util-bar marquee (mobile only) */
.util-bar-marquee-wrap {
  overflow: hidden;
  width: 100%;
}
.util-bar-marquee {
  display: inline-flex;
  white-space: nowrap;
  animation: util-marquee 22s linear infinite;
}
@keyframes util-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.price-tax-label {
  font-size: 0.65em;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 2px;
  vertical-align: baseline;
}
