/* ==========================================================================
   biovels.ba — Shopify Style E-commerce Stylesheet (Diasip)
   Clean, Accessible, Performance-Optimized Native CSS
   ========================================================================== */

:root {
  --primary: #1e4d63;
  --primary-dark: #123342;
  --primary-light: #e8f3f7;
  --primary-rgb: 30, 77, 99;
  
  --accent: #2e8b57;
  --accent-light: #eafaf1;
  --accent-dark: #1f633e;
  
  --sale-red: #d9383a;
  --sale-red-bg: #fde8e8;
  
  --bg-page: #f8fafb;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f7;
  
  --text-main: #192730;
  --text-muted: #5e717e;
  --text-light: #899ba6;
  
  --border-light: #e5ecef;
  --border-focus: #1e4d63;
  
  --shadow-sm: 0 2px 6px rgba(18, 51, 66, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(18, 51, 66, 0.08), 0 8px 10px -6px rgba(18, 51, 66, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(18, 51, 66, 0.12);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --max-w: 1180px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

button, input {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------------------------------------------------------------------------
   Top Announcement Bar (Shopify Standard)
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-bar .highlight {
  color: #9fe3cf;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-dark);
}

.brand-logo svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1;
}

.brand-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
}

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

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-main);
  transition: color 0.15s ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.currency-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--bg-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.header-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

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

/* --------------------------------------------------------------------------
   Product Hero / Shopify Detail Section
   -------------------------------------------------------------------------- */
.product-hero {
  padding: 36px 0 54px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --------------------------------------------------------------------------
   5-Photo Carousel (Shopify Gallery)
   -------------------------------------------------------------------------- */
.gallery-wrapper {
  position: sticky;
  top: 90px;
}

.carousel-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f4f6f8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--sale-red);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(217, 56, 58, 0.3);
  z-index: 2;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav-btn.prev {
  left: 12px;
}

.carousel-nav-btn.next {
  right: 12px;
}

.carousel-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(24, 39, 48, 0.75);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
  backdrop-filter: blur(4px);
}

.carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.thumb-btn {
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f4f6f8;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  padding: 0;
  transition: all 0.2s ease;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-btn:hover {
  opacity: 0.9;
}

.thumb-btn.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(30, 77, 99, 0.2);
}

/* --------------------------------------------------------------------------
   Product Info & Shopify Form Box
   -------------------------------------------------------------------------- */
.product-info {
  display: flex;
  flex-direction: column;
}

.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  align-self: flex-start;
  margin-bottom: 14px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(46, 139, 87, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 139, 87, 0); }
}

.product-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 10px;
}

.product-subheading {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.stars {
  color: #ffb800;
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.reviews-count {
  color: var(--text-muted);
  font-weight: 500;
}

/* Price block */
.price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  border: 1px solid var(--border-light);
}

.price-current {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-old {
  font-size: 1.25rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-save {
  margin-left: auto;
  background: var(--sale-red-bg);
  color: var(--sale-red);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.price-vat-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -14px;
  margin-bottom: 20px;
  padding-left: 6px;
}

/* Highlights List */
.product-highlights {
  list-style: none;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

@media (max-width: 500px) {
  .product-highlights {
    grid-template-columns: 1fr;
  }
}

.product-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 500;
}

.product-highlights svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Shopify Order Form Box
   -------------------------------------------------------------------------- */
.shopify-form-card {
  background: #ffffff;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
  position: relative;
  margin-bottom: 24px;
}

.form-header {
  margin-bottom: 18px;
}

.form-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  font-size: 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-page);
  color: var(--text-main);
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(30, 77, 99, 0.12);
}

.form-input::placeholder {
  color: var(--text-light);
  font-size: 0.94rem;
}

.form-terms-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 18px;
}

.form-terms-text a {
  text-decoration: underline;
}

.btn-shopify-submit {
  width: 100%;
  height: 56px;
  background: var(--sale-red);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(217, 56, 58, 0.35);
  transition: all 0.2s ease;
}

.btn-shopify-submit:hover {
  background: #be2e30;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 56, 58, 0.45);
}

.btn-shopify-submit:active {
  transform: translateY(0);
}

.form-security-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
  flex-wrap: wrap;
}

.form-security-banner span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.form-security-banner svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* Trust Seals Row */
.trust-seals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
  margin-top: 12px;
}

.seal-item {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.seal-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin: 0 auto 6px;
}

.seal-item strong {
  display: block;
  color: var(--text-main);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   Interactive Quiz Section
   -------------------------------------------------------------------------- */
.quiz-section {
  padding: 64px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}

.quiz-card {
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .quiz-card {
    padding: 24px 18px;
  }
}

.quiz-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-subtle);
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--primary);
  width: 25%;
  transition: width 0.3s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.35;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-page);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
}

.quiz-option:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.quiz-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.quiz-option:hover .quiz-option-radio {
  border-color: var(--primary);
}

/* Quiz Analyzing Screen */
.quiz-analyzing {
  text-align: center;
  padding: 30px 0;
  display: none;
}

.quiz-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Quiz Result Box */
.quiz-result {
  display: none;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.quiz-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.quiz-result-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.quiz-result-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.quiz-result-offer {
  background: var(--bg-subtle);
  border: 1.5px solid var(--primary-light);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 24px;
}

.quiz-result-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.quiz-result-cta:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Benefits & How it works
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 72px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

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

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

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Ingredients & Scientific Formulation (Google Ads Safe)
   -------------------------------------------------------------------------- */
.ingredients-section {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

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

.ingredient-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}

.ingredient-item:last-child {
  border-bottom: none;
}

.ingredient-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  width: 32px;
  flex-shrink: 0;
}

