/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-deep: #06101c;
  --card: rgba(12, 24, 42, 0.88);
  --gold: #c9a227;
  --gold-light: #e0bc4a;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --grey: #94a3b8;
  --grey-light: #cbd5e1;
  --blue: #1e3a5f;
  --red-accent: #c41e3a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1200px 520px at 15% -10%, rgba(201,162,39,0.10) 0%, rgba(201,162,39,0) 60%),
    radial-gradient(1000px 600px at 100% 0%, rgba(30,58,95,0.55) 0%, rgba(30,58,95,0) 55%),
    linear-gradient(180deg, #0a1628 0%, #06101c 45%, #050b14 100%);
  background-attachment: fixed;
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BACKGROUND VIDEO ===== */
.bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 16, 28, 0.78) 0%,
    rgba(6, 16, 28, 0.88) 50%,
    rgba(6, 16, 28, 0.94) 100%
  );
}

/* ===== NAVBAR - Dangote clean style ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
  padding: 0;
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 4px;
}

.hero-logo {
  width: min(280px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 32px rgba(201, 162, 39, 0.35));
  border-radius: 8px;
}

.footer-logo-img {
  width: min(200px, 55vw);
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 4px 16px rgba(201, 162, 39, 0.25));
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), #a07820);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  letter-spacing: -0.5px;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.logo-text strong {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red-accent);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red-accent);
}

.btn-nav {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 4px;
  font-weight: 600 !important;
}

.btn-nav:hover {
  background: #0f2138 !important;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== HERO - Large centered Dangote style ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 100px;
  position: relative;
}

.hero-content {
  max-width: 900px;
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--grey-light);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}

.stat {
  padding: 12px 22px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
}

.stat span {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.3px;
}

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

.btn-primary:hover {
  background: #132a4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn.full { width: 100%; margin-top: 12px; }

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: rgba(8, 18, 32, 0.65);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  color: #fff;
}

.section-title.left { text-align: left; }

.section-subtitle {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.group-title {
  color: var(--gold);
  font-size: 0.85rem;
  margin: 48px 0 22px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 28px 26px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.card-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
}

.card p {
  color: var(--grey);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* ===== CREDENTIALS ===== */
.cred-list {
  margin-top: 14px;
}

.cred-list li {
  padding: 7px 0;
  color: var(--grey);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cred-list li:last-child { border-bottom: none; }

.cred-list strong {
  color: #fff;
  font-weight: 600;
}

.credentials-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pricing-grid.single {
  max-width: 380px;
  margin: 0 auto;
}

.price-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px 26px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.price-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-4px);
}

.price-card.popular {
  border-color: var(--gold);
  border-width: 2px;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.price-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 22px;
}

.price-card ul {
  text-align: left;
  margin-bottom: 26px;
}

.price-card li {
  padding: 7px 0;
  color: var(--grey);
  font-size: 0.93rem;
  padding-left: 22px;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== TENDER SHIELD ===== */
.shield-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 44px;
  align-items: center;
  backdrop-filter: blur(10px);
}

.shield-content h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 700;
}

.shield-content p {
  color: var(--grey);
  margin-bottom: 20px;
  line-height: 1.65;
}

.shield-list li {
  padding: 6px 0;
  color: #fff;
  font-size: 0.98rem;
}

.shield-plans {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 16, 28, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 15px 20px;
}

