/* =========================================================
   Zolt Energy Strips - Stylesheet (Daps Clean Aesthetic)
   ========================================================= */

:root {
  /* Daps Signature Palette */
  --zolt-blue: #002cdb;       /* Deep Vibrant Cobalt Royal Blue */
  --zolt-blue-dark: #001ca8;
  --zolt-cyan: #7cfbf2;       /* Crisp Electric Ice Blue */
  --zolt-green: #23ff53;      /* Vibrant Lime Neon Spearmint */
  --zolt-bg-light: #f4f6fc;
  --zolt-text-dark: #001142;
  --zolt-text-muted: #53648e;
  --zolt-border: #e2e8f6;
  --zolt-white: #ffffff;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-subtle: 0 4px 20px rgba(0, 44, 219, 0.08);
  --shadow-hover: 0 12px 32px rgba(0, 44, 219, 0.16);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: #ffffff;
  color: var(--zolt-text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button, select, input {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--zolt-blue);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dot {
  opacity: 0.5;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--zolt-border);
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.header-logo-img:hover {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 12px;
}

.brand-logo .logo-text {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--zolt-blue);
  letter-spacing: -1.5px;
  display: inline-block;
}

.brand-logo .logo-dot {
  color: var(--zolt-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--zolt-text-dark);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--zolt-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-whatsapp-header:hover {
  transform: translateY(-2px);
  background: #1eb855;
}

.cart-btn {
  background: var(--zolt-bg-light);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  color: var(--zolt-blue);
  transition: background 0.2s ease, transform 0.2s ease;
}

.cart-btn:hover {
  background: #e7ecfa;
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--zolt-blue);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--zolt-blue);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 44, 219, 0.28);
}

.btn-primary:hover {
  background-color: var(--zolt-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 44, 219, 0.4);
}

.btn-outline {
  background-color: #ffffff;
  border: 2px solid var(--zolt-blue);
  color: var(--zolt-blue);
}

.btn-outline:hover {
  background-color: var(--zolt-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp-hero {
  background-color: #25d366;
  color: #ffffff;
}

.btn-whatsapp-hero:hover {
  background-color: #1eb855;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
  padding: 70px 24px 80px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--zolt-border);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--zolt-blue);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-subtle);
}

.hero-heading {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.hero-highlight {
  color: var(--zolt-blue);
}

.hero-subheading {
  font-size: 1.15rem;
  color: var(--zolt-text-muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.hero-spec {
  background: #ffffff;
  border: 1px solid var(--zolt-border);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.spec-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--zolt-blue);
  display: block;
}

.spec-desc {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--zolt-text-muted);
  text-transform: uppercase;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--zolt-text-muted);
  flex-wrap: wrap;
}

/* Hero Pack Card */
.hero-pack-card {
  background: #ffffff;
  border: 2px solid var(--zolt-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-hover);
  text-align: center;
  position: relative;
}

.pack-badge-floating {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--zolt-blue);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.hero-pack-img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}

.flavor-selector-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.flavor-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 2px solid var(--zolt-border);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s ease;
}

.flavor-pill:hover {
  border-color: var(--zolt-blue);
}

.flavor-pill.active {
  background: var(--zolt-blue);
  color: #ffffff;
  border-color: var(--zolt-blue);
}

.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.green-dot { background: var(--zolt-green); }
.blue-dot { background: var(--zolt-cyan); }

/* Marquee Ticker */
.marquee-ticker {
  background: var(--zolt-text-dark);
  color: #ffffff;
  padding: 14px 0;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
  animation: scrollMarquee 25s linear infinite;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Common Section Layout */
.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.sub-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--zolt-blue);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-subtext {
  color: var(--zolt-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Shop Section & Pricing Cards */
.shop-section {
  padding: 90px 0;
  background: #ffffff;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 860px;
  margin: 0 auto 60px;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid var(--zolt-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--zolt-blue);
}

.pricing-card.featured-card {
  border-color: var(--zolt-blue);
  background: #fafbff;
  box-shadow: var(--shadow-hover);
}

.card-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--zolt-text-dark);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.card-badge.popular-badge {
  background: var(--zolt-blue);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--zolt-text-muted);
  margin-bottom: 20px;
}

.card-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.price-val {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--zolt-blue);
  line-height: 1;
}

.old-price {
  font-size: 1.3rem;
  color: var(--zolt-text-muted);
  text-decoration: line-through;
}

.save-tag {
  background: #e8fbf1;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.price-unit {
  font-size: 0.9rem;
  color: var(--zolt-text-muted);
}

.price-per-strip {
  font-size: 0.85rem;
  color: #059669;
  font-weight: 700;
  margin-bottom: 24px;
}

.flavor-select-row, .bundle-flavors-row {
  margin-bottom: 24px;
}

.flavor-select-row label, .bundle-select label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--zolt-text-muted);
  display: block;
  margin-bottom: 6px;
}