.ingredient-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.ingredient-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.quality-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

.quality-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-main);
}

.quality-badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   How To Use
   -------------------------------------------------------------------------- */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

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

.usage-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--border-light);
  text-align: center;
}

.usage-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.usage-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.usage-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Verified Customer Reviews (Shopify Style)
   -------------------------------------------------------------------------- */
.reviews-section {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

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

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-tag {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--accent-light);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}

.review-city {
  font-size: 0.78rem;
  color: var(--text-light);
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   FAQ Accordions
   -------------------------------------------------------------------------- */
.faq-wrap {
  max-width: 780px;
  margin: 36px auto 0;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 22px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

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

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

details[open] .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Google Ads & Health Mandatory Disclaimer Box
   -------------------------------------------------------------------------- */
.ads-disclaimer-box {
  background: #f1f4f6;
  border: 1px solid #dce4e8;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin: 48px auto 0;
  max-width: var(--max-w);
  font-size: 0.8rem;
  color: #627480;
  line-height: 1.6;
}

.ads-disclaimer-box strong {
  color: #3b4e5a;
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
}

/* --------------------------------------------------------------------------
   CTA Bottom Band
   -------------------------------------------------------------------------- */
.bottom-cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.bottom-cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.bottom-cta-band p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 28px;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.btn-cta-white:hover {
  background: #f8fafb;
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Footer & Legal Links
   -------------------------------------------------------------------------- */
.site-footer {
  background: #111a20;
  color: #d1dde3;
  padding: 64px 0 32px;
  font-size: 0.88rem;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-about {
  color: #8fa0ab;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #a4b4be;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

/* --------------------------------------------------------------------------
   Cookie Consent Bar
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  z-index: 999;
  display: none;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-light);
}

.cookie-btn-accept {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Page Header (for legal pages)
   -------------------------------------------------------------------------- */
.legal-page-header {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.legal-content {
  padding: 48px 0 72px;
  max-width: 820px;
  margin: 0 auto;
}

.legal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 40px;
}

@media (max-width: 600px) {
  .legal-card {
    padding: 24px 18px;
  }
}

.legal-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 28px 0 12px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.legal-card ul {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.legal-card li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Thanks Page specifics */
.thanks-card {
  max-width: 680px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 40px 32px;
  text-align: center;
}

.thanks-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.thanks-icon svg {
  width: 36px;
  height: 36px;
}

.order-details-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
  text-align: left;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.order-detail-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   Enhanced Reviews Section Styles
   -------------------------------------------------------------------------- */
.reviews-aggregate-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 36px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .reviews-aggregate-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

.aggregate-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-light);
  padding-right: 24px;
}

@media (max-width: 768px) {
  .aggregate-score {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding-right: 0;
    padding-bottom: 20px;
  }
}

.big-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.aggregate-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.star-label {
  width: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.rating-bar-bg {
  flex-grow: 1;
  height: 8px;
  background: var(--bg-subtle);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: #ffb800;
  border-radius: var(--radius-pill);
}

.rating-row-count {
  width: 40px;
  text-align: right;
  font-weight: 500;
}

.reviews-filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-pill {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-pill:hover, .filter-pill.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.review-date {
  font-size: 0.76rem;
  color: var(--text-light);
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.review-headline {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 10px;
  margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   Modern Redesigned Thanks Page Styles (Shopify E-commerce Order Status)
   -------------------------------------------------------------------------- */
.thanks-container {
  max-width: 920px;
  margin: 36px auto 70px;
  padding: 0 20px;
}

.thanks-header-banner {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.thanks-header-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.order-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.thanks-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

@media (max-width: 860px) {
  .thanks-main-grid {
    grid-template-columns: 1fr;
  }
}

/* Visual Stepper / Timeline */
.timeline-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.timeline-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stepper-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stepper-step {
  display: flex;
  gap: 16px;
  position: relative;
}

.stepper-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -18px;
  width: 2px;
  background: var(--border-light);
}

.stepper-step.completed:not(:last-child)::after {
  background: var(--accent);
}

.stepper-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 2px solid var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  transition: all 0.2s ease;
}

.stepper-step.completed .stepper-icon-box {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.stepper-step.current .stepper-icon-box {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 77, 99, 0.15);
  animation: pulsePrimary 2s infinite;
}

@keyframes pulsePrimary {
  0% { box-shadow: 0 0 0 0 rgba(30, 77, 99, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(30, 77, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(30, 77, 99, 0); }
}

.stepper-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.stepper-content p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.stepper-time-tag {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-top: 4px;
}

/* Order Summary Box in Thanks */
.order-summary-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.order-card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-main);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-product-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.order-product-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  object-fit: cover;
  flex-shrink: 0;
  background: #f4f6f8;
}

.order-product-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.order-product-qty {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.order-product-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 4px;
}

.order-alert-box {
  background: #fff8e6;
  border: 1.5px solid #ffd67a;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.order-alert-box svg {
  width: 22px;
  height: 22px;
  color: #b37400;
  flex-shrink: 0;
  margin-top: 2px;
}

.order-alert-box strong {
  display: block;
  font-size: 0.88rem;
  color: #734b00;
  margin-bottom: 4px;
}

.order-alert-box p {
  font-size: 0.82rem;
  color: #8c5b00;
  line-height: 1.45;
}

.support-action-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: 20px;
  text-align: center;
}

.support-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: 10px;
  transition: background 0.2s ease;
}

.support-action-btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
}

