/*
Theme Name: Authentic Barcodes Zimbabwe V4
Theme URI: https://authenticbarcodes.co.zw
Author: Authentic Barcodes Zimbabwe
Description: Custom dark theme for Authentic Barcodes Zimbabwe - official GS1 barcode supplier. (v4 - fresh install slot, FAQ/Help Center slug tolerance, script-loading fix, WooCommerce-override protection)
Version: 4.0
Requires at least: 5.8
Requires PHP: 7.4
Text Domain: authentic-barcodes-v4
*/
/* ============================================
   Authentic Barcodes Zimbabwe — shared styles
   ============================================ */

:root {
  --bg: #050505;
  --bg-raised: rgba(255,255,255,0.04);
  --bg-raised-strong: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.1);
  --border-strong: rgba(255,255,255,0.3);
  --text: #ffffff;
  --text-dim: rgba(255,255,255,0.6);
  --text-dimmer: rgba(255,255,255,0.45);
  --text-faint: rgba(255,255,255,0.3);
  --accent-green: #4ade80;
  --accent-gold: #facc15;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1120px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", "Roboto Mono", Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.logo svg { flex-shrink: 0; }

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a { margin-left: 28px; }
.main-nav a:first-child { margin-left: 0; }

.main-nav a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.15s;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

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

@media (max-width: 760px) {
  .main-nav { display: none; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  font-family: var(--font-sans);
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover { background: rgba(255,255,255,0.06); }

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-block { width: 100%; }

/* ---------- Live badge ---------- */

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--text-dim);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-block;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */

.hero {
  padding: 64px 0 48px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-copy { min-width: 0; }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-dimmer);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 16px 0 20px;
}

.hero p.lead {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 0 28px;
}

@media (max-width: 860px) {
  .hero p.lead { margin-left: auto; margin-right: auto; }
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-actions .btn {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hero-actions .btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

@media (max-width: 860px) {
  .hero-actions { justify-content: center; }
}

/* ---------- Hero visual: rings + barcode ---------- */

.hero-visual {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}

.ring.r1 { width: 320px; height: 320px; }
.ring.r2 { width: 260px; height: 260px; border-color: rgba(255,255,255,0.1); }
.ring.r3 { width: 200px; height: 200px; border-color: rgba(255,255,255,0.22); }
.ring.r4 { width: 140px; height: 140px; border-color: rgba(255,255,255,0.35); }

.mini-barcode {
  position: absolute;
  display: flex;
  gap: 3px;
  align-items: flex-end;
}

.mini-barcode span {
  display: block;
  width: 3px;
  background: #fff;
}

.mini-barcode span:nth-child(2n) { background: rgba(255,255,255,0.45); }

.float-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  backdrop-filter: blur(8px);
  min-width: 110px;
}

.float-card.top-left {
  top: 20px;
  left: 0;
  animation: arcClockwise 5.5s ease-in-out infinite alternate;
}

.float-card.bottom-right {
  bottom: 20px;
  right: 0;
  animation: arcClockwise 6.4s ease-in-out infinite alternate;
}

@keyframes arcClockwise {
  0%   { transform: translate(0px, 0px); }
  25%  { transform: translate(6px, 2px); }
  50%  { transform: translate(9px, 8px); }
  75%  { transform: translate(8px, 14px); }
  100% { transform: translate(3px, 18px); }
}

.float-card .fc-label {
  font-size: 11px;
  color: var(--text-dimmer);
}

.float-card .fc-value {
  font-size: 16px;
  font-weight: 600;
  margin-top: 2px;
  transition: opacity 0.3s;
}

/* ---------- Section shells ---------- */

section { padding: 56px 0; }

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
}

