/* ═══════════════════════════════════════════════
   GBL Express — Premium Mobile Homepage
   Mobile-first: 360px–430px
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --m-bg: #F7F7FC;
  --m-dark: #0B1636;
  --m-dark2: #111C3D;
  --m-purple: #633FF2;
  --m-purple2: #7C3AED;
  --m-pink: #FF3CAC;
  --m-orange: #FF6A00;
  --m-red: #FF4D4D;
  --m-white: #FFFFFF;
  --m-text: #172033;
  --m-text2: #667085;
  --m-border: #E6E8F0;
  --m-soft: #F1F3F9;
  --m-green: #25D366;
  --m-grad: linear-gradient(135deg, #633FF2 0%, #FF3CAC 55%, #FF6A00 100%);
  --m-grad-purple: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --m-grad-dark: linear-gradient(135deg, #0B1636 0%, #151C4D 100%);
  --m-radius: 12px;
  --m-radius-lg: 22px;
  --m-radius-pill: 999px;
}

@media (max-width: 430px) {

/* ── Reset & Base ── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--m-bg);
  color: var(--m-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Announcement Bar ── */
.announce-bar {
  background: var(--m-grad);
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 50;
}
.announce-bar .marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}
.announce-bar span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header ── */
.site-header {
  background: var(--m-dark);
  position: sticky;
  top: 0;
  z-index: 45;
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.15);
}
.site-header .container { padding: 0; }
.header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  height: 58px;
  flex-wrap: nowrap;
}
.header-inner .logo {
  order: 2;
  margin: 0;
  gap: 8px;
}
.header-inner .logo img,
.header-inner .logo .logo-mark {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 2px solid var(--m-purple);
}
.header-inner .logo > span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.header-inner > nav {
  order: 3;
  margin-left: auto;
  gap: 2px;
}
.header-inner > nav .nav-link,
.header-inner > nav .icon-btn {
  padding: 8px 6px;
  gap: 0;
  color: #fff;
}
.header-inner > nav .nav-link svg,
.header-inner > nav .icon-btn svg {
  color: #fff;
  width: 20px;
  height: 20px;
}
.nav-count {
  min-width: 20px;
  height: 20px;
  font-size: 10px;
  background: var(--m-red);
  color: #fff;
  border-radius: 50%;
}
.cart-icon-btn.hide-mobile { display: none !important; }
.hide-desktop { display: inline-flex !important; }
.hide-mobile { display: none !important; }

/* ── Search Bar ── */
.header-inner .search-bar {
  display: none;
}

.m-search-wrap {
  background: var(--m-dark);
  padding: 0 16px 12px;
}

.m-search-wrap {
  background: var(--m-dark);
  padding: 0 16px 12px;
}
.m-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 26px;
  height: 38px;
  padding: 0 5px 0 16px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.08);
  transition: box-shadow 0.2s;
}
.m-search:focus-within {
  box-shadow: 0 4px 20px rgb(99 102 241 / 0.18);
}
.m-search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--m-text);
  font-family: inherit;
}
.m-search input::placeholder { color: #98A2B3; }
.m-search-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--m-grad);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.m-search-btn:active { transform: scale(0.93); }
.m-search-btn svg { width: 18px; height: 18px; }

