/* ============================================================
   PURISAKI BERBERINEâ„¢ â€” css/style.css
   Domain: us-purisaki.com
   Theme: Clean Blue #1B75BB + Navy #0D3A6B
   Buttons: Solid fill rounded rect
   Cards: 2-column icon grid
   Font: Jost (Google Fonts)
   ============================================================ */

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

:root {
  --blue:        #1B75BB;
  --blue-dark:   #0D3A6B;
  --blue-mid:    #1560a0;
  --blue-light:  #E3F1FC;
  --blue-pale:   #F0F7FD;
  --blue-border: #B8D9F2;
  --teal:        #0FA3B1;
  --white:       #ffffff;
  --off-white:   #F6FBFF;
  --cream:       #EDF5FC;
  --text:        #071D36;
  --muted:       #2C5282;
  --border:      #C6DFEF;
  --radius:      10px;
  --radius-card: 14px;
  --radius-btn:  8px;
  --shadow:      0 4px 20px rgba(13,58,107,0.10);
  --shadow-h:    0 12px 40px rgba(13,58,107,0.20);
  --shadow-card: 0 2px 14px rgba(13,58,107,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}

/* ============================================================
   NAVBAR â€” FIXED alignment
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue-dark);
  padding: 0 24px;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.22);
  border-bottom: 3px solid var(--blue);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo span { color: #7EC8F0; font-weight: 300; }

/* FIX: explicit list reset + flex alignment */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* FIX: li items need flex + center alignment */
.nav-links li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.nav-links a:hover { color: var(--white); }

.btn-nav-order {
  background: var(--blue) !important;
  color: var(--white) !important;
  font-weight: 800 !important;
  font-size: 0.87rem !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-btn) !important;
  border: none !important;
  transition: background 0.2s !important;
  white-space: nowrap;
  text-decoration: none;
}
.btn-nav-order:hover { background: var(--blue-mid) !important; }

/* FIX: hamburger align */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  align-self: center;
  flex-shrink: 0;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--blue-dark);
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  padding: 24px 32px;
  gap: 18px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}
.mobile-menu .btn-mob-order {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-btn);
  font-weight: 800;
  margin-top: 6px;
  font-size: 0.95rem;
}

/* ============================================================
   BUTTONS â€” Solid fill rounded rect
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dark);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 15px 34px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 3px 14px rgba(13,58,107,0.28);
  border-bottom: 3px solid rgba(0,0,0,0.15);
  line-height: 1.2;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(27,117,187,0.3);
  line-height: 1.2;
}
.btn-outline:hover { background: var(--blue-mid); transform: translateY(-2px); }

/* ============================================================
   SECTION TITLE BANDS
   ============================================================ */
.sec-title-band {
  background: var(--blue-dark);
  padding: 46px 40px 40px;
  text-align: center;
}
.sec-title-band h2 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-block;
  padding-bottom: 16px;
}
.sec-title-band h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--teal);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--off-white); padding: 80px 48px; }
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap a img {
  max-width: 100%;
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(13,58,107,0.18));
  transition: transform 0.4s ease;
}
.hero-img-wrap a:hover img { transform: scale(1.04); }

.hero-content h1 {
  font-family: 'Jost', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--blue-dark);
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.hero-content h1 strong {
  font-weight: 900;
  color: var(--blue);
  display: block;
  font-size: 3rem;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}
.hero-content p {
  font-size: 1.08rem;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 16px;
  margin-top: 20px;
}
.hero-highlight {
  font-weight: 600;
  color: var(--blue-dark);
  font-size: 0.98rem;
  display: block;
  margin-top: 8px;
  padding: 12px 16px;
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--cream); padding: 70px 48px; }
.reviews-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
  border-top: 4px solid var(--blue);
}
.review-card:hover { box-shadow: var(--shadow-h); transform: translateY(-5px); }

.reviewer-photo-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.reviewer-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: var(--blue-light);
  transition: transform 0.4s ease;
}
.review-card:hover .reviewer-photo { transform: scale(1.03); }
.reviewer-photo.img-error { opacity: 0; position: absolute; }
.reviewer-photo-wrap.img-broken::after {
  content: "ðŸ‘¤";
  font-size: 3.5rem;
  opacity: 0.25;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.review-card-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.review-stars { height: 20px; margin: 0 auto 10px; display: block; }
.review-badge { font-size: 0.82rem; font-weight: 700; color: var(--blue); margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.review-text { font-size: 0.97rem; line-height: 1.78; color: var(--muted); font-style: italic; flex: 1; }
.reviewer-name { margin-top: 16px; font-weight: 700; color: var(--blue-dark); font-size: 0.9rem; padding-top: 12px; border-top: 1px solid var(--border); }

/* ============================================================
   WHAT IS / WHY / PROSE
   ============================================================ */
.what-is-section { background: var(--off-white); padding: 70px 48px; }
.what-is-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 60px;
}
.what-is-img-wrap img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(13,58,107,0.16));
  display: block;
}
.what-is-text p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