.section-eyebrow {
  font-size: 12.5px;
  letter-spacing: 2px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header h1,
.section-header h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

.section-header p {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ---------- Trust strip ---------- */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  padding: 24px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.trust-item i { font-size: 22px; color: var(--text-dim); }

.trust-item .t-label {
  font-size: 12px;
  color: var(--text-dimmer);
  margin-top: 8px;
}

@media (max-width: 600px) {
  .trust-item .t-label { font-size: 10px; }
  .trust-item i { font-size: 18px; }
}

/* ---------- Package grid ---------- */

.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-tab {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: var(--text-dim);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
}

.filter-tab.active {
  background: #fff;
  color: #000;
  border-color: #fff;
  font-weight: 600;
}

.cat-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dimmer);
  margin: -16px 0 28px;
  min-height: 18px;
}

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

@media (max-width: 860px) {
  .package-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
}

.pkg-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  position: relative;
  transition: border-color 0.15s;
}

.pkg-card:hover { border-color: var(--border-strong); }

.pkg-card.best {
  background: var(--bg-raised-strong);
  border-color: var(--border-strong);
}

.pkg-card .best-badge {
  position: absolute;
  top: -10px;
  left: 14px;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

.pkg-card i { font-size: 22px; color: var(--text-dim); }

.pkg-card .pkg-qty { font-size: 13px; margin: 10px 0 2px; color: var(--text-dim); }
.pkg-card .pkg-price { font-size: 20px; font-weight: 600; }

.pkg-card .btn { margin-top: 14px; font-size: 12px; padding: 8px; }

/* ---------- Home page package teaser (3 fixed cards) ---------- */

.home-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 620px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .home-teaser-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 14px;
  }
}

@media (min-width: 861px) {
  .home-teaser-grid {
    max-width: 960px;
    gap: 28px;
  }

  .home-teaser-grid .pkg-card {
    padding: 34px 28px;
  }

  .home-teaser-grid .pkg-card i { font-size: 34px; }
  .home-teaser-grid .pkg-card .pkg-qty { font-size: 16px; margin: 16px 0 4px; }
  .home-teaser-grid .pkg-card .pkg-price { font-size: 32px; }
  .home-teaser-grid .pkg-card .best-badge { font-size: 12px; padding: 5px 14px; top: -12px; }
  .home-teaser-grid .pkg-card .btn {
    margin-top: 22px;
    font-size: 15px;
    padding: 13px;
  }
}

/* ---------- Calculator ---------- */

.calc-card {
  max-width: 480px;
  margin: 40px auto 0;
  background: var(--bg-raised-strong);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 28px;
}

.calc-card h3 { margin: 0 0 16px; font-size: 16px; font-weight: 600; }

.field-label {
  font-size: 12px;
  color: var(--text-dim);
  display: block;
  margin-bottom: 6px;
}

.calc-card input[type="number"],
.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 11px 12px;
  font-size: 15px;
  font-family: var(--font-sans);
}

.calc-card input[type="number"] { margin-bottom: 20px; }

.calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.calc-total-row .label { font-size: 13px; color: var(--text-dim); }
.calc-total-row .value { font-size: 26px; font-weight: 700; }

.calc-rate-note { font-size: 12px; color: var(--text-dimmer); margin-top: 6px; min-height: 16px; }
.calc-error { font-size: 12px; color: #f87171; margin-top: 6px; display: none; }
.calc-fineprint { font-size: 11px; color: var(--text-faint); margin-top: 12px; }

.calc-card .btn { margin-top: 16px; }

/* ---------- Reviews ---------- */

.review-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
}

.review-stars { color: var(--accent-gold); font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 15px; color: var(--text-dim); line-height: 1.6; transition: opacity 0.4s; }
.review-author { font-size: 13px; color: var(--text-dimmer); margin-top: 10px; transition: opacity 0.4s; }

/* ---------- Retailer strip ---------- */

.retailer-strip {
  text-align: center;
}

.retailer-strip .rs-label {
  font-size: 12.5px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-weight: 600;
  margin-bottom: 16px;
}

.retailer-names {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 15px;
}

