/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 9:0 Comments in CSS use "/* ... */" instead of "//"
Line 1099:0 Unexpected "<"

**/
<style>
//* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Force font-family on headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}
body {
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
button, a.button-link {
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}
/* Header (Navbar) */
header {
  background-color: #2D2A32;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.logo {
  width: 120px;
}
/* Hero Section */
.hero {
  /* Use our beige color for off-white */
  background: linear-gradient(180deg, #E3E4DB, #E3E4DB);
  color: #333;
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
  }
.product-image {
  max-width: 400px;
  margin: 40px auto;
  display: block;
  transition: transform 0.3s ease;
}
.product-image:hover {
  transform: translateY(-10px);
}
/* CTA Button in Hero */
.cta-button {
  background-color: #2D2A32;
  color: #E3E4DB;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.cta-button:hover {
  background-color: #2E84BA;
  transform: translateY(-2px);
}
/* Feature Section */
.feature-section {
  padding: 80px 0;
  text-align: center;
  background-color: #F5F5F0; /* Changed to off-white */
}
.feature-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 500;
}
/* Waitlist Section (Form) */
.waitlist-section {
  background-color: #E3E4DB;
  padding: 80px 0;
  text-align: center;
}
.waitlist-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}
/* Waitlist Section (Form) */
.waitlist-section {
    background-color: #E3E4DB;
    padding: 80px 0;
    text-align: center;
  }
  .waitlist-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
  }
  /* The waitlist image is now flat */
  .waitlist-image {
    flex: 1;
    min-width: 300px;
  }
  .waitlist-image img {
    width: 100%;
    transition: transform 0.3s ease;
  }
  .waitlist-image img:hover {
    transform: translateY(-10px);
  }
  .waitlist-form {
    flex: 1;
    background-color: #F5F5F0; /* Changed to off-white */
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-width: 300px;
    width: 100%; /* Add this */
  }
  .waitlist-form h2 {
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 500;
  }
  .waitlist-form p {
    margin-bottom: 30px;
    opacity: 0.8;
  }
  .price {
    font-weight: 600;
    margin-bottom: 25px;
  }
  .form-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* Make sure this is set */
    -webkit-appearance: none; /* This helps with iOS styling */
    appearance: none;
  }
  .form-button {
    width: 100%;
    padding: 15px;
    background-color: #2D2A32;
    color: #E3E4DB;
    font-size: 1rem;
    font-weight: 600;
  }
.form-button:hover {
  background-color: #2E84BA;
}
/* Product Benefits Section ("Fit for nightly use") */
.product-benefits {
  background-color: #EAEAE0; /* Changed to a different off-white */
  padding: 80px 0;
}
.product-container {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}
.product-image-container {
  flex: 1;
  padding-right: 50px;
  min-width: 300px;
}
.product-benefits-list {
  flex: 1;
  padding-left: 20px;
  min-width: 300px;
}
.product-benefits-list h2 {
  margin-bottom: 15px;
}
.product-benefits-list p {
  margin-bottom: 20px;
}
/* Two-column grid for benefits */
.benefits-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
}
.benefit-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background-color: #2D2A32;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  font-size: 18px;
  color: #E3E4DB;
}
.benefit-icon:before {
  content: "✓";
}
/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
  }
  .feature-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(135deg, #2D2A32, #2E84BA);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .feature-card:hover {
    transform: translateY(-5px) scale(1.05);
  }
  .feature-card-content {
    padding: 30px;
    color: #E3E4DB;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    background: rgba(45,42,50,0.3);
  }
  .feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
  }
  .feature-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
  }
  .feature-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
    font-family: 'Inter', sans-serif;
  }