.why-section { background: var(--white); padding: 70px 48px; }
.section-prose { max-width: 900px; margin: 0 auto; }
.section-prose p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

/* ============================================================
   PRICING BAND + IMAGE
   ============================================================ */
.pricing-band { background: var(--blue-dark); padding: 44px 40px 14px; text-align: center; }
.pricing-band h3 { font-family: 'Jost', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 8px; text-transform: uppercase; }
.pricing-band h4 { font-family: 'Jost', sans-serif; font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.78); margin-bottom: 0; }

.price-img-section { background: var(--cream); padding: 48px; text-align: center; }
.price-img-section a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); }
.price-img-section a:hover img { transform: scale(1.01); }

/* ============================================================
   FEATURES â€” 2Ã—4 Icon Grid Cards â€” FIXED
   ============================================================ */
.features-section { background: var(--off-white); padding: 70px 48px; }

/* FIX: align-items: stretch so all cards in a row match height */
.feature-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* FIX: ensure card stretches to fill grid cell */
  height: 100%;
}
.feature-card:hover { box-shadow: var(--shadow-h); transform: translateY(-3px); }

/* FIX: icon must be display:flex for emoji centering */
.feature-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-dark);
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-bottom: 4px;
  line-height: 1;
}

.feature-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
}

/* FIX: p fills remaining space so cards align at bottom */
.feature-card p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  flex: 1;
}

/* ============================================================
   INGREDIENTS â€” FIXED card alignment
   ============================================================ */
.ingredients-section { background: var(--cream); padding: 70px 48px; }
.ingredients-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}
.ingredient-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s;
  border-top: 3px solid var(--teal);
  height: 100%;
}
.ingredient-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }

/* FIX: icon explicitly sized and centered */
.ingredient-icon {
  min-width: 42px;
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}

/* FIX: text wrapper takes remaining space */
.ingredient-text { flex: 1; min-width: 0; }
.ingredient-card h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  line-height: 1.3;
}
.ingredient-card p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--muted);
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-section { background: var(--white); padding: 70px 48px; }
.guarantee-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 60px;
}
.guarantee-img-wrap img { width: 100%; max-width: 280px; height: auto; object-fit: contain; display: block; }
.guarantee-text p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

/* ============================================================
   BENEFITS â€” same icon grid, FIXED
   ============================================================ */
.benefits-section { background: var(--off-white); padding: 70px 48px; }
.benefits-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* ============================================================
   HOW TO USE
   ============================================================ */
.howto-section { background: var(--cream); padding: 70px 48px; }
.howto-steps { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.howto-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px 26px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}

/* FIX: step number as proper flex square */
.step-num {
  min-width: 44px;
  width: 44px;
  height: 44px;
  background: var(--blue-dark);
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-family: 'Jost', sans-serif;
  line-height: 1;
}

/* FIX: step text wrapper */
.howto-step-text { flex: 1; min-width: 0; }
.howto-step h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.howto-step p { font-size: 1rem; line-height: 1.75; color: var(--muted); }

/* ============================================================
   FAQs
   ============================================================ */
.faq-section { background: var(--white); padding: 70px 48px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
  line-height: 1.4;
}
.faq-question:hover { background: var(--blue-light); }
.faq-arrow { font-size: 1rem; transition: transform 0.3s; color: var(--blue); flex-shrink: 0; }
.faq-answer { display: none; padding: 16px 24px 20px; font-size: 1.03rem; line-height: 1.8; color: var(--muted); border-top: 1px solid var(--border); background: var(--white); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ============================================================
   ORDER / PAYMENT / PRICING DETAILS
   ============================================================ */
.order-how-section { background: var(--off-white); padding: 70px 48px; }
.order-how-inner { max-width: 900px; margin: 0 auto; }
.order-how-inner p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.order-img-wrap { text-align: center; margin-top: 36px; }
.order-img-wrap a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); }
.order-img-wrap a:hover img { transform: scale(1.01); }

.pricing-details { background: var(--white); padding: 48px; }
.pricing-details-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.info-block { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; border-top: 3px solid var(--blue); box-shadow: var(--shadow-card); }
.info-block h4 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.8px; }
.info-block p, .info-block li { font-size: 1.03rem; line-height: 1.8; color: var(--muted); }
.info-block ul { list-style: none; padding: 0; margin: 0; }
.info-block ul li { padding: 4px 0; }
.info-block ul li::before { content: "â€” "; color: var(--blue); font-weight: 700; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final { background: var(--blue-light); padding: 80px 48px; text-align: center; border-top: 3px solid var(--blue); border-bottom: 3px solid var(--blue); }
.cta-final h2 { font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 36px; line-height: 1.18; text-transform: uppercase; }
.cta-product-img { max-width: 360px; margin: 0 auto 28px; }
.cta-product-img a img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 10px 28px rgba(13,58,107,0.22)); transition: transform 0.4s; }
.cta-product-img a:hover img { transform: scale(1.05); }
.cta-regular-price { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; display: block; margin-bottom: 6px; }
.cta-current-price { font-family: 'Jost', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--blue-dark); display: block; margin-bottom: 28px; letter-spacing: -1px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--blue-dark); padding: 48px 48px 30px; border-top: 3px solid var(--blue); }
.footer-cols { max-width: 1160px; margin: 0 auto 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; }
.footer-cols a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; font-weight: 500; font-family: 'Jost', sans-serif; transition: color 0.2s; padding: 5px 16px; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; white-space: nowrap; }
.footer-cols a:last-child { border-right: none; }
.footer-cols a:hover { color: var(--white); }
.footer-legal { max-width: 1160px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; }
.footer-legal p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 10px; }
.footer-copy { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.38); font-family: 'Jost', sans-serif; margin-top: 14px; }
.footer-copy a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-copy a:hover { color: var(--white); }