/* ---------- Retailer marquee (desktop-only continuous scroll) ---------- */

.retailer-marquee {
  overflow: hidden;
  width: 100%;
}

.retailer-track-wrap {
  display: flex;
  width: max-content;
}

.retailer-track {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  white-space: nowrap;
}

@keyframes retailer-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Feature list (About) ---------- */

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .feature-list { grid-template-columns: 1fr; }
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-item i { font-size: 24px; color: #fff; flex-shrink: 0; margin-top: 2px; }
.feature-item h4 { margin: 0 0 6px; font-size: 15px; font-weight: 600; }
.feature-item p { margin: 0; font-size: 13px; color: var(--text-dim); line-height: 1.6; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item { padding: 28px 12px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-item .stat-value { font-size: 26px; font-weight: 700; }
.stat-item .stat-label { font-size: 12px; color: var(--text-dimmer); margin-top: 6px; }

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 48px;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
}

.contact-card i { font-size: 22px; }
.contact-card .cc-title { font-size: 13px; font-weight: 600; margin: 10px 0 2px; }
.contact-card .cc-sub { font-size: 12px; color: var(--text-dim); word-break: break-word; }

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-form h3 { margin: 0 0 20px; font-size: 18px; font-weight: 600; }
.form-field { margin-bottom: 16px; }

.status-strip {
  max-width: 520px;
  margin: 24px auto 0;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- Nationwide delivery banner (Contact page) ---------- */

.delivery-banner {
  max-width: 800px;
  margin: 0 auto 40px;
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.delivery-banner .db-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.delivery-banner .db-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.delivery-banner .db-text { font-size: 13px; color: var(--text-dim); line-height: 1.5; }

/* ---------- Office locations + maps (Contact page) ---------- */

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .locations-grid { grid-template-columns: 1fr; }
}

.location-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
}

.location-card .lc-label {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-dimmer);
  font-family: var(--font-mono);
  margin-bottom: 6px;
}

.location-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
}

.location-card .lc-address {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 14px;
}

.map-embed-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
  filter: invert(92%) hue-rotate(180deg) saturate(1.3) brightness(0.95) contrast(0.9);
}

@media (min-width: 861px) {
  .map-embed-wrap iframe { height: 240px; }
}

.location-card .btn { width: 100%; }


/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 100px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-nav a { margin: 0 20px; }

.footer-nav a:hover, .footer-nav a.active { color: #fff; }

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
}

.footer-bottom a { color: var(--text-dim); }

/* ---------- FAQ accordion ---------- */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease;
}

.faq-item summary .faq-icon::before,
.faq-item summary .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text-dim);
  transition: opacity 0.15s ease, transform 0.2s ease;
}

.faq-item summary .faq-icon::before { width: 10px; height: 1px; }
.faq-item summary .faq-icon::after { width: 1px; height: 10px; }

.faq-item[open] summary .faq-icon::after { opacity: 0; }
.faq-item[open] summary .faq-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 4px 22px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
  max-width: 640px;
}

.faq-search {
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
}

.faq-search input {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text);
  padding: 12px 18px 12px 42px;
  font-size: 14px;
  font-family: var(--font-sans);
}

.faq-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dimmer);
  font-size: 16px;
}