/* Supplement Facts Section */
.supplement-facts {
  padding: 80px 0;
  background-color: #F5F5F0; /* Changed to off-white */
}
.facts-content {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}
.facts-intro {
  flex: 1;
  padding-right: 40px;
  min-width: 300px;
}
.facts-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.facts-table {
  flex: 1;
  border: 1px solid #2D2A32;
  padding: 20px;
  min-width: 300px;
  background-color: #F5F5F0; /* Changed to off-white */
}
.facts-table h3 {
  font-size: 1.2rem;
  text-align: center;
  border-bottom: 1px solid #2D2A32;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.facts-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
}
.ingredient-name {
  flex: 2;
}
.amount-per-serving {
  flex: 1;
  text-align: right;
}
.daily-value {
  flex: 1;
  text-align: right;
}
.facts-header {
  font-weight: 600;
}
/* Adjust spacing in supplement facts section */
@media (max-width: 768px) {
    .facts-intro {
      padding-right: 0;
      margin-bottom: 20px; /* Reduce the bottom margin */
    }
    
    .facts-content {
      gap: 20px; /* Reduce the gap between elements */
    }
  }
/* Smooth transition for hidden ingredients */
.hidden-facts {
  overflow: hidden;
}
.show-more-button {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #2E84BA;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #2D2A32;
}
.show-more-button:hover {
  background-color: #2E84BA;
  color: #E3E4DB;
}
/* Sleep Fitness Section */
.sleep-fitness {
  background-color: #E3E4DB;
  padding: 80px 0;
  text-align: center;
}
.sleep-fitness-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}
.sleep-fitness-image {
  flex: 1;
  min-width: 300px;
}
.sleep-fitness-img {
  width: 100%;
  height: auto;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.sleep-fitness-img:hover {
  transform: translateY(-10px);
}
.sleep-fitness-box {
  flex: 1;
  background-color: #E3E4DB;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  min-width: 300px;
}
/* Updated heading style: regular font weight */
.sleep-fitness-box h2 {
  margin-bottom: 20px;
  font-weight: normal;
}
.sleep-fitness-box .waitlist-button {
  background-color: #2D2A32;
  color: #E3E4DB;
  padding: 15px 30px;
  font-weight: 600;
}
.sleep-fitness-box .waitlist-button:hover {
  background-color: #2E84BA;
  transform: translateY(-2px);
}
/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #F5F5F0; /* Changed to off-white */
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-intro {
  margin-bottom: 40px;
}
.faq-intro h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}
.faq-item {
  border-top: 1px solid #ddd;
  padding: 20px 0;
}
/* FAQ Section Fixes */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    padding: 15px 0;
  }
  
  .faq-question::after {
    content: "+";
    font-size: 1.5rem;
    margin-left: 10px;
  }
  
  .faq-question.active::after {
    content: "-";
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 500px; /* Set a reasonable max-height */
    padding-top: 10px;
}
  
  /* Hidden facts fixes */
  .hidden-facts {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.hidden-facts.visible {
    max-height: 2000px; /* Set a realistic max height */
}
/* Footer */
footer {
  padding: 60px 0;
  background-color: #D57A66; /* Changed to burnt sienna */
  border-top: 1px solid #ddd;
  color: #F5F5F0; /* Changed text color to off-white */
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
}
.footer-links h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: left; /* Ensure heading is left-aligned */
  padding-left: 0; /* Remove any potential padding */
}
.footer-links ul {
  list-style: none;
  padding-left: 0; /* Remove default list padding */
  margin-left: 0; /* Remove default list margin */
}
.footer-links li {
  margin-bottom: 10px;
  text-align: left; /* Ensure list items are left-aligned */
}
.footer-links a {
  text-decoration: none;
  color: #F5F5F0; /* Changed link color to off-white */
  transition: color 0.3s;
  display: inline-block; /* Helps with alignment */
}
.footer-links a:hover {
  color: #E3E4DB; /* Slightly darker off-white on hover */
}
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #E3E4DB; /* Changed border color */
  font-size: 0.9rem;
  color: #F5F5F0; /* Changed text color to off-white */
  width: 100%; /* Ensure it spans the full width */
  clear: both; /* Clear any floating elements */
}