/* ============================================================
   FADE-UP
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.1rem; }
  .hero-content h1 strong { font-size: 2.4rem; }
  .what-is-inner { grid-template-columns: 1fr 1.3fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .what-is-inner { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-img-wrap { display: flex; justify-content: center; }
  .feature-grid,
  .benefits-grid,
  .ingredients-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 44px 20px; }
  .hero-inner { gap: 32px; }
  .hero-content h1 { font-size: 1.75rem; }
  .hero-content h1 strong { font-size: 2rem; }
  .sec-title-band { padding: 36px 20px 30px; }
  .sec-title-band h2 { font-size: 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-section, .what-is-section, .why-section, .features-section,
  .ingredients-section, .guarantee-section, .benefits-section,
  .faq-section, .howto-section, .order-how-section { padding: 44px 20px; }
  .pricing-details, .price-img-section { padding: 32px 20px; }
  .cta-final { padding: 56px 20px; }
  .cta-final h2 { font-size: 1.5rem; }
  .cta-current-price { font-size: 2rem; }
  footer { padding: 36px 20px 24px; }
  .footer-cols a { border-right: none; padding: 4px 10px; }
}
/* ============================================================
   OTHER PURISAKI PRODUCTS SECTION
   ADD THIS TO THE BOTTOM OF css/style.css
   us-purisaki.com — Blue #1B75BB + Navy #0D3A6B + Teal #0FA3B1
   All values use explicit hex + !important to prevent
   specificity conflicts with existing site styles
   ============================================================ */

.other-products-section {
  background: #EDF5FC;
  padding: 70px 48px;
  border-top: 3px solid #B8D9F2;
}

.other-products-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Header ── */
.op-header {
  text-align: center;
  margin-bottom: 44px;
}

.op-tag {
  display: inline-block;
  background: #E3F1FC;
  color: #0D3A6B;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border-radius: 50px;
  border: 1px solid #B8D9F2;
  margin-bottom: 12px;
}

.op-title {
  font-family: 'Jost', sans-serif !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #0D3A6B !important;
  line-height: 1.2 !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
  border: none !important;
}

.op-hl {
  color: #1B75BB !important;
}

.op-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  color: #2C5282;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* ── 2-col grid ── */
.op-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* ── Card ── */
.op-card {
  background: #ffffff;
  border: 1px solid #C6DFEF;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 14px rgba(13,58,107,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}

.op-card:hover {
  box-shadow: 0 12px 40px rgba(13,58,107,0.20);
  transform: translateY(-5px);
}

/* ── Image wrap as clickable link ── */
.op-img-wrap {
  display: block !important;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #F0F7FD;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none !important;
}

.op-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.op-img-wrap:hover img {
  transform: scale(1.04);
}

/* ── Card body ── */
.op-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.op-badge {
  display: inline-block;
  background: #E3F1FC;
  color: #0D3A6B;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 50px;
  width: fit-content;
}

/* ── Card h3 explicit colour ── */
.op-body h3 {
  font-family: 'Jost', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0D3A6B !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.op-hook {
  font-family: 'Jost', sans-serif;
  font-size: 0.98rem;
  line-height: 1.78;
  color: #2C5282;
  flex: 1;
  margin: 0;
  font-style: normal;
}

/* ── Blue button — Foot Pad ── */
.op-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #1B75BB !important;
  color: #ffffff !important;
  font-family: 'Jost', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.97rem !important;
  padding: 13px 28px !important;
  border-radius: 8px !important;
  border: none !important;
  text-decoration: none !important;
  transition: all 0.22s !important;
  box-shadow: 0 4px 14px rgba(27,117,187,0.35) !important;
  margin-top: auto;
  text-align: center;
  cursor: pointer;
  line-height: 1.2 !important;
}

.op-btn:hover {
  background: #0D3A6B !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(13,58,107,0.40) !important;
  transform: translateY(-2px) !important;
}

/* ── Teal button — Berberine Patch ── */
.op-btn-teal {
  background: #0FA3B1 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(15,163,177,0.35) !important;
}

.op-btn-teal:hover {
  background: #0b828d !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(15,163,177,0.45) !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .other-products-section { padding: 48px 20px; }
  .op-grid { grid-template-columns: 1fr; gap: 20px; }
  .op-title { font-size: 1.6rem !important; }
  .op-img-wrap { height: 220px; }
}