.bundle-flavors-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.flavor-dropdown {
  width: 100%;
  padding: 10px 14px;
  background: #ffffff;
  border: 1.5px solid var(--zolt-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--zolt-text-dark);
  cursor: pointer;
}

.flavor-dropdown:focus {
  border-color: var(--zolt-blue);
}

/* Individual Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 860px;
  margin: 0 auto;
}

.product-item-card {
  background: #ffffff;
  border: 1.5px solid var(--zolt-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.prod-img-box {
  position: relative;
  background: #f8faff;
  padding: 24px;
  text-align: center;
}

.prod-img-box img {
  max-height: 240px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.flavor-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.green-tag { background: #e3fde8; color: #026b26; }
.blue-tag { background: #e0f8ff; color: #004b6b; }

.prod-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prod-details h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.prod-tagline {
  font-size: 0.88rem;
  color: var(--zolt-text-muted);
  margin-bottom: 14px;
}

.prod-facts {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--zolt-blue);
  margin-bottom: 18px;
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.prod-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--zolt-text-dark);
}

/* How to Use Section */
.how-to-section {
  padding: 90px 0;
  background: var(--zolt-bg-light);
}

.how-to-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.how-step {
  background: #ffffff;
  border: 1.5px solid var(--zolt-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.step-num-circle {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  background: var(--zolt-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--zolt-blue);
}

.step-icon-big {
  font-size: 3rem;
  margin-bottom: 16px;
}

.how-step h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.92rem;
  color: var(--zolt-text-muted);
}

/* Ingredients Section */
.ingredients-section {
  padding: 90px 0;
  background: #ffffff;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.ingredient-card {
  background: #ffffff;
  border: 1.5px solid var(--zolt-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  box-shadow: var(--shadow-subtle);
}

.ing-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.ingredient-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 0.88rem;
  color: var(--zolt-text-muted);
  line-height: 1.5;
}

.dosage-box {
  background: #f0f4ff;
  border-left: 4px solid var(--zolt-blue);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.dosage-content h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--zolt-blue);
  margin-bottom: 6px;
}

.dosage-content p {
  font-size: 0.92rem;
  color: var(--zolt-text-dark);
}

/* Comparison Section */
.comparison-section {
  padding: 90px 0;
  background: var(--zolt-bg-light);
}

.table-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--zolt-border);
  overflow-x: auto;
  box-shadow: var(--shadow-subtle);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--zolt-border);
  font-size: 0.95rem;
}

.comparison-table th {
  background: #f8faff;
  font-weight: 800;
}

.comparison-table .highlight-col {
  background: #f0f4ff;
  color: var(--zolt-blue);
  font-weight: 700;
}

/* Reviews Section */
.reviews-section {
  padding: 90px 0;
  background: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-box {
  background: #ffffff;
  border: 1.5px solid var(--zolt-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
}

.review-box.highlight-review {
  border-color: var(--zolt-blue);
  background: #fafbff;
}

.stars {
  color: #ffb703;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-box h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.review-box p {
  font-size: 0.9rem;
  color: var(--zolt-text-muted);
  margin-bottom: 18px;
}

.review-box .author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--zolt-text-dark);
}

/* FAQ Section */
.faq-section {
  padding: 90px 0;
  background: var(--zolt-bg-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: #ffffff;
  border: 1.5px solid var(--zolt-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 20px 24px;
}

.faq-title {
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-body {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--zolt-text-muted);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: var(--zolt-text-dark);
  color: #ffffff;
  padding: 70px 24px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
}

.footer-brand .logo-dot {
  color: var(--zolt-green);
}

.footer-brand p {
  color: #93a5cc;
  font-size: 0.9rem;
  margin: 12px 0 20px;
  max-width: 340px;
}

.social-links a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-right: 8px;
  transition: background 0.2s ease;
}

.social-links a:hover {
  background: var(--zolt-blue);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: #93a5cc;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 0.8rem;
  color: #93a5cc;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.cart-drawer.open {
  visibility: visible;
}

.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 17, 66, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-drawer.open .cart-drawer-overlay {
  opacity: 1;
}

.cart-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open .cart-drawer-content {
  transform: translateX(0);
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--zolt-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.close-cart-btn {
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--zolt-text-muted);
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  border: 1px solid var(--zolt-border);
  border-radius: var(--radius-md);
  padding: 12px;
  align-items: center;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #f8faff;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 800;
  font-size: 0.95rem;
}

.cart-item-variant {
  font-size: 0.78rem;
  color: var(--zolt-text-muted);
}

.cart-item-price-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--zolt-border);
  border-radius: var(--radius-full);
}

.cart-qty-ctrl button {
  width: 26px;
  height: 26px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-val {
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0 6px;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--zolt-border);
  background: #fafbff;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--zolt-text-dark);
  margin-bottom: 12px;
}

.shipping-note {
  font-size: 0.78rem;
  color: var(--zolt-text-muted);
  margin-bottom: 16px;
}

.btn-whatsapp-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: var(--radius-full);
  margin-top: 10px;
}

