/* poten_site/styles.css - Clean Modern Pharma / Premium Editorial Design */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-muted: #f1f5f9;
  --bg-hover: #e2e8f0;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-light: #e0f2fe;
  --primary-deep: #0c4a6e;
  
  --accent: #10b981;
  --accent-hover: #059669;
  --accent-light: #d1fae5;
  
  --wa-color: #25d366;
  --wa-hover: #1ebd5a;
  --vb-color: #7360f2;
  
  --danger: #ef4444;
  --warning: #f59e0b;
  --border: #e2e8f0;
  --border-focus: #38bdf8;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 30px -10px rgba(2, 132, 199, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-drawer: -10px 0 30px rgba(15, 23, 42, 0.15);
  --shadow-float: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

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

/* Utilities */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

/* Promo Top Banner */
.top-banner {
  background: linear-gradient(90deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 8px 12px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.4;
}
@media (min-width: 640px) {
  .top-banner {
    font-size: 13px;
    padding: 9px 16px;
    gap: 8px;
  }
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}
@media (min-width: 768px) {
  .header-inner {
    height: 74px;
  }
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .brand-logo {
    gap: 12px;
  }
}

.logo-badge {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .logo-badge {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .brand-name {
    font-size: 20px;
  }
}

.brand-tagline {
  font-size: 9px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .brand-tagline {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
}

/* Nav Menu */
.main-nav {
  display: none;
  align-items: center;
  gap: 8px;
  list-style: none;
}
@media (min-width: 900px) {
  .main-nav { display: flex; }
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-link:hover {
  color: var(--primary);
  background: var(--bg-muted);
}
.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .header-actions {
    gap: 12px;
  }
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .btn-header-wa {
    padding: 8px 16px;
    font-size: 13px;
    gap: 6px;
  }
}
@media (max-width: 390px) {
  .btn-header-wa span:last-child {
    display: none;
  }
  .btn-header-wa {
    padding: 7px 9px;
  }
}
.btn-header-wa:hover {
  background: var(--wa-color);
  color: #ffffff;
  border-color: var(--wa-color);
}

.cart-toggle-btn {
  position: relative;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .cart-toggle-btn {
    width: 44px;
    height: 44px;
  }
}
.cart-toggle-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.cart-count-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4);
}

/* Mobile Menu Toggle Button */
.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.mobile-menu-btn:hover {
  background: var(--bg-hover);
  color: var(--primary);
}
@media (min-width: 900px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Navigation Dropdown */
.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  padding: 10px 16px 16px 16px;
  z-index: 99;
}
.mobile-nav-drawer.open {
  display: block;
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  transition: all 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--primary-light);
  color: var(--primary-deep);
}

/* ==========================================================
   NEW SPLIT HERO SECTION (EDITORIAL & PREMIUM)
   ========================================================== */
.hero-split-section {
  padding: 32px 0 32px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
  overflow-x: clip;
}
@media (min-width: 768px) {
  .hero-split-section {
    padding: 60px 0 50px 0;
  }
}

.hero-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-split-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
  }
}

.hero-left {
  text-align: left;
  min-width: 0;
  width: 100%;
}
.hero-right {
  min-width: 0;
  width: 100%;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-deep);
  border: 1px solid #bae6fd;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .hero-pill-badge {
    font-size: 13px;
    padding: 6px 14px;
    gap: 8px;
    margin-bottom: 20px;
  }
}

.hero-main-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 480px) {
  .hero-main-title {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .hero-main-title {
    font-size: 44px;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 18px;
  }
}
@media (min-width: 1024px) {
  .hero-main-title {
    font-size: 48px;
  }
}

.hero-main-title .gradient-text {
  background: linear-gradient(90deg, #0284c7 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 580px;
}
@media (min-width: 768px) {
  .hero-lead-text {
    font-size: 17px;
    margin-bottom: 30px;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}
@media (min-width: 520px) {
  .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
  }
}

.btn-hero-primary {
  background: var(--primary);
  color: #ffffff;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px -4px rgba(2, 132, 199, 0.4);
  transition: all 0.25s;
  width: 100%;
}
@media (min-width: 520px) {
  .btn-hero-primary {
    width: auto;
    padding: 14px 28px;
    font-size: 15px;
  }
}
.btn-hero-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(2, 132, 199, 0.5);
}

.btn-hero-secondary {
  background: #ffffff;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  width: 100%;
}
@media (min-width: 520px) {
  .btn-hero-secondary {
    width: auto;
    padding: 14px 24px;
    font-size: 15px;
  }
}
.btn-hero-secondary:hover {
  background: #f0fdf4;
  border-color: var(--wa-color);
}

/* Micro Trust List (Clean SVG checkmarks, no emojis) */
.hero-trust-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
@media (min-width: 600px) {
  .hero-trust-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
  }
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .hero-trust-item {
    font-size: 13px;
  }
}
.hero-trust-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .hero-trust-icon {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
}