.faq-empty {
  text-align: center;
  color: var(--text-dimmer);
  font-size: 14px;
  padding: 24px 0;
  display: none;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.cta-banner p { font-size: 15px; color: var(--text-dim); margin: 0 0 16px; }

/* ---------- Desktop-only additions (hidden on mobile by default;
   shown via the min-width:861px block at the end of this file) ---------- */

.hero-stats-row { display: none; }
.retailer-strip-desktop { display: none; }
.footer-columns { display: none; }

/* ---------- Inline SVG icons (replaces icon font) ---------- */

i[class*="ti-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

i[class*="ti-"] svg {
  width: 1em;
  height: 1em;
  display: block;
}

/* ============================================
   DESKTOP / LAPTOP ENHANCEMENTS (>= 861px only)
   Everything below this point is scoped to a
   min-width media query and never touches the
   mobile layout or styling.
   ============================================ */

@media (min-width: 861px) {

  /* ---- Global rhythm: more generous breathing room on larger screens ---- */
  section { padding: 88px 0; }
  .section-header { margin-bottom: 48px; }
  .cta-banner { padding: 64px 0; }

  /* ---- Header: subtle top accent line + refined nav ---- */
  .site-header {
    position: sticky;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  }

  .site-header::before {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  }

  .logo {
    font-size: 17px;
    letter-spacing: -0.3px;
  }

  .logo i { font-size: 22px !important; }

  .main-nav a {
    position: relative;
    padding-bottom: 4px;
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.2s ease;
  }

  .main-nav a:hover::after,
  .main-nav a.active::after {
    width: 100%;
  }

  /* ---- Buttons: more presence on larger pointers ---- */
  .btn-primary {
    box-shadow: 0 0 0 rgba(255,255,255,0);
    transition: opacity 0.15s, transform 0.15s, box-shadow 0.25s;
  }

  .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(255,255,255,0.12);
    transform: translateY(-1px);
  }

  .btn-outline:hover {
    transform: translateY(-1px);
  }

  /* ---- Hero: decorative depth + tighter, larger type ---- */
  .hero { padding: 56px 0 72px; position: relative; overflow: hidden; }

  .hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-visual {
    height: 400px;
  }

  .ring.r1 { width: 380px; height: 380px; }
  .ring.r2 { width: 310px; height: 310px; }
  .ring.r3 { width: 240px; height: 240px; }
  .ring.r4 { width: 168px; height: 168px; }

  /* ---- Inline credibility row under the hero lead paragraph ---- */
  .hero-stats-row {
    display: flex;
    gap: 28px;
    margin-top: 8px;
    margin-bottom: 32px;
  }

  .hero-stats-row .hs-item {
    display: flex;
    flex-direction: column;
  }

  .hero-stats-row .hs-value {
    font-size: 20px;
    font-weight: 700;
  }

  .hero-stats-row .hs-label {
    font-size: 12px;
    color: var(--text-dimmer);
    margin-top: 2px;
  }

  /* ---- Icon roundels: turns bare icon-font glyphs into a badge ---- */
  .trust-item i,
  .contact-card i,
  .feature-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    font-size: 19px !important;
  }

  .feature-item {
    align-items: flex-start;
  }

  .feature-item i { flex-shrink: 0; margin-top: 0; }

  /* ---- Trust-strip items brighten individually on hover ---- */
  .trust-item {
    transition: background 0.2s ease;
  }

  .trust-item:hover {
    background: rgba(255,255,255,0.03);
  }

  .trust-item:hover i {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.45);
    color: #fff;
  }

  .trust-item:hover .t-label {
    color: var(--text);
  }

  /* ---- Card lift + shadow on hover for a more tactile, premium feel ---- */
  .pkg-card,
  .contact-card,
  .trust-item,
  .review-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }

  .pkg-card:hover,
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.45);
    border-color: var(--border-strong);
    background: rgba(255,255,255,0.07);
  }

  .pkg-card.best:hover {
    box-shadow: 0 16px 40px rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.11);
  }

  .review-card {
    padding: 36px 40px;
  }

  .review-card::before {
    content: "\201C";
    display: block;
    font-size: 56px;
    line-height: 1;
    color: rgba(255,255,255,0.15);
    font-family: Georgia, serif;
    margin-bottom: -8px;
  }

  .review-text { font-size: 17px; }

  /* ---- Package grid: allow up to 4 across with more generous gaps ---- */
  .package-grid { gap: 20px; }

  /* ---- Trusted-by strip (desktop-only section, see HTML) ---- */
  .retailer-strip-desktop {
    display: block;
    padding-top: 40px;
  }

  .retailer-marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
  }

  .retailer-track-wrap {
    animation: retailer-scroll 32s linear infinite;
  }

  .retailer-track span {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dimmer);
    letter-spacing: 0.5px;
  }

  /* ---- Corporate multi-column footer (desktop-only content, see HTML) ---- */
  .footer-columns {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }

  .footer-columns .fc-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-columns .fc-desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 280px;
  }

  .footer-columns h5 {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--text-faint);
    font-family: var(--font-mono);
    margin: 0 0 16px;
    text-transform: uppercase;
  }

  .footer-columns ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-columns li {
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-dim);
  }

  .footer-columns a {
    font-size: 13px;
    color: var(--text-dim);
    transition: color 0.15s;
  }

  .footer-columns a:hover { color: #fff; }

  .footer-nav { display: none; }

  .site-footer .footer-bottom {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .fb-social a {
    margin-left: 16px;
    color: var(--text-dim);
  }

  .footer-bottom .fb-social a:hover { color: #fff; }
}

/* ============================================
   Floating WhatsApp button (all pages)
   Black glass style, fixed bottom-right, safe
   spacing so it never covers page content.
   Small on mobile (default), big on desktop/laptop.
   ============================================ */

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(15,15,15,0.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
  z-index: 999;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.wa-float svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.wa-float:hover {
  transform: translateY(-3px);
  background: rgba(30,30,30,0.8);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 14px 34px rgba(0,0,0,0.6);
}


@media (min-width: 861px) {
  .wa-float {
    right: 20px;
    bottom: 20px;
    width: 112px;
    height: 112px;
  }

  .wa-float svg {
    width: 52px;
    height: 52px;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

/* ============================================
   Nav account / cart icons
   ============================================ */

.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 4px;
}

.nav-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 13px;
  transition: color 0.15s;
}

.nav-icon-link:hover { color: #fff; }

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

.account-nav-label { display: none; }

@media (min-width: 861px) {
  .account-nav-label { display: inline; }
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ============================================
   Product page
   ============================================ */

.product-breadcrumb {
  font-size: 12px;
  color: var(--text-dimmer);
  text-align: center;
  margin-bottom: 24px;
}

.product-breadcrumb a { color: var(--text-dim); }
.product-breadcrumb a:hover { color: #fff; }

.product-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 861px) {
  .product-hero {
    grid-template-columns: 260px 1fr;
    text-align: left;
    max-width: 900px;
  }
}

.product-visual {
  width: 100%;
  aspect-ratio: 1;
  max-width: 260px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-visual svg { width: 40%; height: 40%; color: rgba(255,255,255,0.7); }

.product-info .section-eyebrow { margin-bottom: 8px; }

#product-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  margin: 0 0 8px;
}

#product-price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

#product-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-buy-box {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.product-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.product-qty-row label {
  font-size: 12px;
  color: var(--text-dim);
}

.product-qty-row input {
  width: 80px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 8px 10px;
  font-size: 14px;
}

.product-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-bottom: 16px;
}

.product-subtotal-row .label { font-size: 13px; color: var(--text-dim); }
.product-subtotal-row .value { font-size: 22px; font-weight: 700; }

.product-actions { display: flex; flex-direction: column; gap: 10px; }

.product-trust-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 861px) {
  .product-trust-row { justify-content: flex-start; }
}

.product-trust-row .pt-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dimmer);
}