/* ── Category Nav Chips ── */
.cat-nav {
  background: var(--m-dark);
  padding: 6px 0 10px;
}
.cat-nav .container { padding: 0 16px; }
.cat-nav-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-link {
  white-space: nowrap;
  padding: 0 14px;
  height: 32px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: #D0D5DD;
  background: rgba(255 255 255 / 0.06);
  border: 1px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
}
.cat-link:hover { background: rgba(255 255 255 / 0.1); color: #fff; }
.cat-link.active {
  background: var(--m-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgb(99 102 241 / 0.3);
}

/* ── Hero Banner / Slider ── */
.hero-slider { padding: 12px; }
.hero {
  border-radius: var(--m-radius-lg);
  height: 210px;
  margin: 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #151C4D 0%, #4F46E5 50%, #7C3AED 100%);
}
.hero-bg { border-radius: 0; }
.hero-overlay {
  background: linear-gradient(135deg, rgb(11 22 54 / 0.7) 0%, rgb(99 63 242 / 0.3) 100%) !important;
}
.hero-content {
  padding: 16px 18px 14px !important;
  z-index: 2;
}
.hero-kicker {
  background: #FFE66D !important;
  color: var(--m-text) !important;
  border: none !important;
  font-size: 9px !important;
  padding: 3px 8px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-title {
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 0.95 !important;
  margin: 6px 0 4px !important;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  font-size: 11px !important;
  color: rgba(255 255 255 / 0.8) !important;
  margin-bottom: 10px !important;
  line-height: 1.4;
}
.hero-ctas .btn {
  height: 32px !important;
  padding: 0 14px !important;
  font-size: 12px !important;
  font-weight: 700;
  border-radius: 16px !important;
  background: #fff !important;
  color: var(--m-text) !important;
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.15);
}
.hero-dots {
  margin-top: 12px;
  justify-content: center;
}
.hero-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 4px !important;
  background: #D0D5DD !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-dot.active {
  width: 24px !important;
  background: var(--m-grad) !important;
  border-radius: 4px !important;
}

/* ── Section Headers ── */
.section-head {
  padding: 0 16px;
  margin-bottom: 14px;
  gap: 10px;
}
.section-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--m-text) !important;
  letter-spacing: -0.02em;
  padding-left: 12px !important;
  position: relative;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 3px;
  height: 18px;
  background: var(--m-grad);
  border-radius: 2px;
}
.section-subtitle {
  font-size: 12px !important;
  color: var(--m-text2) !important;
  margin-top: 2px;
}
.section-head .btn-ghost {
  height: 32px !important;
  padding: 0 12px !important;
  font-size: 12px !important;
  border-radius: 12px !important;
  background: #fff !important;
  border: 1px solid var(--m-border) !important;
  color: var(--m-text) !important;
  font-weight: 600;
}
.section-head .btn-ghost:hover {
  border-color: var(--m-purple) !important;
  color: var(--m-purple) !important;
}

/* ── Shop by Category Section ── */
.section {
  padding: 20px 0 !important;
}
.section:first-child {
  padding-top: 0 !important;
}
.section .container {
  padding: 0 16px;
}