.mini-plan.highlight {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.mini-plan strong {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.about-grid p {
  color: var(--grey);
  font-size: 1.05rem;
  margin-top: 14px;
  line-height: 1.75;
}

/* ===== CONTACT ===== */
.contact-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-details {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 32px;
  margin-bottom: 28px;
  text-align: left;
  backdrop-filter: blur(10px);
}

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-label {
  font-size: 0.72rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.contact-value {
  font-size: 1.12rem;
  font-weight: 600;
  margin-top: 3px;
  color: #fff;
}

.contact-value.link {
  color: var(--gold);
}

.contact-value.link:hover {
  color: var(--gold-light);
}


/* ===== HQ CONTACT (Dangote style) ===== */
.hq-contact {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.hq-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.hq-subtitle {
  color: var(--grey);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.hq-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.hq-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hq-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
}

.hq-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.hq-value {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.5;
}

.hq-value a {
  color: var(--gold);
  transition: color 0.2s;
}

.hq-value a:hover {
  color: var(--gold-light);
}

.hq-contact .btn {
  display: inline-block;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 36px;
  text-align: center;
  background: rgba(6, 16, 28, 0.9);
}

.footer-top {
  margin-bottom: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--gold);
  font-size: 0.95rem;
}

.footer-meta {
  color: var(--grey);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer-copy {
  color: var(--grey);
  font-size: 0.8rem;
  opacity: 0.75;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    gap: 14px;
  }

  .nav-links.open { display: flex; }

  .nav-links a { color: #1e293b; }

  .hero { padding: 120px 0 70px; min-height: auto; }

  .shield-box,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .shield-box { padding: 28px; }

  .section { padding: 70px 0; }

  .hero-stats { gap: 4px; }
  .stat { padding: 10px 14px; }
}

/* Yoco payment UI */
.pay-btn {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
  border: none;
}
.btn-link-wa {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: none;
}
.btn-link-wa:hover { color: #c9a227; text-decoration: underline; }

.pay-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}
.pay-modal[hidden] { display: none !important; }
.pay-modal-content {
  background: #0f172a;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 16px;
  padding: 28px 24px;
  max-width: 420px;
  width: 100%;
  position: relative;
  color: #e2e8f0;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.pay-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.pay-modal-close:hover { color: #fff; }
.pay-modal-content h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  color: #f8fafc;
}
.pay-modal-sub {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: #94a3b8;
}
.pay-modal-content label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: #cbd5e1;
}
.pay-modal-content input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #1e293b;
  color: #f1f5f9;
  font-size: 1rem;
  box-sizing: border-box;
}
.pay-modal-content input:focus {
  outline: none;
  border-color: #c9a227;
}
.pay-amount-line {
  margin: 8px 0 18px;
  font-size: 1.05rem;
  color: #e2e8f0;
}
.pay-amount-line strong { color: #c9a227; }
.pay-error {
  margin-top: 12px;
  color: #f87171;
  font-size: 0.9rem;
  text-align: center;
}
.btn.full { width: 100%; }

/* ========== Cart icon in nav ========== */
.cart-toggle {
  position: relative;
  margin-left: 12px;
  background: transparent;
  border: none;
  color: #1e293b;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-toggle:hover { color: #c9a227; }
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #c9a227;
  color: #0f172a;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge[hidden] {
  display: none !important;
}

/* ========== Cart drawer ========== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
}
.cart-overlay[hidden] { display: none !important; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  /* dvh so mobile browser chrome can't push the checkout button off-screen */
  height: 100dvh;
  max-height: 100dvh;
  background: #0f172a;
  color: #e2e8f0;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,0.4);
  border-left: 1px solid rgba(201,162,39,0.25);
}
.cart-drawer[hidden] { display: none !important; }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #1e293b;
  flex: 0 0 auto;          /* never shrink away when the cart is full */
}
.cart-drawer-header h2 {
  margin: 0;
  font-size: 1.15rem;
  color: #f8fafc;
}
.cart-drawer-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.cart-drawer-close:hover { color: #fff; }

.cart-drawer-body {
  flex: 1 1 auto;
  min-height: 0;                     /* REQUIRED: without this a flex child
                                        with overflow refuses to scroll and
                                        instead stretches the drawer */
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 20px;
  overscroll-behavior: contain;      /* stop the page scrolling behind it */
  -webkit-overflow-scrolling: touch; /* momentum scrolling on iOS */
  scrollbar-width: thin;
  scrollbar-color: rgba(201,162,39,0.55) rgba(255,255,255,0.06);
}
/* Make the scrollbar visible so it's obvious the list scrolls */
.cart-drawer-body::-webkit-scrollbar { width: 10px; }
.cart-drawer-body::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
}
.cart-drawer-body::-webkit-scrollbar-thumb {
  background: rgba(201,162,39,0.55);
  border-radius: 8px;
  border: 2px solid #0f172a;
}
.cart-drawer-body::-webkit-scrollbar-thumb:hover { background: rgba(201,162,39,0.85); }
.cart-empty {
  text-align: center;
  color: #64748b;
  padding: 40px 10px;
}
.cart-line {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid #1e293b;
}
.cart-line-info strong {
  display: block;
  color: #f1f5f9;
  font-size: 0.95rem;
}
.cart-line-desc {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
}
.cart-line-price {
  display: block;
  margin-top: 4px;
  color: #c9a227;
  font-weight: 600;
}
.cart-line-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1e293b;
  border-radius: 8px;
  padding: 4px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  background: #334155;
  color: #f8fafc;
  font-size: 1.1rem;
  cursor: pointer;
}
.qty-btn:hover { background: #475569; }
.qty-val {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}
.cart-remove {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}
.cart-remove:hover { color: #f87171; }

.cart-drawer-footer {
  padding: 16px 20px 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #1e293b;
  flex: 0 0 auto;          /* total + checkout button always reachable */
  background: #0f172a;
}
.cart-delivery-badge {
  background: linear-gradient(135deg, #003777 0%, #1e6f3c 100%);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  animation: badge-pulse 2s ease-in-out infinite;
}
.cart-drawer-footer[hidden] { display: none !important; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.cart-total-row strong { color: #c9a227; font-size: 1.25rem; }
.cart-continue { margin-top: 10px; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0f172a;
  color: #f8fafc;
  border: 1px solid rgba(201,162,39,0.5);
  padding: 12px 20px;
  border-radius: 10px;
  z-index: 10002;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast[hidden] { display: none !important; }
.toast.show[hidden] { display: block !important; }

/* Mini add on shield plans */
.mini-add {
  margin-top: 10px !important;
  width: 100%;
  font-size: 0.85rem !important;
  padding: 8px 12px !important;
}
.shield-note {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
}
.mini-plan {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* ========== Checkout page ========== */
.checkout-page .bg-video { opacity: 0.35; }
.checkout-topbar {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 12px 0;
}
.checkout-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-secure {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
}
.lock-icon { margin-right: 4px; }

.checkout-main {
  position: relative;
  z-index: 1;
  padding: 32px 0 60px;
  min-height: 70vh;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: #64748b;
}
.checkout-steps .step.active { color: #c9a227; font-weight: 600; }
.checkout-steps .step.done { color: #94a3b8; }
.step-sep { opacity: 0.5; }

.checkout-title {
  margin: 0 0 6px;
  font-size: 1.75rem;
  color: #f8fafc;
}
.checkout-sub {
  margin: 0 0 24px;
  color: #94a3b8;
}

.checkout-form-panel,
.summary-card {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: 16px;
  padding: 28px 24px;
  color: #e2e8f0;
}

.checkout-form fieldset {
  border: none;
  margin: 0 0 22px;
  padding: 0;
}
.checkout-form legend {
  font-weight: 600;
  color: #c9a227;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.form-row {
  margin-bottom: 14px;
}
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .form-row.two { grid-template-columns: 1fr; }
}
.checkout-form label {
  display: block;
  font-size: 0.85rem;
  color: #cbd5e1;
}
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #1e293b;
  color: #f1f5f9;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}
.checkout-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.checkout-form select option {
  background: #1e293b;
  color: #f1f5f9;
}
.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
  outline: none;
  border-color: #c9a227;
}

.pay-methods { margin: 8px 0 20px; }
.pay-methods h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #c9a227;
}
.pay-method {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #1e293b;
  cursor: pointer;
}
.pay-method.selected {
  border-color: #c9a227;
  background: rgba(201,162,39,0.08);
}
.pay-method input { margin-top: 4px; }
.pay-method-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pay-method-body strong { color: #f8fafc; }
.pay-method-body span { font-size: 0.8rem; color: #94a3b8; }

.btn-pay {
  margin-top: 8px;
  font-size: 1.05rem;
  padding: 14px 20px;
}
.checkout-fineprint {
  margin: 14px 0 0;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.45;
  text-align: center;
}

.summary-card h2 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  color: #f8fafc;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #1e293b;
  font-size: 0.9rem;
}
.summary-line .muted {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px;
}
.summary-totals {
  margin-top: 12px;
  padding-top: 8px;
}
/* A `hidden` element must stay hidden. Layout rules like `display:flex`
   below beat the browser's own [hidden] rule, which silently left the
   "FREE delivery" banner on screen next to a R55.00 delivery charge. */
[hidden] { display: none !important; }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #94a3b8;
}
.summary-row.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #334155;
  font-size: 1.1rem;
  color: #f8fafc;
}
.summary-row.total strong { color: #c9a227; }
.delivery-free-note {
  background: linear-gradient(135deg, rgba(30, 111, 60, 0.2), rgba(0, 55, 119, 0.2));
  border: 1px solid #1e6f3c;
  border-radius: 8px;
  padding: 8px 12px;
  margin: 6px 0;
  color: #4ade80;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
}
.checkout-delivery-banner {
  background: linear-gradient(135deg, #1a0a00, #3d2000);
  color: #ffd700;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  border-bottom: 2px solid #ffd700;
}
.checkout-delivery-banner strong {
  color: #ffd700;
}
.back-shop {
  display: inline-block;
  margin-top: 18px;
  color: #94a3b8;
  font-size: 0.85rem;
  text-decoration: none;
}
.back-shop:hover { color: #c9a227; }

.checkout-footer {
  position: relative;
  z-index: 1;
  padding: 20px 0 32px;
  text-align: center;
  color: #64748b;
  font-size: 0.8rem;
}
.checkout-footer a { color: #c9a227; }

/* Policies are displayed inside the cart/order summary instead of the page footer. */
.cart-policy-links {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #334155;
}
.cart-policy-title {
  color: #f8fafc;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cart-policy-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cart-policy-list a {
  color: #c9a227;
  font-size: 0.78rem;
  line-height: 1.35;
  text-decoration: none;
}
.cart-policy-list a:hover {
  text-decoration: underline;
  color: #f1c84b;
}
.cart-policy-links-drawer {
  margin-top: 12px;
  padding-top: 12px;
}


/* Success */
.success-wrap {
  max-width: 520px;
  margin: 0 auto;
}
.success-card {
  text-align: center;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-card h1 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: #f8fafc;
}
.success-lead { color: #94a3b8; margin: 0 0 8px; }
.order-ref { color: #cbd5e1; margin-bottom: 20px; }
.success-order {
  text-align: left;
  margin: 0 0 20px;
  padding: 16px;
  background: #1e293b;
  border-radius: 12px;
}
.success-order h3 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: #c9a227;
}
.success-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.success-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #334155;
  font-size: 0.9rem;
}
.success-customer { margin-top: 14px; }
.success-customer p { margin: 0; color: #94a3b8; font-size: 0.9rem; line-height: 1.5; }
.success-next {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 22px;
}
.success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.muted { color: #64748b; }

body.cart-open { overflow: hidden; }

/* Nav flex fix for cart button */
.nav-content {
  display: flex;
  align-items: center;
}
.nav-links {
  margin-left: auto;
}
@media (max-width: 900px) {
  .cart-toggle {
    margin-left: auto;
    margin-right: 8px;
  }
}

/* ===== Dasley Store CTA (homepage) ===== */
.store-cta-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.store-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(12, 24, 42, 0.95));
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 16px;
  padding: 40px 48px;
  flex-wrap: wrap;
}
.store-cta-text { flex: 1; min-width: 260px; }
.store-cta-tagline {
  font-size: 1.25rem;
  color: var(--gold-light);
  font-weight: 600;
  margin: 4px 0 12px;
}
.store-cta-text p { color: var(--grey-light); margin-bottom: 20px; max-width: 520px; }
.store-cta-visual {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-cta-icon { font-size: 3rem; }

/* ===== Store page (Fruugo-inspired marketplace) ===== */
.store-page {
  background:
    radial-gradient(1200px 520px at 12% -8%, rgba(201,162,39,0.12) 0%, rgba(201,162,39,0) 58%),
    radial-gradient(1100px 620px at 100% 0%, rgba(30,58,95,0.55) 0%, rgba(30,58,95,0) 55%),
    linear-gradient(180deg, #0b1a30 0%, #081221 45%, #050b14 100%);
  background-attachment: fixed;
  color: #e8edf5;
  min-height: 100vh;
}
.store-page .bg-video-wrap { display: none; }

.store-topbar {
  background: linear-gradient(180deg, #0c1a30 0%, #081221 100%);
  border-bottom: 1px solid rgba(201,162,39,0.22);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.store-topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
  min-height: 64px;
  flex-wrap: wrap;
}
.store-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.store-logo-img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}
.store-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.store-brand strong {
  font-size: 1.05rem;
  color: #0f172a;
}
.store-brand em {
  font-style: normal;
  font-size: 0.75rem;
  color: #64748b;
}
.store-search {
  flex: 1;
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  border: 1.5px solid rgba(201,162,39,0.3);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.store-search:focus-within {
  border-color: #c9a227;
}
.store-search input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 0.95rem;
  outline: none;
  background: transparent;
  color: #f2f5fa;
}
.store-search input::placeholder { color: #8ba0ba; }
.store-search button {
  border: none;
  background: linear-gradient(135deg, var(--gold), #a07820);
  color: #0a1628;
  padding: 0 16px;
  cursor: pointer;
  font-size: 1rem;
}
.store-top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.store-home-link {
  font-size: 0.9rem;
  color: #c6d3e4;
  font-weight: 500;
}
.store-home-link:hover { color: #c9a227; }
.store-cart-btn {
  color: #f0d98a !important;
}
.store-page .cart-badge {
  background: #c9a227;
  color: #0f172a;
}

.store-cats {
  background: linear-gradient(180deg, rgba(12,24,42,0.96), rgba(8,17,30,0.96));
  border-bottom: 1px solid rgba(201,162,39,0.18);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  backdrop-filter: blur(6px);
}
.store-cats-inner {
  display: flex;
  gap: 10px;
  padding: 12px 24px;
  flex-wrap: nowrap;
  align-items: center;
}
.store-cat {
  border: 1.5px solid rgba(201,162,39,0.22);
  background: rgba(255,255,255,0.03);
  color: #cdd8e6;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s ease;
  font-family: inherit;
  line-height: 1.2;
}
.store-cat:hover {
  border-color: rgba(201,162,39,0.6);
  color: #f0d98a;
  background: rgba(201,162,39,0.08);
  transform: translateY(-1px);
}
.store-cat.active {
  background: linear-gradient(135deg, var(--gold), #a07820);
  border-color: var(--gold);
  color: #0a1628;
  box-shadow: 0 4px 14px rgba(201,162,39,0.35);
}
.store-cat.active:hover {
  background: linear-gradient(135deg, #e0bc4a, #b8901f);
  border-color: var(--gold);
  color: #0a1628;
}

/* PAXI option highlight */
.paxi-label {
  transition: border-color 0.15s, background 0.15s;
}
.paxi-label:hover {
  border-color: rgba(251, 191, 36, 0.5) !important;
  background: rgba(251, 191, 36, 0.06) !important;
}
#paxiCollect:checked + span strong,
.paxi-label:has(#paxiCollect:checked) {
  border-color: #fbbf24 !important;
}

.store-main {
  padding: 28px 0 60px;
}
.store-hero-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.store-hero-banner h1 {
  font-size: 1.75rem;
  margin-bottom: 6px;
}
.store-hero-banner p {
  color: #cbd5e1;
  max-width: 480px;
  font-size: 0.95rem;
}
.store-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.store-hero-badges span {
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: #e0bc4a;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.store-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.store-count {
  color: #a9bace;
  font-size: 0.9rem;
}
.store-sort {
  font-size: 0.875rem;
  color: #a9bace;
  display: flex;
  align-items: center;
  gap: 8px;
}
.store-sort select {
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.875rem;
  background: rgba(12,24,42,0.9);
  color: #f2f5fa;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.store-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #a9bace;
  padding: 48px 16px;
}

.store-card {
  background: linear-gradient(180deg, rgba(18,32,54,0.92), rgba(11,22,40,0.94));
  border: 1px solid rgba(201,162,39,0.14);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.25s, transform 0.15s, border-color 0.2s;
}
.store-card:hover {
  box-shadow: 0 14px 34px rgba(0,0,0,0.5), 0 0 20px rgba(201,162,39,0.10);
  transform: translateY(-3px);
  border-color: rgba(201,162,39,0.45);
}
.store-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c9a227;
  color: #0f172a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.store-card-media {
  height: 200px;
  background: linear-gradient(145deg, #f8fafc, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.store-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.store-card:hover .store-card-media img {
  transform: scale(1.08);
}
.store-card-emoji { font-size: 3rem; }

.store-card-specs {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  border-top: 1px solid #f1f5f9;
}
.store-card-specs li {
  font-size: 0.78rem;
  color: #475569;
  padding: 3px 0;
  line-height: 1.35;
}
.store-card-specs strong {
  color: #0f172a;
  font-weight: 600;
}
.store-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.store-card-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #c9a227;
  font-weight: 700;
  margin-bottom: 4px;
}
.store-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f2f5fa;
  margin-bottom: 6px;
  line-height: 1.35;
}
.store-card-desc {
  font-size: 0.8rem;
  color: #9fb0c6;
  line-height: 1.45;
  flex: 1;
  margin-bottom: 14px;
}
.store-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}
.store-card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #f0d98a;
}
.store-add {
  padding: 8px 14px !important;
  font-size: 0.8rem !important;
  white-space: nowrap;
}
.store-card-delivery {
  font-size: 0.68rem;
  color: #8ba0ba;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ===== Product Detail Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-overlay[hidden] {
  display: none !important;
}
.modal-card {
  background: #fff;
  border-radius: 16px;
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  gap: 0;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.25);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #0f172a;
  border: 2px solid #0f172a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.modal-close:hover {
  background: #334155;
  border-color: #334155;
}
.modal-gallery {
  flex: 0 0 440px;
  max-width: 440px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  border-right: 1px solid #f1f5f9;
  background: #fafbfc;
}
.modal-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  max-height: 400px;
  flex-shrink: 0;
  width: 64px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.modal-gallery-thumbs::-webkit-scrollbar {
  width: 4px;
}
.modal-gallery-thumbs::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.modal-gallery-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.modal-zoom-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(145deg, #f8fafc, #e2e8f0);
}
.modal-main-img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.1s ease;
  display: block;
}
.modal-zoom-lens {
  display: none;
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid #c9a227;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(201, 162, 39, 0.08);
  box-shadow: 0 0 0 9999px rgba(15, 23, 42, 0.15);
  z-index: 5;
}
.modal-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.modal-thumb:hover {
  opacity: 1;
}
.modal-thumb.active {
  border-color: #c9a227;
  opacity: 1;
}
.modal-info {
  flex: 1;
  padding: 28px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c9a227;
  font-weight: 700;
}
.modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}
.modal-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}
.modal-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}
.modal-specs {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
}
.modal-specs li {
  font-size: 0.8rem;
  color: #64748b;
  padding: 3px 0;
  line-height: 1.4;
}
.modal-specs li::before {
  content: '•';
  margin-right: 6px;
  color: #c9a227;
  font-weight: 700;
}
.modal-delivery {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 4px;
}
.modal-delivery p {
  margin: 0 0 4px;
  font-size: 0.8rem;
  color: #166534;
  line-height: 1.4;
}
.modal-delivery p:last-child {
  margin-bottom: 0;
}
.modal-add {
  margin-top: 10px;
  padding: 12px 24px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
}
/* .modal-policy is defined below */
/* .modal-close-btn is defined below (full version) */
.modal-policy {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 6px;
}
.modal-policy p {
  margin: 0;
  font-size: 0.82rem;
  color: #92400e;
  line-height: 1.45;
}
.modal-close-btn {
  margin-top: 14px;
  width: 100%;
  padding: 14px 20px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  cursor: pointer;
  text-align: center;
  display: block;
  background: #0f172a !important;
  color: #fff !important;
  border: 2px solid #0f172a !important;
  transition: background 0.15s, color 0.15s;
}
.modal-close-btn:hover {
  background: #334155 !important;
  border-color: #334155 !important;
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 700px) {
  .modal-card {
    flex-direction: column;
    max-height: 95vh;
  }
  .modal-gallery {
    flex: none;
    max-width: none;
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
    padding: 16px;
    flex-direction: column;
  }
  .modal-gallery-thumbs {
    flex-direction: row;
    max-height: none;
    width: auto;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .modal-main-img {
    height: 240px;
  }
  .modal-zoom-lens {
    display: none !important;
  }
  .delivery-banner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 14px 16px;
  }
  .delivery-banner-text {
    align-items: center;
  }
  .modal-info {
    padding: 16px;
  }
}

/* ===== DELIVERY BANNER ===== */
.delivery-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff;
  border: 2px solid #c9a227;
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 20px;
}
.delivery-banner-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}
.delivery-banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.delivery-banner-text strong {
  font-size: 1.1rem;
  color: #e0bc4a;
  letter-spacing: 0.02em;
}
.delivery-banner-text span {
  font-size: 0.85rem;
  color: #cbd5e1;
}
.badge-delivery {
  background: #c9a227 !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  border: 2px solid #c9a227 !important;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(201, 162, 39, 0); }
}
.footer-delivery {
  color: #e0bc4a;
  font-weight: 600;
  margin-top: 8px;
}
/* Enhanced card images */
.store-card-media {
  height: 220px;
  background: linear-gradient(145deg, #f8fafc, #eef2f6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.store-card-media::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
  pointer-events: none;
  z-index: 1;
}
.store-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.store-card:hover .store-card-media img {
  transform: scale(1.12);
}
.store-card-delivery {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #166534;
  background: #f0fdf4;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}
.card-delivery-badge {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 2px;
  padding: 2px 0;
  line-height: 1.3;
}
.card-delivery-badge.free-delivery {
  color: #166534;
  font-weight: 600;
}
.card-delivery-badge.courier-only {
  color: #b45309;
  font-weight: 600;
}

.store-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.7;
}
.store-footer a { color: #c9a227; }
.store-footer-links { margin-top: 8px; }
.store-footer-logo {
  margin-bottom: 12px;
}
.store-footer-logo-img {
  width: min(180px, 50vw);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  filter: drop-shadow(0 4px 16px rgba(201, 162, 39, 0.25));
}

.store-page .cart-drawer {
  color: #e2e8f0;
}
.store-page .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: #e2e8f0;
}

@media (max-width: 768px) {
  .store-search { max-width: none; order: 3; width: 100%; flex-basis: 100%; }
  .store-topbar-inner { gap: 12px; }
  .store-hero-banner { padding: 20px; }
  .store-cta-box { padding: 28px 24px; }
}

/* Coming soon store */
.store-coming-soon {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.coming-soon-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 48px 36px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}
.coming-soon-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c9a227;
  font-weight: 700;
  margin-bottom: 8px;
}
.coming-soon-box h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.coming-soon-tagline {
  font-size: 1.15rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 16px;
}
.coming-soon-text {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.coming-soon-wa {
  border-color: #0f172a !important;
  color: #0f172a !important;
}
.coming-soon-wa:hover {
  background: #0f172a !important;
  color: #fff !important;
}
.delivery-badge-bounce {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a0a00 0%, #3d2000 40%, #1a0a00 100%);
  color: #ffd700;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 800;
  margin-top: 6px;
  border: 2px solid #ffd700;
  box-shadow:
    0 0 14px rgba(255, 215, 0, 0.45),
    0 0 40px rgba(255, 215, 0, 0.15),
    inset 0 0 18px rgba(255, 215, 0, 0.08);
  animation: badge-bounce 1.6s ease-in-out infinite, badge-glow 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.delivery-badge-text {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}
.star-sparkle {
  display: inline-block;
  font-size: 1rem;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.9), 0 0 20px rgba(255, 215, 0, 0.4);
  animation: sparkle-rotate 1.2s ease-in-out infinite, sparkle-scale 0.7s ease-in-out infinite;
}
.star-sparkle:first-child {
  animation-delay: 0s, 0s;
}
.star-sparkle:last-child {
  animation-delay: 0.35s, 0.15s;
}
@keyframes badge-bounce {
  0%, 100% { transform: translateY(0); }
  15%  { transform: translateY(-10px); }
  30%  { transform: translateY(0); }
  45%  { transform: translateY(-6px); }
  60%  { transform: translateY(0); }
  75%  { transform: translateY(-3px); }
  90%  { transform: translateY(0); }
}
@keyframes badge-glow {
  0%, 100% {
    box-shadow:
      0 0 14px rgba(255, 215, 0, 0.45),
      0 0 40px rgba(255, 215, 0, 0.15),
      inset 0 0 18px rgba(255, 215, 0, 0.08);
  }
  50% {
    box-shadow:
      0 0 22px rgba(255, 215, 0, 0.7),
      0 0 60px rgba(255, 215, 0, 0.3),
      inset 0 0 25px rgba(255, 215, 0, 0.15);
  }
}
@keyframes sparkle-rotate {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
  25%  { transform: rotate(90deg) scale(0.6); opacity: 0.4; }
  50%  { transform: rotate(180deg) scale(1.3); opacity: 1; }
  75%  { transform: rotate(270deg) scale(0.8); opacity: 0.5; }
}
@keyframes sparkle-scale {
  0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.9), 0 0 20px rgba(255, 215, 0, 0.4); }
  50%  { text-shadow: 0 0 18px rgba(255, 215, 0, 1), 0 0 35px rgba(255, 215, 0, 0.7), 0 0 50px rgba(255, 215, 0, 0.3); }
}

/* ===== Live status bar (video style) ===== */
.live-status-bar {
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.78rem;
  padding: 0.4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.live-status-bar strong { color: #fbbf24; font-weight: 600; }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.live-sep { opacity: 0.5; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== Flash deals banner ===== */
.flash-deals-banner {
  background: linear-gradient(90deg, #7c2d12 0%, #9a3412 40%, #c2410c 100%);
  color: #fff;
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(194, 65, 12, 0.35);
}
.flash-deals-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.flash-icon { font-size: 1.2rem; }
.flash-timer {
  background: rgba(0,0,0,0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  min-width: 5.5rem;
  text-align: center;
}

.badge-flash {
  background: linear-gradient(135deg, #ea580c, #c2410c) !important;
  color: #fff !important;
}

.store-card-badge.flash {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.store-card-price s {
  opacity: 0.55;
  font-size: 0.85em;
  margin-right: 0.35rem;
}
.store-card-save {
  display: block;
  font-size: 0.78rem;
  color: #16a34a;
  font-weight: 600;
  margin-top: 0.15rem;
}

@media (max-width: 640px) {
  .flash-deals-banner { flex-direction: column; text-align: center; }
  .live-status-bar { font-size: 0.7rem; }
}


/* ===== CART OPEN: lock the page behind the drawer =====
   Without this, scrolling the cart chains through to the page underneath,
   which is what made a full cart feel impossible to scroll. */
body.cart-open {
  overflow: hidden;
  touch-action: none;
}
body.cart-open .cart-drawer { touch-action: auto; }
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  z-index: 10000;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.cart-backdrop[hidden] { display: none !important; }

/* ===== INLINE FORM VALIDATION ===== */
.field-error {
  display: block;
  margin-top: 6px;
  /* light red — the checkout runs on a dark panel, so a dark red would be
     almost unreadable against it */
  color: #fca5a5;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
}
.field-error::before {
  content: '\26A0';
  margin-right: 6px;
}
.field-error[hidden] { display: none !important; }
.checkout-form input.invalid,
.checkout-form select.invalid,
.checkout-form textarea.invalid {
  border-color: #f87171 !important;
  background: rgba(220, 38, 38, 0.14) !important;
  color: #fff5f5;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.18);
}
.checkout-form input.invalid::placeholder,
.checkout-form textarea.invalid::placeholder { color: rgba(255, 245, 245, 0.55); }
.checkout-form input.invalid:focus,
.checkout-form select.invalid:focus {
  outline: none;
  border-color: #b91c1c !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.22);
}

/* ===== STORE: NO SEARCH RESULTS ===== */
.store-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  margin: 0;
  color: #475569;
  font-size: 1.02rem;
  font-weight: 500;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
}
.store-no-results[hidden] { display: none !important; }

/* ============================================================
   SUPPLIER STRIP REMOVED FROM STORE CARDS (legal risk)
   ============================================================ */

/* ============================================================
   SENTINEL BADGE (silent security indicator)
   ============================================================ */
#sentinelBadge {
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  font-size: 0;
}
#sentinelBadge.active {
  opacity: 1;
}
#sentinelBadge svg {
  width: 22px;
  height: 22px;
}

/* =====================================================================
   DAILY PRODUCTS — "Newly Added" shelf
   Products added by the daily robot use the exact same card, detail view,
   cart and checkout path as the hand-built range. These rules only add the
   category chip and the corner flag; nothing else about the store layout
   changes.
   ===================================================================== */
.store-cat-new {
  border-color: #c9a227;
  color: #7a6112;
  background: #fffdf3;
}
.store-cat-new:hover {
  border-color: #a07820;
  color: #5c480c;
  background: #fdf8e4;
}
.store-cat-new.active {
  background: #c9a227;
  border-color: #c9a227;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
}
.store-cat-new.active:hover {
  background: #b8931f;
  border-color: #b8931f;
  color: #0f172a;
}

.store-card-new {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffd970;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.28);
  pointer-events: none;
}

@media (max-width: 480px) {
  .store-card-new {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 0.62rem;
  }
}

/* ===== Collapsible checkout sections ===== */
.collapsible-fieldset {
  transition: border-color .2s ease;
}
.collapsible-fieldset:not(.collapsed) {
  border-color: rgba(251,191,36,0.5);
}
.collapsible-fieldset.collapsed .chevron-icon {
  transform: rotate(-90deg);
}
.collapsible-fieldset:not(.collapsed) .chevron-icon {
  transform: rotate(0deg);
}
.collapsible-legend:hover {
  opacity: 0.85;
}
.collapsible-content {
  will-change: max-height, opacity;
}
.collapsible-fieldset.collapsed {
  background: rgba(15,23,42,0.15);
}
/* PAXI fieldset specific glow when expanded */
#paxiFieldset:not(.collapsed) {
  border-color: rgba(251,191,36,0.6);
  box-shadow: 0 0 12px rgba(251,191,36,0.08);
}
/* Business fieldset highlight when expanded */
#businessFieldset:not(.collapsed) {
  border-color: rgba(148,163,184,0.4);
}

/* ===== MOSAIC HERO (store) ===== */
.store-hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 190px 170px;
  gap: 12px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(201,162,39,0.14), rgba(201,162,39,0.02) 40%, rgba(10,22,40,0.6));
  border: 1px solid rgba(201,162,39,0.22);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}
.store-hero-mosaic .hero-tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.store-hero-mosaic .hero-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.store-hero-mosaic .hero-tile:hover img { transform: scale(1.06); }
.store-hero-mosaic .hero-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,16,28,.55) 0%, transparent 32%, transparent 58%, rgba(6,16,28,.88) 100%);
  z-index: 1;
  pointer-events: none;
}
.store-hero-mosaic .hero-tile-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px 12px;
  color: #e0bc4a;
  font-weight: 700;
  font-size: .86rem;
  z-index: 2;
  letter-spacing: .02em;
}
.store-hero-mosaic .hero-tile-label small {
  display: block; color: #cbd5e1; font-weight: 400; font-size: .74rem; margin-top: 2px;
}
.hero-tile--main { grid-column: 1 / 3; grid-row: 1 / 3; }
.hero-tile--top2 { grid-column: 3; grid-row: 1; cursor: pointer; }
.hero-tile--top3 { grid-column: 3; grid-row: 2; cursor: pointer; }
.store-hero-overlay-text {
  position: absolute;
  top: 26px; left: 28px;
  z-index: 3;
  color: #fff;
  max-width: 62%;
}
.store-hero-overlay-text h1 {
  font-size: 1.7rem; margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0,0,0,.75);
  line-height: 1.15;
}
.store-hero-overlay-text p {
  font-size: .9rem; color: #e8edf5; margin: 0;
  text-shadow: 0 1px 10px rgba(0,0,0,.7);
  line-height: 1.35;
}