/* Ensure the copyright text itself is centered */
.footer-bottom p {
  text-align: center;
  margin: 0 auto;
}
/* Mobile tweaks */
@media (max-width: 768px) {
    .product-container,
    .waitlist-container,
    .facts-content,
    .footer-container,
    .sleep-fitness-container {
      flex-direction: column;
      width: 100%;
    }
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .feature-card {
      height: 300px;
    }
    .product-image-container,
    .waitlist-image,
    .facts-intro {
      padding-right: 0;
      margin-bottom: 40px;
      width: 100%;
    }
    .product-benefits-list,
    .waitlist-form {
      padding-left: 0;
      width: 100%;
    }
    .waitlist-form {
      padding: 20px;
      margin: 0 auto;
      max-width: 90%;
    }
    .form-input, .form-button {
      max-width: 100%;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-left,
    .footer-center,
    .footer-right {
      margin-bottom: 20px;
    }
    .footer-links h3 {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .features-grid {
      grid-template-columns: 1fr;
    }
    .feature-card {
      height: 250px;
    }
    .hero h1 {
      font-size: 2.5rem;
    }
    .container {
      padding: 0 15px;
    }
    .waitlist-form {
      padding: 15px;
      max-width: 95%;
    }
    .form-input {
      padding: 12px;
    }
  }
  /* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  /* Container width fix */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  /* Fix for waitlist form */
  .waitlist-form {
    width: calc(100% - 30px);
    max-width: 100%;
    padding: 20px 15px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  /* Fix for supplement facts */
  .facts-table {
    width: 100%;
    overflow-x: auto;
    display: block;
  }
  /* Supplement Facts Mobile Fixes */
@media (max-width: 768px) {
    .facts-content {
      flex-direction: column;
      padding: 0 10px;
    }
    
    .facts-table {
      width: 100%;
      max-width: 100%;
      overflow-x: auto;
      padding: 15px 10px;
      box-sizing: border-box;
    }
    
    .facts-row {
      display: flex;
      flex-wrap: nowrap;
      width: 100%;
      min-width: 280px; /* Ensure minimum width */
    }
    
    .ingredient-name, .amount-per-serving, .daily-value {
      font-size: 0.9rem; /* Smaller font on mobile */
    }
  }
  
  /* Fix for sleep fitness box */
  .sleep-fitness-box {
    width: calc(100% - 30px);
    max-width: 100%;
    padding: 20px 15px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  /* Make form inputs fit properly */
  .form-input, .form-button {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  /* Further constraints for very small screens */
  .container {
    padding: 0 10px;
  }
  
  /* Reduce padding in all sections */
  .hero, 
  .feature-section, 
  .waitlist-section, 
  .product-benefits, 
  .supplement-facts, 
  .sleep-fitness, 
  .faq-section {
    padding: 40px 0;
  }
  
  /* Adjust text sizes */
  h1 {
    font-size: 2rem !important;
  }
  
  h2 {
    font-size: 1.8rem !important;
  }
}
/* Image Centering Mobile Fixes */
@media (max-width: 768px) {
    .product-image, 
    .waitlist-image img,
    .sleep-fitness-image img,
    .product-image-container img {
      display: block;
      margin: 0 auto;
      max-width: 90%;
      height: auto;
    }
    
    /* Container adjustments */
    .product-container,
    .waitlist-container,
    .sleep-fitness-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
/* Make the waitlist-form a left-aligned column */
.waitlist-form {
  display: flex;
  flex-direction: column;  /* Stack heading, subheading, and form vertically */
  align-items: flex-start; /* Align everything to the left */
  text-align: left;        /* Make sure text is left-aligned */
  padding: 60px;           /* Adjust as desired */
}

/* Remove extra left margin or padding on headings, paragraphs, etc. */
.waitlist-form h2,
.waitlist-form p,
.waitlist-form .price {
  margin: 0 0 20px 0; /* Example: no left margin, some bottom spacing */
}

/* If the form fields themselves have extra left margin, override it */
.form-container * {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Adjust the waitlist form on mobile */
@media (max-width: 768px) {
  .waitlist-form {
    padding: 25px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .waitlist-container {
    padding: 0 15px;
  }
  
  .waitlist-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
  }
  
  .form-container {
    width: 100%;
  }
  
  /* Ensure form inputs have proper spacing */
  .form-input, 
  .form-button,
  .form-container input,
  .form-container button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
}

/* Extra adjustment for very small screens */
@media (max-width: 480px) {
  .waitlist-form {
    padding: 20px 15px;
  }
  
  .waitlist-form h2 {
    font-size: 1.5rem;
  }
}
.sleep-fitness-img {
  width: 100%;
  height: auto;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.sleep-fitness-img:hover {
  transform: translateY(-10px);
}

/* Make the image smaller on mobile */
@media (max-width: 768px) {
  .sleep-fitness-img {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .sleep-fitness-img {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .product-image {
    max-width: 90%;
    margin: 10px auto;
  }

  .product-image-container {
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.modern-feature {
  padding: 80px 20px;
}

.modern-feature .container {
  max-width: 1100px;
  margin: 0 auto;
}

.modern-feature .modern-heading {
  font-size: 2rem;
  font-weight: 500;
  color: #2D2A32;
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: left;
}

.modern-feature .modern-subheading {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  text-align: left;
}

.feature-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}

.feature-item {
  flex: 1 1 30%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon svg {
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2D2A32;
  margin-bottom: 8px;
}

.feature-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}
/* container remains flex */
.sleep-fitness-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* image wrapper */
.sleep-fitness-image {
  text-align: center;
  flex: 0 1 300px;
  max-width: 300px;
}

/* the image itself */
.sleep-fitness-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
}

.sleep-fitness-box {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: left;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #222;
}
.sleep-fitness-box h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.4;
}



/* responsive breakpoints */
@media (max-width: 768px) {
  .sleep-fitness-container {
    flex-direction: column;
    text-align: center;
  }

  .sleep-fitness-image {
    max-width: 120px;
  }

  .sleep-fitness-img {
    max-width: 100px;
  }

  .sleep-fitness-box {
    max-width: 90%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sleep-fitness-img {
    max-width: 80px;
  }
}
.sleep-fitness-image {
  margin-top: -30px;
  z-index: 1;
}
/* overall hero section */
.hero {
  padding: 40px 20px;
  text-align: center;
}

/* headline */
.hero h1 {
  font-size: 2.5rem;
  line-height: 1.3; /* increased slightly for breathing room */
  margin-bottom: 20px; /* more space below headline */
}

/* call-to-action button */
.cta-button {
  margin-bottom: 20px; /* more room below button if needed */
  font-size: 1rem;
  padding: 12px 24px;
}

/* product image */
.product-image {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin: 12px auto 0;
  display: block;
}

/* container adjustments */
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* MOBILE adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3; /* keep readable on small screens */
    margin-bottom: 16px; /* more space below headline */
  }

  .cta-button {
    margin-bottom: 12px; /* slightly more breathing room */
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .product-image {
    max-width: 280px;
    margin: 8px auto 0;
  }
}

/* Remove bottom space from container if needed */
.hero-content {
  margin-bottom: 0;
}
/* Make waitlist image smaller on desktop */
@media (min-width: 769px) {
  .waitlist-image img {
    max-width: 350px; /* or any value you like */
    margin: 0 auto;
    display: block;
  }
}
@media (min-width: 769px) {
  .sleep-fitness-image {
    flex: 0 1 500px;
    max-width: 350px;
  }

  .sleep-fitness-img {
    max-width: 500px;
    width: 100%;
    height: auto;
  }
}
.sticky-waitlist-button {
  display: none; /* hidden by default on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #2D2A32; /* brand color */
  color: #E3E4DB; /* text color */
  text-align: center;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.sticky-waitlist-button:hover {
  background-color: #2E84BA;
}

/* show only on mobile */
@media (max-width: 768px) {
  .sticky-waitlist-button {
    display: block;
  }
}


</style>
/* ============================
   JAWAN Blog & Article Styles
   ============================ */

.jawan-blog-hero {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(229,231,235,0.9);
  background: #fff;
}

.jawan-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 40px 0 80px;
}

@media (min-width: 900px) {
  .jawan-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jawan-post-card {
  background: #fff;
  border: 1px solid rgba(229,231,235,0.8);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.jawan-post-thumb {
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
  overflow: hidden;
}

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

.jawan-post-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.jawan-post-meta {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
}

.jawan-post-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.jawan-post-excerpt {
  font-weight: 300;
  line-height: 1.7;
  color: #4b5563;
}

.jawan-post-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

/* Article */

.jawan-article {
  padding: 72px 0 96px;
}

.jawan-article-head {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.jawan-article-meta {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
}

.jawan-article-hero {
  max-width: 980px;
  margin: 0 auto 32px;
  overflow: hidden;
}

.jawan-article-content {
  max-width: 820px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.9;
  color: #111827;
}

.jawan-article-content h2,
.jawan-article-content h3 {
  font-weight: 900;
  margin-top: 28px;
}

.jawan-article-cta {
  max-width: 820px;
  margin: 48px auto 0;
  padding: 24px;
  border: 1px solid rgba(229,231,235,0.8);
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .jawan-article-cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
/* ============================
   JAWAN Article (match Blog Index)
   ============================ */

.jawan-article {
  padding: 0 0 96px;
}

/* Full-width header band directly under the site header */
.jawan-article-header {
  margin: 0;
  padding: 56px 0 44px;
  border-bottom: 1px solid rgba(229,231,235,.9);

  /* Use the same light brand wash you used for thumbs / soft backgrounds */
  background: rgba(217,238,251,.45);
}

/* Ensure the title is readable even if the global h1 is dark */
.jawan-article-header .jawan-h1,
.jawan-article-header .jawan-kicker,
.jawan-article-header .jawan-post-meta {
  color: #111827;
}

/* Tighten title spacing so it sits nicely in the band */
.jawan-article-title {
  margin: 10px 0 0;
}

/* Keep body editorial */
.jawan-article-hero {
  max-width: 980px;
  margin: 34px auto 0;
  border: 1px solid rgba(229,231,235,.8);
  overflow: hidden;
}

.jawan-article-content {
  max-width: 820px;
  margin: 28px auto 0;
  font-weight: 300;
  line-height: 1.9;
}
/* Fallback: remove any first-child spacing under header on article pages */
body[class*="template-article"] #MainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
body[class*="template-article"] #MainContent > .shopify-section:first-child {
  margin-top: 0 !important;
}
/* =========================================
   Article typography + image standards
   Scoped to JAWAN articles only
   ========================================= */

.jawan-article-content {
  max-width: 820px;
  margin: 28px auto 0;
  font-weight: 300;
  line-height: 1.9;
  color: #111827;
}

/* Headings */
.jawan-article-content h1 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 32px 0 14px;
}

.jawan-article-content h2 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 34px 0 12px;
}

.jawan-article-content h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 28px 0 10px;
}

.jawan-article-content h4 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0;
  margin: 22px 0 8px;
}

/* Paragraphs + lists */
.jawan-article-content p {
  margin: 0 0 16px;
}

.jawan-article-content ul,
.jawan-article-content ol {
  margin: 0 0 18px 22px;
}

.jawan-article-content li {
  margin: 6px 0;
}

/* Links */
.jawan-article-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Images (standardized) */
.jawan-article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 22px auto;
  border: 1px solid rgba(229,231,235,0.8);
}

/* Optional: captions if you use <figcaption> */
.jawan-article-content figcaption {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  margin-top: -10px;
}
.jawan-article-header {
  padding: 44px 0 34px;
  border-bottom: 1px solid rgba(229,231,235,.9);
  background: rgba(217,238,251,.45);
  box-shadow: none; /* ensure no shadow */
}
/* =========================================
   FINAL OVERRIDES — Article heading band
   Match Clinical Facts (brand-900 + brand-100)
   ========================================= */

.jawan-article-header{
  background: var(--brand-900) !important;
  border-bottom: 1px solid rgba(255,255,255,.12) !important;
}

/* Title + meta in the band */
.jawan-article-header .jawan-h1{
  color: #ffffff !important;
}

.jawan-article-header .jawan-post-meta{
  color: var(--brand-100) !important;
  opacity: .95;
}

/* Optional: if your H1 uses the serif class and you want it white too */
.jawan-article-header .jawan-serif{
  color: #ffffff !important;
}
/* ============================
   Article title — plain editorial
   ============================ */

.jawan-article{
  padding: 0 0 96px;
}

/* No background, no border, no box */
.jawan-article-top{
  padding: 40px 0 12px;
  background: transparent !important;
  border: 0 !important;
}

/* Headline */
.jawan-article-title{
  margin: 0;
  text-align: left;
  color: var(--brand-900) !important;
  letter-spacing: -0.035em;
}

@media (min-width: 900px){
  .jawan-article-title{
    font-size: 64px;
    line-height: 1.03;
  }
}

@media (max-width: 899px){
  .jawan-article-title{
    font-size: 40px;
    line-height: 1.12;
  }
}

/* Date */
.jawan-article-date{
  text-align: left;
  margin-top: 14px;
  color: var(--muted);
}
.jawan-article-hero{
  margin-top: 28px;
}

.jawan-article-content{
  margin-top: 32px;
}
/* ============================
   Article: remove headline “card” + Seeds-style lede image
   ============================ */

.jawan-article{
  padding: 0 0 96px;
}

/* Ensure the title area is NOT a card */
.jawan-article-top,
.jawan-article-top .jawan-container,
.jawan-article-top .jawan-article-top-inner{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Reading width (headline + image match body line-length) */
.jawan-article-top-inner{
  max-width: 820px;
  margin: 0 auto;
  padding: 10px 0 12px;
  text-align: left;
}

/* Headline */
.jawan-article-title{
  margin: 0;
  color: var(--brand-900) !important;
  letter-spacing: -0.035em;
}

@media (min-width: 900px){
  .jawan-article-title{ font-size: 64px; line-height: 1.03; }
}
@media (max-width: 899px){
  .jawan-article-title{ font-size: 40px; line-height: 1.12; }
}

/* Meta */
.jawan-article-date{
  margin-top: 14px;
  color: var(--muted);
}

/* Featured image directly under headline, same width */
.jawan-article-lede-image{
  margin-top: 22px;
  border: 0;
  box-shadow: none;
}

.jawan-article-lede-image img{
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(229,231,235,.8);
}

/* Body matches the same reading width */
.jawan-article-content{
  max-width: 820px;
  margin: 28px auto 0;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
}
/* ============================
   Article author line
   ============================ */

.jawan-article-author{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
}
.jawan-article-author{
  opacity: .85;
  font-weight: 500;
}
/* ============================
   Article links — Clinical Facts blue
   ============================ */

.jawan-article-content a,
.jawan-article-author a,
.jawan-article-date a{
  color: var(--brand-900) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s ease, text-decoration-color .15s ease;
}

.jawan-article-content a:hover,
.jawan-article-author a:hover,
.jawan-article-date a:hover{
  color: var(--brand-700) !important;
  text-decoration-color: var(--brand-700);
}
/* JAWAN Article content: make bolds more bold (scoped, safe) */
.jawan-article-content b,
.jawan-article-content strong{
  font-weight: 800; /* try 700–900 depending on your font */
}

/* If your body copy is very light (300), you may also want this */
.jawan-article-content{
  font-weight: 300;
}

/* Optional: slightly deepen bold color for contrast (still tasteful) */
.jawan-article-content b,
.jawan-article-content strong{
  color: rgba(17,24,39,.98);
}
/* Ensure links keep brand color even when bolded */
.jawan-article-content a,
.jawan-article-content a strong,
.jawan-article-content a b{
  color: var(--brand-900) !important;
}

/* Hover state for bold links too */
.jawan-article-content a:hover,
.jawan-article-content a:hover strong,
.jawan-article-content a:hover b{
  color: var(--brand-700) !important;
}