/* ── Category Cards ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 16px;
}
.cat-card {
  aspect-ratio: 1/1;
  border-radius: var(--m-radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  text-decoration: none;
  max-height: 320px;
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.cat-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  width: 100%;
  background: linear-gradient(90deg, rgb(11 22 54 / 0.85) 0%, rgb(11 22 54 / 0.4) 60%, transparent 100%);
}
.cat-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.cat-count {
  font-size: 12px;
  color: rgba(255 255 255 / 0.75);
  margin-top: 3px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  background: #fff;
  color: var(--m-text);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 12px;
  width: fit-content;
  transition: transform 0.2s;
}
.cat-chip:active { transform: scale(0.95); }

/* Gradient overlays per category */
.cat-card:nth-child(1) { background: linear-gradient(135deg, #4F1D95, #7C3AED, #FF3CAC); }
.cat-card:nth-child(2) { background: linear-gradient(135deg, #1E3A8A, #4F46E5, #7C3AED); }
.cat-card:nth-child(3) { background: linear-gradient(135deg, #831843, #BE185D, #7C3AED); }
.cat-card:nth-child(4) { background: linear-gradient(135deg, #0B1636, #164E63, #06B6D4); }
.cat-card:nth-child(n+5) { background: linear-gradient(135deg, #1E1B4B, #4338CA, #818CF8); }

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 16px;
}
.product-grid.cols-5 {
  grid-template-columns: repeat(2, 1fr) !important;
}

/* ── Product Card ── */
.p-card {
  border-radius: 14px !important;
  border: 1.5px solid var(--m-border) !important;
  background: #fff !important;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.p-card:active { transform: scale(0.98); }
.p-media {
  aspect-ratio: 1/1 !important;
}
.p-body {
  padding: 8px 10px 10px !important;
  gap: 3px !important;
}
.p-cat {
  font-size: 9px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--m-purple) !important;
}
.p-name {
  font-size: 12px !important;
  line-height: 1.25 !important;
  font-weight: 700;
  -webkit-line-clamp: 2;
}
.p-desc {
  font-size: 10px !important;
  -webkit-line-clamp: 1;
  color: var(--m-text2);
}
.p-price-row {
  gap: 5px !important;
  margin-top: 2px;
}
.p-price {
  font-size: 13px !important;
  font-weight: 800;
  color: var(--m-text);
}
.p-price-old {
  font-size: 10px !important;
}
.p-stock {
  font-size: 9px !important;
}
.p-stock.in-stock { color: var(--m-green) !important; }
.p-actions-row {
  gap: 5px !important;
  padding-top: 3px;
}
.p-actions-row button, .p-actions-row a {
  height: 28px !important;
  font-size: 10px !important;
  border-radius: 8px !important;
  font-weight: 700;
  gap: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.p-add {
  background: var(--m-grad) !important;
}
.p-order {
  background: var(--m-purple) !important;
  color: #fff;
}
.p-badge {
  font-size: 8px !important;
  padding: 2px 5px !important;
}
.p-badges { top: 6px; left: 6px; gap: 3px; }

/* ── Bottom Navigation ── */
.bottom-nav {
  display: flex !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--m-dark);
  border-top: 1px solid rgba(255 255 255 / 0.08);
  z-index: 50;
  padding: 4px 0;
  padding-bottom: calc(4px + env(safe-area-inset-bottom, 0px));
  align-items: center;
  justify-content: space-around;
}
.bottom-nav a, .bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 0;
  text-decoration: none;
  min-width: 60px;
  color: #B0B7C8;
  font-size: 11px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.bottom-nav a svg, .bottom-nav button svg {
  width: 20px;
  height: 20px;
  color: #B0B7C8;
  transition: color 0.2s;
}
.bottom-nav a.active svg,
.bottom-nav a.active {
  color: #fff;
}
.bottom-nav a.active svg {
  background: var(--m-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bottom-nav a.active {
  color: #fff;
}
.bottom-cart {
  position: relative;
}
.bottom-cart-count {
  position: absolute;
  top: -2px;
  right: calc(50% - 16px);
  min-width: 18px;
  height: 18px;
  background: var(--m-red);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
}
body { padding-bottom: 62px; }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 68px;
  width: 50px;
  height: 50px;
  background: var(--m-green);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  z-index: 45;
  transition: transform 0.2s;
}
.wa-float:active { transform: scale(0.92); }
.wa-float svg { width: 24px; height: 24px; }

/* ── Section Titles with accent ── */
.section-sm {
  padding: 16px 0 !important;
}

/* ── Featured / Best Sellers horizontal scroll on mobile ── */
.product-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px 8px;
  scrollbar-width: none;
}
.product-scroll::-webkit-scrollbar { display: none; }
.product-scroll .p-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
}

/* ── Brands strip ── */
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1.5px solid var(--m-border);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--m-text);
  text-decoration: none;
  transition: all 0.2s;
}
.brand-pill img { height: 22px; width: auto; border-radius: 6px; }
.brand-pill:hover {
  border-color: var(--m-purple);
  background: #f5f3ff;
}

/* ── Promo Banners ── */
.promo-banner {
  display: block;
  border-radius: var(--m-radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 140px;
  text-decoration: none;
  color: #fff;
  margin: 0 16px;
}
.promo-banner .pb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.promo-banner .pb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(11 22 54 / 0.8), rgb(99 63 242 / 0.5));
}
.promo-banner > div:last-child {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.pb-title { font-size: 18px; font-weight: 800; }
.pb-sub { font-size: 13px; color: rgba(255 255 255 / 0.8); margin: 4px 0 12px; }

/* ── Testimonials ── */
.t-card {
  background: #fff;
  border: 1.5px solid var(--m-border);
  border-radius: var(--m-radius);
  padding: 18px;
}
.t-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--m-text);
  line-height: 1.55;
  margin-bottom: 10px;
}
.t-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.t-person .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--m-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

/* ── Newsletter ── */
.newsletter {
  background: var(--m-grad-dark);
  border-radius: var(--m-radius-lg);
  padding: 24px 20px;
  color: #fff;
}
.nl-title { font-size: 18px; font-weight: 800; }
.nl-sub { font-size: 13px; color: rgba(255 255 255 / 0.7); margin-top: 4px; }
.nl-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  background: rgba(255 255 255 / 0.1);
  border-radius: 14px;
  padding: 5px;
}
.nl-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}
.nl-form input::placeholder { color: rgba(255 255 255 / 0.5); }
.nl-form button {
  background: var(--m-grad);
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

/* ── Footer (hidden on mobile, behind bottom nav) ── */
.site-footer {
  display: none;
}

/* ── Cart Drawer ── */
.drawer {
  width: 100% !important;
  max-width: 100% !important;
}
.drawer-head {
  background: var(--m-dark);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-head .icon-btn { color: #fff; }

/* ── Page Hero compact ── */
.page-hero {
  padding: 16px 20px !important;
  margin: 10px 16px 14px !important;
  border-radius: var(--m-radius) !important;
}
.page-hero h1 { font-size: 1.15rem !important; }

/* ── Utility ── */
.container { padding: 0 16px; }

/* ── PWA FAB ── */
.pwa-fab {
  display: none;
}

/* ── Alert compact ── */
.alert { font-size: 13px; padding: 10px 14px; }

/* ── Breadcrumb ── */
.breadcrumb { font-size: 12px !important; }

/* ── empty state ── */
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px 20px;
  color: var(--m-text2);
  font-size: 14px;
}

.hero-tags {
    padding: 0 12px;
    margin-top: 6px;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-tags::-webkit-scrollbar { display: none; }
  .hero-tag {
    flex: 0 0 auto;
    padding: 4px 8px;
    font-size: 10px;
    gap: 4px;
    border-radius: 6px;
  }
  .hero-tag svg { width: 10px; height: 10px; }

} /* end @media max-width: 430px */

/* ═══════════════════════════════════════════════
   DESKTOP PREMIUM STYLES (≥431px)
   Same design system, desktop-adapted
   ═══════════════════════════════════════════════ */

@media (min-width: 431px) {

/* ── Base ── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Announcement Bar ── */
.announce-bar {
  background: var(--m-grad);
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.announce-bar .marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}
.announce-bar span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header ── */
.site-header {
  background: var(--m-dark);
  position: sticky;
  top: 0;
  z-index: 45;
  box-shadow: 0 2px 20px rgb(0 0 0 / 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.header-inner .logo {
  gap: 10px;
  flex-shrink: 0;
}
.header-inner .logo img,
.header-inner .logo .logo-mark {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: 2px solid var(--m-purple);
}
.header-inner .logo > span {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.header-inner .search-bar {
  flex: 1;
  max-width: 520px;
  margin: 0 auto;
  height: 40px;
  background: rgba(255 255 255 / 0.1);
  border: 1.5px solid rgba(255 255 255 / 0.15);
  border-radius: 20px;
  padding: 0 6px 0 18px;
}
.m-search-wrap { display: none !important; }
.header-inner .search-bar:focus-within {
  background: rgba(255 255 255 / 0.16);
  border-color: rgba(255 255 255 / 0.3);
  box-shadow: 0 0 0 3px rgb(99 102 241 / 0.15);
}
.header-inner .search-bar input { color: #fff; font-size: 13.5px; }
.header-inner .search-bar input::placeholder { color: rgba(255 255 255 / 0.5); }
.header-inner .search-bar button {
  background: var(--m-grad);
  height: 30px;
  padding: 0 16px;
  border-radius: 16px;
  font-size: 13px;
}
.header-inner > nav {
  gap: 4px;
}
.header-inner > nav .nav-link,
.header-inner > nav .icon-btn {
  color: rgba(255 255 255 / 0.8);
}
.header-inner > nav .nav-link:hover,
.header-inner > nav .icon-btn:hover {
  color: #fff;
  background: rgba(255 255 255 / 0.08);
}

/* ── Category Nav ── */
.cat-nav {
  background: var(--m-dark);
  padding: 6px 0 12px;
}
.cat-nav .container { max-width: 1320px; }
.cat-nav-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-link {
  white-space: nowrap;
  padding: 0 20px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #D0D5DD;
  background: rgba(255 255 255 / 0.05);
  border: 1px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
}
.cat-link:hover { background: rgba(255 255 255 / 0.1); color: #fff; }
.cat-link.active {
  background: var(--m-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgb(99 102 241 / 0.3);
}

/* ── Hero ── */
.hero-slider {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 24px 0;
}
.hero {
  border-radius: var(--m-radius-lg);
  height: 220px;
  margin: 0;
  background: linear-gradient(135deg, #151C4D 0%, #4F46E5 50%, #7C3AED 100%);
}
@media (min-width: 861px) {
  .hero { height: 300px; }
}
.hero-overlay {
  background: linear-gradient(135deg, rgb(11 22 54 / 0.6) 0%, rgb(99 63 242 / 0.25) 100%) !important;
}
.hero-content {
  padding: 32px 48px 28px !important;
}
.hero-kicker {
  background: #FFE66D !important;
  color: var(--m-text) !important;
  border: none !important;
  font-size: 11px !important;
  padding: 5px 14px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 900 !important;
  line-height: 0.95 !important;
  margin: 12px 0 10px !important;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  font-size: 15px !important;
  color: rgba(255 255 255 / 0.8) !important;
  margin-bottom: 18px !important;
  max-width: 440px;
  line-height: 1.5;
}
.hero-ctas .btn {
  height: 44px !important;
  padding: 0 24px !important;
  font-size: 14px !important;
  font-weight: 700;
  border-radius: 22px !important;
  background: #fff !important;
  color: var(--m-text) !important;
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-ctas .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(0 0 0 / 0.2);
}
.hero-dots {
  margin-top: 14px;
  justify-content: center;
}
.hero-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 4px !important;
  background: #D0D5DD !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-dot.active {
  width: 28px !important;
  background: var(--m-grad) !important;
  border-radius: 4px !important;
}
.hero-tags {
  padding: 0 12px;
  margin-top: 6px;
}
@media (max-width: 1024px) {
  .hero-tags {
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-tags::-webkit-scrollbar { display: none; }
  .hero-tag {
    flex: 0 0 auto;
    padding: 4px 8px;
    font-size: 10px;
    gap: 4px;
    border-radius: 6px;
  }
  .hero-tag svg { width: 10px; height: 10px; }
}

/* ── Section Headers ── */
.section { padding: 28px 0 !important; }
.section .container { max-width: 1320px; }
.section-head {
  padding: 0 24px;
  margin-bottom: 18px;
  gap: 14px;
}
.section-title {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: var(--m-text) !important;
  letter-spacing: -0.02em;
  padding-left: 16px !important;
  position: relative;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 24px;
  background: var(--m-grad);
  border-radius: 2px;
}
.section-subtitle {
  font-size: 15px !important;
  color: var(--m-text2) !important;
  margin-top: 4px;
}
.section-head .btn-ghost {
  height: 40px !important;
  padding: 0 18px !important;
  font-size: 13px !important;
  border-radius: 14px !important;
  background: #fff !important;
  border: 1.5px solid var(--m-border) !important;
  color: var(--m-text) !important;
  font-weight: 600;
  transition: all 0.2s;
}
.section-head .btn-ghost:hover {
  border-color: var(--m-purple) !important;
  color: var(--m-purple) !important;
  box-shadow: 0 2px 8px rgb(99 102 241 / 0.1);
}

/* ── Category Cards ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 16px;
}
@media (min-width: 431px) and (max-width: 860px) {
  .cat-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }
}
@media (min-width: 861px) {
  .cat-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    padding: 0 24px;
  }
}
.cat-card {
  aspect-ratio: 1/1;
  border-radius: var(--m-radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.12);
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s;
}
.cat-card:hover img { transform: scale(1.05); }
.cat-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  width: 100%;
  background: linear-gradient(90deg, rgb(11 22 54 / 0.85) 0%, rgb(11 22 54 / 0.35) 60%, transparent 100%);
}
.cat-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.cat-count {
  font-size: 12px;
  color: rgba(255 255 255 / 0.75);
  margin-top: 4px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  background: #fff;
  color: var(--m-text);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 14px;
  width: fit-content;
  transition: transform 0.2s;
}
.cat-chip:hover { transform: translateX(4px); }

.cat-card:nth-child(1) { background: linear-gradient(135deg, #4F1D95, #7C3AED, #FF3CAC); }
.cat-card:nth-child(2) { background: linear-gradient(135deg, #1E3A8A, #4F46E5, #7C3AED); }
.cat-card:nth-child(3) { background: linear-gradient(135deg, #831843, #BE185D, #7C3AED); }
.cat-card:nth-child(4) { background: linear-gradient(135deg, #0B1636, #164E63, #06B6D4); }
.cat-card:nth-child(n+5) { background: linear-gradient(135deg, #1E1B4B, #4338CA, #818CF8); }

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  padding: 0 24px;
}
.product-grid.cols-5 {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
}

/* ── Product Card ── */
.p-card {
  border-radius: 16px !important;
  border: 1.5px solid var(--m-border) !important;
  background: #fff !important;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.p-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgb(99 102 241 / 0.1);
  border-color: #c7d2fe !important;
}
.p-media {
  aspect-ratio: 1/1 !important;
}
.p-body {
  padding: 8px 12px 10px !important;
  gap: 2px !important;
}
.p-cat {
  font-size: 10px !important;
  color: var(--m-purple) !important;
}
.p-name {
  font-size: 13.5px !important;
  font-weight: 700;
}
.p-price {
  font-size: 15px !important;
  font-weight: 800;
}
.p-actions-row button, .p-actions-row a { height: 30px !important; }
.p-add { background: var(--m-grad) !important; }
.p-order { background: var(--m-purple) !important; }

/* ── Bottom Nav (hidden on desktop) ── */
.bottom-nav { display: none !important; }
body { padding-bottom: 0; }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: var(--m-green);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
  z-index: 45;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ── Brands ── */
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid var(--m-border);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--m-text);
  text-decoration: none;
  transition: all 0.2s;
}
.brand-pill img { height: 26px; width: auto; border-radius: 6px; }
.brand-pill:hover {
  border-color: var(--m-purple);
  background: #f5f3ff;
  box-shadow: 0 2px 8px rgb(99 102 241 / 0.08);
}

/* ── Promo Banners ── */
.promo-banner {
  border-radius: var(--m-radius-lg);
  min-height: 160px;
}
.promo-banner .pb-overlay {
  background: linear-gradient(135deg, rgb(11 22 54 / 0.75), rgb(99 63 242 / 0.4));
}
.promo-banner > div:last-child { padding: 28px; }
.pb-title { font-size: 20px; }
.pb-sub { font-size: 14px; }

/* ── Testimonials ── */
.t-card {
  background: #fff;
  border: 1.5px solid var(--m-border);
  border-radius: var(--m-radius);
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.t-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgb(99 102 241 / 0.08);
}
.t-quote { font-size: 15px; }
.t-person .avatar { width: 40px; height: 40px; font-size: 15px; }

/* ── Newsletter ── */
.newsletter {
  background: var(--m-grad-dark);
  border-radius: var(--m-radius-lg);
  padding: 36px 32px;
}
.nl-title { font-size: 22px; }
.nl-sub { font-size: 15px; }
.nl-form {
  background: rgba(255 255 255 / 0.08);
  border-radius: 16px;
  padding: 6px;
  max-width: 480px;
}
.nl-form button {
  padding: 0 28px;
  border-radius: 14px;
  font-size: 15px;
}

/* ── Footer ── */
.site-footer {
  display: block;
  background: var(--m-dark);
}
.footer-head { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.footer-links li a { color: #c7d2fe; font-size: 13px; }
.footer-links li a:hover { color: #fff; }
.footer-bottom {
  background: #080e24;
  color: #c7d2fe;
}

/* ── Cart Drawer ── */
.drawer { width: 400px !important; max-width: 400px !important; }
.drawer-head {
  background: var(--m-dark);
  color: #fff;
  padding: 18px 22px;
}
.drawer-head .icon-btn { color: #fff; }

/* ── Page Hero ── */
.page-hero {
  border-radius: var(--m-radius-lg) !important;
  background: var(--m-grad-purple) !important;
  padding: 40px 36px !important;
}
.page-hero h1 { font-size: 1.6rem !important; }

/* ── PWA FAB (hidden desktop) ── */
.pwa-fab { display: none; }

} /* end @media min-width: 431px */