/* ===== TRUST RAIL ===== */
.trust-rail {
  display: flex; gap: 18px; flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
  padding: 13px 20px;
  background: linear-gradient(180deg, rgba(20,36,60,0.7), rgba(10,22,40,0.55));
  border-radius: 12px;
  border: 1px solid rgba(201,162,39,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}
.trust-rail .trust-pill {
  display: flex; align-items: center; gap: 8px;
  color: #e8d9a3; font-size: .8rem; font-weight: 600;
  white-space: nowrap;
}
.trust-rail .trust-pill .pill-icon {
  font-size: 1.15rem;
}

/* ===== CATEGORY RAIL (visual, above grid) ===== */
.store-cat-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 2px 12px;
  margin-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,162,39,.25) transparent;
}
.store-cat-rail::-webkit-scrollbar { height: 4px; }
.store-cat-rail::-webkit-scrollbar-thumb { background: rgba(201,162,39,.25); border-radius: 2px; }
.store-cat-visual {
  display: flex; flex-direction: column; align-items: center;
  min-width: 82px; max-width: 100px; flex-shrink: 0;
  padding: 14px 10px 10px;
  border-radius: 12px;
  background: rgba(12,24,42,.7);
  border: 1.5px solid rgba(201,162,39,.1);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  text-align: center;
}
.store-cat-visual:hover {
  border-color: rgba(201,162,39,.45);
  background: rgba(20,36,60,.85);
  transform: translateY(-2px);
}
.store-cat-visual.active {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,162,39,.13) 0%, rgba(12,24,42,.85) 100%);
  box-shadow: 0 0 18px rgba(201,162,39,.12);
}
.store-cat-visual .cat-icon {
  font-size: 1.5rem; margin-bottom: 6px;
  filter: saturate(1.15);
}
.store-cat-visual .cat-label {
  font-size: .7rem; font-weight: 700; color: #e2e8f0;
  line-height: 1.2;
}
.store-cat-visual.active .cat-label { color: var(--gold-light); }