/* Right Column: Visual Showcase Card */
.hero-showcase-box {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 18px 12px;
  box-shadow: var(--shadow-float);
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-showcase-box {
    padding: 36px 28px;
  }
}

.showcase-products-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 16px 0;
  max-width: 100%;
}
@media (min-width: 600px) {
  .showcase-products-stack {
    gap: 16px;
    margin: 16px 0 24px 0;
  }
}

.stack-img-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
  flex: 1 1 0;
  min-width: 0;
  max-width: 105px;
}
@media (min-width: 600px) {
  .stack-img-card {
    padding: 14px;
    max-width: 130px;
  }
}

.stack-img-card.main-card {
  transform: scale(1.04);
  z-index: 2;
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.1);
}
@media (min-width: 600px) {
  .stack-img-card.main-card {
    transform: scale(1.1);
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.12);
  }
}

.stack-img-card img {
  width: 100%;
  max-width: 70px;
  height: 60px;
  object-fit: contain;
}
@media (min-width: 600px) {
  .stack-img-card img {
    max-width: 120px;
    height: 120px;
  }
}

/* Floating Verification Badges */
.floating-seal-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  text-align: left;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .floating-seal-badge {
    gap: 10px;
    padding: 10px 16px;
    margin-top: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  }
}

.floating-seal-badge .seal-icon {
  width: 28px;
  height: 28px;
  background: #ecfdf5;
  color: #047857;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .floating-seal-badge .seal-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}

.floating-seal-badge .seal-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .floating-seal-badge .seal-title {
    font-size: 13px;
  }
}

.floating-seal-badge .seal-sub {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .floating-seal-badge .seal-sub {
    font-size: 11px;
  }
}

/* Subpage Hero / Header */
.subpage-hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-page) 100%);
  border-bottom: 1px solid var(--border);
  padding: 44px 0 32px 0;
  text-align: center;
}
.subpage-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.subpage-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Content Container for Informative / Policy Pages */
.policy-content-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  margin: 40px auto 60px auto;
  max-width: 900px;
}
.policy-content-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  margin: 28px 0 12px 0;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--bg-muted);
}
.policy-content-card h2:first-child { margin-top: 0; }
.policy-content-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin: 20px 0 8px 0;
}
.policy-content-card p {
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 14px;
}
.policy-content-card ul {
  padding-left: 20px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
}

/* Callout Box within Policy */
.info-callout-box {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-size: 13px;
  color: #166534;
  line-height: 1.6;
}

/* Comparison Section & Responsive Comparative Cards */
.comparison-card-box {
  margin: 0 auto;
  padding: 16px 12px;
}
@media (min-width: 768px) {
  .comparison-card-box {
    padding: 28px 32px;
  }
}

.desktop-only-table {
  display: none;
}
@media (min-width: 768px) {
  .desktop-only-table {
    display: block;
  }
}

.mobile-only-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .mobile-only-cards {
    display: none;
  }
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.comparison-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}
.comparison-table th {
  background: #f1f5f9;
  padding: 14px 18px;
  border-bottom: 2px solid var(--border);
  color: var(--text-main);
  font-weight: 700;
  white-space: nowrap;
}
.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: #334155;
  line-height: 1.5;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: #f8fafc;
}

/* Mobile Comparison Cards */
.comp-mobile-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.comp-mobile-card:hover {
  border-color: #93c5fd;
  box-shadow: var(--shadow-card);
}

.comp-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.comp-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}
.comp-badge.jelly { background: #fdf2f8; color: #db2777; border: 1px solid #fbcfe8; }
.comp-badge.power { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.comp-badge.combo { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.comp-badge.long { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }

.comp-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}
.comp-card-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-deep);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.comp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.comp-spec-pill {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.comp-spec-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}
.comp-spec-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.comp-card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  border-top: 1px dashed var(--border);
  padding-top: 10px;
}
.comp-detail-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.comp-detail-title {
  color: var(--text-main);
  font-weight: 700;
  font-size: 12px;
}