.product-trust-row .pt-item svg { width: 15px; height: 15px; }

#related-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 861px) {
  #related-products { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
}

/* ============================================
   Cart page
   ============================================ */

.cart-container {
  max-width: 640px;
  margin: 0 auto;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr 70px 90px 32px;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-row-name { font-size: 14px; font-weight: 600; }
.cart-row-unit { font-size: 12px; color: var(--text-dimmer); margin-top: 2px; }

.cart-qty-input {
  width: 60px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 6px 8px;
  font-size: 13px;
  text-align: center;
}

.cart-row-total { font-size: 14px; font-weight: 600; text-align: right; }

.cart-remove-btn {
  background: none;
  border: none;
  color: var(--text-dimmer);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.cart-remove-btn:hover { color: #f87171; }

.cart-summary {
  margin-top: 24px;
  padding-top: 20px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.cart-total-row .label { font-size: 14px; color: var(--text-dim); }
.cart-total-row .value { font-size: 26px; font-weight: 700; }

.cart-save-note {
  font-size: 12px;
  color: var(--text-dimmer);
  margin-top: 12px;
  text-align: center;
}

.cart-order-confirm {
  display: none;
  margin-top: 16px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 13px;
  color: #86efac;
  text-align: center;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-dim);
}

.cart-empty svg { width: 48px; height: 48px; color: var(--text-faint); margin-bottom: 16px; }

/* ============================================
   Auth forms (Login / Register)
   ============================================ */

.auth-shell {
  max-width: 420px;
  margin: 0 auto;
}

.auth-error {
  display: none;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.35);
  color: #fca5a5;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.auth-switch {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 20px;
}

.auth-switch a { color: #fff; text-decoration: underline; }

.auth-demo-note {
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
}

/* ============================================
   Account dashboard
   ============================================ */

.account-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 32px;
}

.account-header-row .ah-name { font-size: 18px; font-weight: 600; }
.account-header-row .ah-email { font-size: 13px; color: var(--text-dim); }

.order-row {
  max-width: 640px;
  margin: 0 auto 16px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.order-row-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.order-id { font-size: 14px; font-weight: 600; }
.order-date { font-size: 12px; color: var(--text-dimmer); margin-top: 2px; }
.order-total { font-size: 16px; font-weight: 700; }
.order-items { font-size: 13px; color: var(--text-dim); margin-bottom: 14px; }

.account-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   Payment gateway notice modal (checkout actions)
   ============================================ */

.pg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pg-modal-overlay.open { display: flex; }

.pg-modal-box {
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.pg-modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.pg-modal-icon svg { width: 24px; height: 24px; color: #fff; }

.pg-modal-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pg-modal-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}

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

/* ============================================
   Help Center — topic category cards + sections
   ============================================ */

.hc-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 8px;
}

@media (min-width: 761px) {
  .hc-topics-grid { grid-template-columns: repeat(3, 1fr); }
}

.hc-topic-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
  display: block;
}

.hc-topic-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.hc-topic-card i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.hc-topic-card .hc-topic-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hc-topic-card .hc-topic-desc {
  font-size: 12.5px;
  color: var(--text-dimmer);
  line-height: 1.5;
}

.hc-category {
  max-width: 720px;
  margin: 0 auto 48px;
  scroll-margin-top: 90px;
}

.hc-category-title {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 1.5px;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ============================================
   Home hero — mobile-only retailer marquee
   (Replaces the hero lead paragraph on mobile
   only. Fully self-contained: does not share any
   selectors with the existing desktop-only
   .retailer-strip-desktop section further down
   the page, so neither can affect the other.)
   ============================================ */

#home-hero-rs {
  display: block;
  margin: 18px 0 28px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

#home-hero-lead {
  display: none;
}

#home-hero-rs .hero-rs-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

#home-hero-rs .hero-rs-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 30px, black calc(100% - 30px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 30px, black calc(100% - 30px), transparent 100%);
}

#home-hero-rs .hero-rs-track-wrap {
  display: flex;
  width: max-content;
  animation: retailer-scroll 26s linear infinite;
}

#home-hero-rs .hero-rs-track {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
}

#home-hero-rs .hero-rs-track span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dimmer);
  letter-spacing: 0.3px;
}

@media (min-width: 861px) {
  #home-hero-lead {
    display: block;
  }
  #home-hero-rs {
    display: none;
  }
}