/* ===== FLASH SHELF (horizontal scroll) ===== */
.flash-shelf {
  margin-bottom: 22px;
  position: relative;
  padding: 18px 20px 12px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(201,162,39,0.14), rgba(201,162,39,0.02) 45%, rgba(10,22,40,0.65)),
    linear-gradient(180deg, #0e1d34, #0a1526);
  border: 1px solid rgba(201,162,39,0.28);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}
.flash-shelf-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.flash-shelf-header .shelf-title {
  font-size: 1.15rem; font-weight: 800;
  color: #f0d98a;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.flash-shelf-header .shelf-timer {
  background: linear-gradient(135deg, #e11d48, #9f1239);
  color: #fff;
  padding: 4px 12px; border-radius: 8px;
  font-size: .82rem; font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(225,29,72,0.4);
}
.flash-shelf-header .shelf-see-all {
  margin-left: auto;
  font-size: .78rem; color: var(--gold-light);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}
.flash-shelf-header .shelf-see-all:hover { text-decoration: underline; }
.flash-shelf-track {
  display: flex; gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,162,39,.25) transparent;
}
.flash-shelf-track::-webkit-scrollbar { height: 4px; }
.flash-shelf-track::-webkit-scrollbar-thumb { background: rgba(201,162,39,.25); border-radius: 2px; }
.flash-shelf-card {
  min-width: 155px; max-width: 170px; flex-shrink: 0;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(201,162,39,.08);
  transition: border-color .2s, transform .15s;
}
.flash-shelf-card:hover {
  border-color: rgba(201,162,39,.35);
  transform: translateY(-2px);
}
.flash-shelf-card img {
  width: 100%; height: 110px; object-fit: cover; display: block;
}
.flash-shelf-card .shelf-body {
  padding: 8px 10px 10px;
}
.flash-shelf-card .shelf-pct {
  display: inline-block; background: var(--red-accent); color: #fff;
  padding: 2px 7px; border-radius: 4px;
  font-size: .7rem; font-weight: 800; margin-bottom: 4px;
}
.flash-shelf-card .shelf-name {
  font-size: .7rem; color: #e2e8f0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  line-height: 1.25; margin-bottom: 4px;
}
.flash-shelf-card .shelf-prices {
  font-size: .78rem;
}
.flash-shelf-card .shelf-prices s {
  color: #64748b; font-size: .7rem; margin-right: 4px;
}
.flash-shelf-card .shelf-prices .shelf-sale {
  color: var(--gold-light); font-weight: 800;
}
.flash-shelf-card .shelf-add {
  display: block; width: 100%; margin-top: 6px;
  padding: 5px 0; border: none; border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), #a07820);
  color: #0a1628; font-size: .68rem; font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
}
.flash-shelf-card .shelf-add:hover { opacity: .88; }