.btn-comp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: var(--primary-deep);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 4px;
}
.btn-comp-action:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 40px auto 60px auto;
  max-width: 1000px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

/* Products Grid & Filter (from v1, preserved) */
.filter-section { padding: 24px 0 12px 0; }
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.filter-tab:hover {
  background: var(--bg-muted);
  color: var(--text-main);
}
.filter-tab.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.card-image-box {
  background: #ffffff;
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
}
.card-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card:hover .card-image-box img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}
.card-badge.gold {
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}
.card-badge.blue {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  cursor: pointer;
  transition: color 0.2s;
}
.card-title:hover { color: var(--primary); }

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-muted);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  color: #475569;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer { margin-top: auto; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.price-main {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
}
.price-currency {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 2px;
}

.btn-details-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-details-link:hover { color: var(--primary-hover); }

.card-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-add-cart {
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-add-cart:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-card-wa {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-card-wa:hover {
  background: var(--wa-color);
  color: #ffffff;
  border-color: var(--wa-color);
  transform: translateY(-1px);
}

/* Trust Section / Grid */
.trust-section {
  background: #ffffff;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.trust-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s;
}
.trust-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.trust-icon-box.emerald {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}
.trust-icon-box.blue {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
}
.trust-icon-box.indigo {
  background: #ede9fe;
  color: #6d28d9;
  border: 1px solid #ddd6fe;
}

.trust-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.trust-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Modals, Drawer, Footer (Preserved) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: modalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-muted);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-muted);
  z-index: 10;
  transition: all 0.2s;
}
.modal-close-btn:hover { background: var(--bg-hover); color: var(--text-main); }
.modal-content-pad { padding: 32px; }

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(3px);
  z-index: 210;
  display: none;
}
.cart-drawer-overlay.active { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background: #ffffff;
  z-index: 220;
  box-shadow: var(--shadow-drawer);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-free-shipping-bar {
  background: var(--primary-light);
  border-bottom: 1px solid #bae6fd;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-items-scroll {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
  padding: 4px;
  object-fit: contain;
  flex-shrink: 0;
}
.cart-item-info { flex-grow: 1; }
.cart-item-name { font-size: 14px; font-weight: 700; color: var(--text-main); }
.cart-item-price { font-size: 13px; color: var(--primary); font-weight: 700; }
.cart-qty-ctrls { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.btn-qty {
  width: 24px;
  height: 24px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-num { font-size: 13px; font-weight: 700; min-width: 20px; text-align: center; }
.btn-remove-item { color: var(--danger); background: none; border: none; cursor: pointer; font-size: 16px; margin-left: 8px; }

.cart-drawer-footer {
  border-top: 1px solid var(--border);
  background: #f8fafc;
  padding: 20px 24px;
}
.cart-totals-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; font-size: 14px; }
.cart-total-row { display: flex; justify-content: space-between; color: var(--text-muted); }
.cart-total-row.grand-total {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 4px;
}

.checkout-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-label { font-size: 12px; font-weight: 700; color: var(--text-main); }
.form-input, .form-select, .form-textarea {
  font-family: var(--font-main);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.outside-bih-notice {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 16px;
  color: #92400e;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
  display: none;
}
.outside-bih-notice.active { display: block; }
.btn-outside-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa-color);
  color: #ffffff;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-submit-order {
  width: 100%;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-submit-order:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-submit-order:disabled { opacity: 0.6; cursor: not-allowed; }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 30px auto 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer { padding: 0 20px 18px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.6; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* Footer */
.main-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 50px 0 24px 0;
  font-size: 13px;
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #ffffff; }

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  font-size: 12px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  color: #64748b;
  font-size: 12px;
}

.floating-wa-btn {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--wa-color);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  z-index: 90;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-wa-btn svg {
  width: 26px;
  height: 26px;
}
@media (min-width: 768px) {
  .floating-wa-btn {
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  }
  .floating-wa-btn svg {
    width: 32px;
    height: 32px;
  }
}
.floating-wa-btn:hover { transform: scale(1.08); }