/* Checkout Modal */
.checkout-modal {
  border: none;
  background: transparent;
  margin: auto;
  max-width: 500px;
  width: 92%;
}

.checkout-modal::backdrop {
  background: rgba(0, 17, 66, 0.7);
  backdrop-filter: blur(6px);
}

.checkout-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--zolt-text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f4f6fc;
}

.modal-close-btn:hover {
  background: #e2e8f6;
  color: var(--zolt-text-dark);
}

/* Shopify-Inspired Clean Checkout Form */
.shopify-checkout-wrap {
  text-align: left;
}

.checkout-section-head {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.checkout-section-head h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
}

.shopify-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-input-group {
  position: relative;
  width: 100%;
}

.checkout-input-group input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.92rem;
  color: #1f2937;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-input-group input:focus {
  border-color: var(--zolt-blue);
  box-shadow: 0 0 0 1.5px var(--zolt-blue);
}

.checkout-select-group {
  position: relative;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 6px 14px 4px;
  background: #f9fafb;
}

.floating-label {
  font-size: 0.72rem;
  color: #6b7280;
  font-weight: 600;
  display: block;
}

.styled-checkout-select {
  width: 100%;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  background: transparent;
  cursor: default;
}

.checkout-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #374151;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
}

.checkout-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--zolt-blue);
  cursor: pointer;
}

.checkout-summary-mini {
  background: #f8faff;
  border: 1px solid var(--zolt-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 6px;
}

.checkout-submit-btn {
  margin-top: 8px;
  padding: 15px;
  font-size: 1rem;
  border-radius: 6px;
}

/* Floating WhatsApp Button (Bottom Right) */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 150;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
  background: #1eb855;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--zolt-text-dark);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subheading {
    margin: 0 auto 30px;
  }
  .hero-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-cta-wrap, .hero-trust {
    justify-content: center;
  }
  .pricing-cards-grid, .products-grid {
    grid-template-columns: 1fr;
  }
  .how-to-grid, .ingredients-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

/* Trust Guarantees Strip */
.trust-guarantees-strip {
  background: #ffffff;
  border-top: 1px solid var(--zolt-border);
  border-bottom: 1px solid var(--zolt-border);
  padding: 42px 24px;
}

.trust-strip-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon-circle {
  width: 54px;
  height: 54px;
  background: #f0f7ff;
  color: var(--zolt-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--zolt-text-dark);
  margin-bottom: 4px;
}

.trust-text p {
  font-size: 0.84rem;
  color: var(--zolt-text-muted);
}

/* Social Strip */
.social-strip {
  background: #f8faff;
  border-bottom: 1px solid var(--zolt-border);
  padding: 20px 24px;
}

.social-strip-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-strip-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--zolt-text-dark);
}

.social-strip-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--zolt-border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zolt-text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: var(--zolt-blue);
  color: #ffffff;
  border-color: var(--zolt-blue);
}

/* Redesigned Footer Columns */
.site-footer {
  background: #ffffff;
  color: var(--zolt-text-dark);
  padding: 60px 24px 0;
  border-top: 1px solid var(--zolt-border);
}

.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.8fr;
  gap: 48px;
}

.footer-col-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--zolt-text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #4b5563;
  font-size: 0.92rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--zolt-blue);
  text-decoration: underline;
}

.footer-contact-desc {
  font-size: 0.92rem;
  color: #4b5563;
  margin-bottom: 18px;
  line-height: 1.5;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--zolt-text-dark);
}

.contact-line a {
  color: var(--zolt-text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-line a:hover {
  color: var(--zolt-blue);
}

.footer-bottom-bar {
  border-top: 1px solid var(--zolt-border);
  padding: 24px 0;
  background: #fdfdfd;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--zolt-text-muted);
}

.staff-link {
  color: var(--zolt-text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.staff-link:hover {
  color: var(--zolt-blue);
}

/* Policy & Review Modals */
.policy-box, .review-submit-box {
  max-width: 650px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px 28px;
}

.policy-modal-content h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--zolt-text-dark);
}

.policy-modal-content .policy-date {
  font-size: 0.8rem;
  color: var(--zolt-text-muted);
  margin-bottom: 20px;
}

.policy-modal-content h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 18px;
  margin-bottom: 6px;
  color: var(--zolt-blue);
}

.policy-modal-content p, .policy-modal-content li {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
}

.policy-modal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

/* Star Rating Selector */
.rating-picker-wrap {
  background: #fafbff;
  border: 1px solid var(--zolt-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.star-rating-select {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
  font-size: 1.8rem;
  cursor: pointer;
}

.star-choice {
  color: #d1d5db;
  transition: color 0.15s ease;
}

.star-choice:hover,
.star-choice:hover ~ .star-choice,
.star-choice.active,
.star-choice.active ~ .star-choice {
  color: #ffb703;
}

@media (max-width: 900px) {
  .trust-strip-container {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .social-strip-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