/* ===== LUXURY PROMO BANNERS (fill left/right space) ===== */
.promo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}
.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 26px 28px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(201,162,39,0.30);
  box-shadow: 0 18px 44px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.promo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,162,39,0.6);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 26px rgba(201,162,39,0.14);
}
.promo-card::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(201,162,39,0.22) 0%, rgba(201,162,39,0) 70%);
  transform: rotate(18deg);
  pointer-events: none;
}
.promo-card--left {
  background:
    linear-gradient(120deg, rgba(201,162,39,0.16), rgba(10,22,40,0) 55%),
    linear-gradient(135deg, #10233f 0%, #0a1628 100%);
}
.promo-card--right {
  background:
    linear-gradient(120deg, rgba(155,28,74,0.28), rgba(10,22,40,0) 55%),
    linear-gradient(135deg, #241028 0%, #0a1628 100%);
}
.promo-card .promo-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e0bc4a;
  margin-bottom: 8px;
}
.promo-card--right .promo-eyebrow { color: #f9a8c4; }
.promo-card .promo-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.promo-card .promo-sub {
  font-size: .88rem;
  color: #c6d3e4;
  margin-bottom: 16px;
  max-width: 90%;
}
.promo-card .promo-cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .82rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #a07820);
  color: #0a1628;
  box-shadow: 0 6px 18px rgba(201,162,39,0.3);
  transition: opacity .15s, transform .15s;
}
.promo-card:hover .promo-cta { transform: translateX(3px); }
.promo-card--right .promo-cta {
  background: linear-gradient(135deg, #f43f75, #c01048);
  color: #fff;
  box-shadow: 0 6px 18px rgba(225,29,72,0.35);
}
@media (max-width: 680px) {
  .promo-duo { grid-template-columns: 1fr; }
  .promo-card { min-height: 128px; padding: 22px 22px; }
  .promo-card .promo-title { font-size: 1.25rem; }
}

/* ===== ENHANCED PRODUCT CARD ===== */
.store-card {
  border-radius: 14px;
  border: 1px solid rgba(201,162,39,.1);
  transition: transform .2s, border-color .2s, box-shadow .25s;
}
.store-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,162,39,.4);
  box-shadow: 0 8px 28px rgba(0,0,0,.25), 0 0 16px rgba(201,162,39,.06);
}
.store-card-media {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  position: relative;
}
.store-card-badge.flash {
  position: absolute; top: 8px; right: 8px;
  background: var(--red-accent);
  color: #fff;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: .72rem; font-weight: 800;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(196,30,58,.3);
}
.store-card-badge:not(.flash) {
  border-radius: 6px;
}
.card-delivery-badge {
  border-radius: 5px;
  font-size: .7rem;
}
.store-card-price s {
  color: #64748b;
  margin-right: 6px;
}
.store-card-save {
  color: #4ade80; font-size: .72rem; font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .store-hero-mosaic { grid-template-rows: 150px 130px; padding: 8px; }
  .store-hero-overlay-text { max-width: 70%; }
  .store-hero-overlay-text h1 { font-size: 1.25rem; }
  .trust-rail { gap: 12px; padding: 11px 14px; }
  .store-cat-visual { min-width: 68px; padding: 10px 8px 8px; }
  .store-cat-visual .cat-icon { font-size: 1.2rem; }
  .flash-shelf-card { min-width: 135px; }
}
@media (max-width: 480px) {
  .store-hero-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 110px; }
  .hero-tile--main { grid-column: 1 / 3; grid-row: 1 / 2; }
  .hero-tile--top2 { grid-column: 1; grid-row: 2; }
  .hero-tile--top3 { grid-column: 2; grid-row: 2; }
  .store-hero-overlay-text { top: 14px; left: 14px; max-width: 78%; }
  .store-hero-overlay-text h1 { font-size: 1.05rem; margin-bottom: 3px; }
  .store-hero-overlay-text p { font-size: .76rem; }
  .hero-tile--main .hero-tile-label { display: none; }
}

/* =====================================================================
   LIGHT "MARKETPLACE" THEME  —  store page only
   Amazon-inspired layout, but a bright, warm, unique LITAVHA palette
   (soft peach + sky + mint wash, navy top-bar, gold accents).
   Scoped to  body.store-page  so checkout / payment / main site keep
   their original styling.  Higher specificity than the base rules.
   ===================================================================== */
body.store-page{
  color:#1a2433;
  background:
    radial-gradient(1150px 520px at 8% -12%,  rgba(255,176,102,.32) 0%, rgba(255,176,102,0) 60%),
    radial-gradient(1050px 640px at 100% -6%, rgba(96,176,255,.24) 0%, rgba(96,176,255,0) 55%),
    radial-gradient(950px 760px at 52% 112%,  rgba(110,224,186,.20) 0%, rgba(110,224,186,0) 60%),
    linear-gradient(180deg,#fff7ef 0%, #f4f8ff 52%, #edf3fb 100%);
  background-attachment:fixed;
}

/* ---- category filter strip ---- */
body.store-page .store-cats{
  background:#ffffff;
  border-bottom:1px solid #e7eaf1;
  box-shadow:0 2px 12px rgba(20,30,50,.05);
  backdrop-filter:none;
}
body.store-page .store-cat{
  background:#f3f5f9;
  border:1.5px solid #e2e6ee;
  color:#2a3546;
}
body.store-page .store-cat:hover{
  background:#fff4d9;
  border-color:#e6c766;
  color:#8a6d12;
}
body.store-page .store-cat.active,
body.store-page .store-cat.active:hover{
  background:linear-gradient(135deg,#e8ba3c,#c9a227);
  border-color:#c9a227;
  color:#1a1204;
  box-shadow:0 4px 14px rgba(201,162,39,.30);
}

/* ---- toolbar / counts / sort ---- */
body.store-page .store-count{ color:#48566a; }
body.store-page .store-empty,
body.store-page .store-no-results{ color:#57687e; }
body.store-page .store-sort{ color:#48566a; }
body.store-page .store-sort select{
  background:#ffffff; color:#1a2433; border:1px solid #d6dbe4;
}

/* ---- mosaic hero frame (tiles keep their photo + dark overlay) ---- */
body.store-page .store-hero-mosaic{
  background:linear-gradient(135deg,#fff2d8 0%, #ffffff 46%, #e9f1ff 100%);
  border:1px solid #ece2c6;
  box-shadow:0 16px 42px rgba(30,45,70,.12), inset 0 1px 0 #fff;
}

/* ---- trust rail ---- */
body.store-page .trust-rail{
  background:#ffffff;
  border:1px solid #e8ebf1;
  box-shadow:0 8px 24px rgba(30,45,70,.07);
  backdrop-filter:none;
}
body.store-page .trust-rail .trust-pill{ color:#3a4658; }

/* ---- visual category rail (round photo thumbnails) ---- */
body.store-page .store-cat-visual{
  background:#ffffff;
  border:1.5px solid #e6e9ef;
}
body.store-page .store-cat-visual:hover{
  border-color:#e6c766;
  box-shadow:0 8px 20px rgba(30,45,70,.10);
}
body.store-page .store-cat-visual.active{
  border-color:#c9a227;
  background:linear-gradient(180deg,#fff6db 0%, #ffffff 100%);
  box-shadow:0 0 0 3px rgba(201,162,39,.16);
}
body.store-page .store-cat-visual .cat-icon{
  width:54px; height:54px; border-radius:50%;
  overflow:hidden; background:#f2f4f8;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:8px;
}
body.store-page .store-cat-visual .cat-icon img{
  width:100%; height:100%; object-fit:cover; display:block;
}
body.store-page .store-cat-visual .cat-label{ color:#2a3546; }
body.store-page .store-cat-visual.active .cat-label{ color:#8a6d12; }

/* ---- flash shelf ---- */
body.store-page .flash-shelf{
  background:linear-gradient(135deg,#fff3e0 0%, #ffffff 55%, #fff0f3 100%);
  border:1px solid #f0d9c0;
  box-shadow:0 14px 36px rgba(30,45,70,.10), inset 0 1px 0 #fff;
}
body.store-page .flash-shelf-header .shelf-title{ color:#1a2433; text-shadow:none; }
body.store-page .flash-shelf-header .shelf-see-all{ color:#b8860b; }
body.store-page .flash-shelf-card{
  background:#ffffff; border:1px solid #e9ecf2;
  box-shadow:0 4px 14px rgba(30,45,70,.06);
}
body.store-page .flash-shelf-card:hover{ border-color:#e6c766; }
body.store-page .flash-shelf-card .shelf-name{ color:#28323f; }
body.store-page .flash-shelf-card .shelf-prices s{ color:#94a0b0; }
body.store-page .flash-shelf-card .shelf-prices .shelf-sale{ color:#b12704; }

/* ---- promo banners (bright, eye-catching) ---- */
body.store-page .promo-card{
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 12px 30px rgba(30,45,70,.12);
}
body.store-page .promo-card--left{
  background:linear-gradient(135deg,#fff0cf 0%, #ffd489 100%);
}
body.store-page .promo-card--right{
  background:linear-gradient(135deg,#d9f6ec 0%, #a4e7cd 100%);
}
body.store-page .promo-card::after{
  background:radial-gradient(circle, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 70%);
}
body.store-page .promo-card .promo-eyebrow{ color:#9a6b00; }
body.store-page .promo-card--right .promo-eyebrow{ color:#0f7a55; }
body.store-page .promo-card .promo-title{ color:#1a2433; text-shadow:none; }
body.store-page .promo-card .promo-sub{ color:#42506a; }
body.store-page .promo-card .promo-cta{
  background:linear-gradient(135deg,#e8ba3c,#c9a227); color:#1a1204;
}
body.store-page .promo-card--right .promo-cta{
  background:linear-gradient(135deg,#12b184,#0e8f69); color:#ffffff;
}

/* ---- product cards ---- */
body.store-page .store-card{
  background:#ffffff;
  border:1px solid #e8ebf1;
  box-shadow:0 4px 16px rgba(30,45,70,.06);
}
body.store-page .store-card:hover{
  border-color:#e6c766;
  box-shadow:0 16px 34px rgba(30,45,70,.14);
}
body.store-page .store-card-title{ color:#16202e; }
body.store-page .store-card-desc{ color:#5a6a80; }
body.store-page .store-card-cat{ color:#b8860b; }
body.store-page .store-card-price{ color:#16202e; }
body.store-page .store-card-price s{ color:#98a3b2; }
body.store-page .store-card-save{ color:#127a3e; }
body.store-page .store-card-delivery{ color:#6b7a8d; }
body.store-page .store-card-specs{ border-top-color:#eef1f6; }
body.store-page .store-card-specs li{ color:#5a6a80; }
body.store-page .store-card-specs strong{ color:#16202e; }
