body {
  margin: 0;
  font-family: 'Poppins', 'Roboto Condensed', Arial, sans-serif;
  background: #ffffff;
  color: #222;
}

header {
  background: #4DACBB;
  color: white;
  padding: 20px 0;
}

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

html, body {
  user-select: none;          
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;

  pointer-events: auto;        
  -webkit-touch-callout: none;    
}

body {
  -webkit-user-drag: none;        
  -moz-user-drag: none;
  -ms-user-drag: none;
}

button {
  font-family: 'Poppins', sans-serif;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 15px;
}

h1.logo {
  font-size: 45px;
  font-family: 'Caveat', cursive;
  margin: 0;
}

.tagline {
  font-size: 14px;
  color: #fff;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.search-bar input,
.search-bar select,
.search-bar button {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.search-bar input,
.search-bar select {
  flex: 1;
}

.search-bar select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23222' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 35px; /* Give space for arrow */
}

.search-bar button {
  background: #fc4e1e;
  color: white;
  cursor: pointer;
}

section.content {
  padding: 40px 15px;
  background: #fff;
}

section.content h2,
section.content .subtitle {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

section.content h1 {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

h2 {
  margin: 0 0 5px;
  font-size: 22px;
}

span.subtitle {
  color: #666;
  font-size: 16px;
  margin-top: 10px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  border: 1px dashed #c7dcff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
  background: white;
  text-decoration: none;
}

.card-border {
  border: none;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
  background: #EFFDF4;
  text-decoration: none;
}

.card:hover {
  background: #4DACBB;
}

.card b {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #000;
  transition: 0.3s;
}

.card small {
  color: #4DACBB;
  font-size: 13px;
  transition: 0.3s;
}

/* Hover text color change */
.card:hover b,
.card:hover small {
  color: white;
}

/* ICON CIRCLE STYLING */
.icon-circle {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 1px dashed #4DACBB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0;
}

/* Keep icon circle white even on hover */
.card:hover .icon-circle {
  background: white;
}


.trust-section {
  max-width: 900px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background: #fff;
  padding: 0 20px; /* ✅ Left & Right Padding */
}


.trust-toggle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px solid #eee;
}

.trust-icon {
  color: #fff;
  padding-left: 5px;
  margin-right: 10px;
}

#toggle-icon {
  font-size: 24px;
  color: #007bff;
}

.trust-content {
  display: none;
  padding: 20px 25px;
}

.trust-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-text {
  flex: 1;
  min-width: 250px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.trust-list {
  flex: 1;
  min-width: 250px;
  list-style: none;
  padding-left: 0;
  font-size: 16px;
}

.trust-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #333;
  user-select: text;
}

.trust-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #4DACBB;
  font-weight: bold;
  user-select: none;
}


.product-section {
  max-width: 950px;
  margin: 0 auto;
  padding: 20px;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 15px;
  padding-top: 0px;
  padding-bottom: 20px;
  background: #fff;
  margin-bottom: 30px;
}

.rank {
  background-color: #E9E9E9;
  color: #111;
  font-weight: bold;
  padding: 6px 14px;
  font-size: 16px;
  border-top-left-radius: 13px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  display: inline-block;
  margin-right: 5px;
}

.product-rank {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.badge {
  background-color: #FFCE00;
  color: #111;
  font-weight: 700;
  padding: 6px 18px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 15px;
  line-height: 1.2;
  display: inline-block;
}

.product-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.product-image img {
  width: 200px;
  height: auto;
  padding: 5px;
}

.product-details {
  flex: 1 1 250px;
}

.product-details h3 {
  margin-bottom: 8px;
  font-size: 17px;
  margin-top: 0px;
}

.features {
  list-style: none;
  padding-left: 0;
  font-size: 15px;
  line-height: 1.7;
}

.features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}

.features li::before {
  content: "\2714"; /* Unicode for ✔ */
  position: absolute;
  left: 0;
  top: 0;
  color: #1e8c2f; /* dark green */
  font-weight: bold;
  font-size: 16px;
}

.product-main {
  align-items: center; /* center all children vertically */
}

.product-rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 10px 0px;
  background-color: #F7F8F9;
  border-radius: 12px;
  padding-right: 0px;
  margin-top: -15px;
}

.product-rating {
  text-align: center;
  min-width: 100px;
}

.product-rating .rating-score {
  font-size: 22px;
  font-weight: bold;
  display: block;
}

.product-rating .stars {
  color: #FF9800;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 3px;
}

.stars::before {
  content: "★★★★★";
  color: #FFA500; /* or gold */
  font-size: 18px;
  letter-spacing: 1px;
  user-select: none;   /* ❌ prevent copy */
  -webkit-user-select: none;
}

.product-rating .reviews {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
}

.product-cta {
  position: relative;
  text-align: center;
  min-width: 150px;
  padding-top: 10px;
  padding-right: 20px;
  padding-left: 20px;
}

.discount {
  position: absolute;
  top: -10px;
  right: -10px;
  background: orange;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 13px;
  border-radius: 3px;
}

/* Ribbon Style */

.ribbon-wrapper {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
}

.ribbon {
  background-color: #FFC530;
  color: #111;
  font-weight: bold;
  padding: 6px 12px;
  font-size: 15px;
  margin-top: -40px;
  position: relative;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ribbon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
  height: 0;
  border-top: 10px solid #d1a300;     /* triangle color */
  border-right: 10px solid transparent;
}


/* CTA Buttons */
.shop-btn {
  background-color: #28a745;
  color: #fff;
  font-weight: bold;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 80%;
  line-height: 1.5;
}

.watch-video-btn {
  background-color: #0056ff;
  color: #fff;
  font-weight: bold;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  width: 80%;
  line-height: 1.5;
}

/* Text Below */
.limited-supply {
  margin-top: 10px;
  color: #333;
  font-size: 15px;
}


.supplements-heading-section {
  padding: 40px 20px 20px;
  background-color: #ffffff;
  text-align: center;
  padding-top: 50px;
}


.supplements-heading-container {
  max-width: 980px;
  margin: 0 auto;
}

.supplements-heading-box h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin: 0;
  text-align: center;
}

.supplements-heading-box h1 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin: 0;
  text-align: center;
}


.minus-margin {
  margin-top: -40px;
}

.minus-margin-big {
  margin-top: -60px;
}

.minus-margin-low {
  margin-top: -20px;
}

.margin-top-small {
  margin-top: 20px;
}

.margin-top-medium {
  margin-top: 40px;
}

.margin-top-big {
  margin-top: 60px;
}


.supplement-showcase {
  padding: 20px 20px;
  background-color: #ffffff;
}

.supplement-container {
  max-width: 980px;
  margin: 0 auto;
}

.supplement-intro h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.supplement-description {
  text-align: center;
  margin-bottom: 30px;
}

.supplement-description p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 15px;
}

.supplement-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.supplement-item {
  flex: 1 1 calc(33.333% - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100%;
}

.supplement-item a img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.supplement-item p {
  margin-top: 20px;
  font-size: 18px;
}

.supplement-item p a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  background-color: #ffffff;
  padding: 2px 6px;
  line-height: 2;
  border-radius: 4px;
}

.supplement-toggle-section {
  max-width: 880px;
  margin: 40px auto;
  padding: 20px;
}

.supplement-toggle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1f9ff;
  padding: 20px 25px;
  border-radius: 10px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.supplement-toggle-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill-icon {
  font-size: 24px;
}

.supplement-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.supplement-icon {
  font-size: 26px;
  font-weight: bold;
  color: #007bff;
}

.supplement-toggle-body {
  display: none;
  padding: 20px 25px;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.supplement-toggle-body ul {
  padding-left: 20px;
}

.supplement-toggle-body li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.supplement-toggle-body a {
  color: #007bff;
  text-decoration: none;
}

.supplement-toggle-body a:hover {
  text-decoration: underline;
}


.site-footer {
  background-color: #f5f5f5;
  padding: 30px 15px;
  text-align: center;
  margin-top: 300px;
  border-top: 1px solid #ddd;
}

.footer-container {
  max-width: 960px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-links li a {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 500;
}

.footer-links li a:hover {
  text-decoration: #f62525 underline;
}

.footer-copy {
  font-size: 16px;
  color: #1f1f1f;
}

.footer-copy a:hover {
  text-decoration: #f62525 underline;
}

/* Articles CSS Starts Here */
.divider-section {
  width: 100%;
  padding: 20px 0 40px 0;
  background: #ffffff; /* Optional background */
}

.divider-section-h2 {
  width: 100%;
  padding: 0px 0 50px 0;
  background: #ffffff; /* Optional background */
}

/* Container */
.divider-section .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Divider wrapper (for center align) */
.divider-wrapper {
  display: flex;
  justify-content: center;
}

/* Divider line */
.divider-line {
  height: 1px;
  width: 65%;
  background-color: #0000002e; /* Change color here */
}

/* Supplement Buyer Guide Content CSS */
.supplement-guide-section {
  padding: 20px 20px;
  background-color: #fff;
}

.supplement-guide-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.content-box {
  text-align: left;
}

.content-box h1 {
  font-size: 32px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.content-box h2 {
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.content-box h3 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.content-box p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.content-box ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.content-box ul li {
  font-size: 18px;
  margin-bottom: 8px;
}

.explore-supplements {
  text-decoration: none;
}

.explore-supplements:hover {
  color: #f62525;
  border-bottom: 2px solid #f62525;
  padding-bottom: 1px;
}

/* FAQ Section CSS */
.faq-section {
  width: 100%;
  background: linear-gradient(to right, #0070c0, #00b2cc);
  padding: 60px 20px;
  padding-bottom: 100px;
  box-sizing: border-box;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #0b0b0b;
}

.faq-container h3 {
  font-size: 20px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #dcdcdc;
}

.faq-question {
  position: relative;
  background: #f8f8f8;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  padding: 15px 40px 15px 15px; /* add right padding to make space for icon */
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  word-break: break-word;
}

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  transition: 0.3s ease;
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #f0f8ff;
  border-radius: 5px;
  margin-top: 5px;
  color: #333;
  font-size: 15px;
}



.medically-reviewed-section {
  padding: 20px;
  margin-top: 0px;
  margin-bottom: -15px;
  background-color: #fff;
}

.container-900 {
  max-width: 900px;
  margin: auto;
  padding: 0 15px;
}

.reviewed-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 3px;
}

.text-info {
  flex: 1;
  min-width: 240px;
}

.name {
  margin: 0;
  font-size: 16px;
  color: #111;
  font-weight: 700;
}

.details {
  margin-top: 2px;
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 5px;
}

.medically-reviewed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #007AC8;
  line-height: 1;
}

.badge-icon-svg {
  width: 21px;
  height: 21px;
  display: inline-block;
  vertical-align: middle;
}

.sep {
  color: #ccc;
}

/* Author Divider CSS Starts Here */
.author-divider-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5px 0 5px 0;
  background: #ffffff; /* Optional background */
}

.author-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

.author-divider-wrapper {
  display: flex;
  justify-content: flex-start; /* Ensure line aligns left */
}

.author-divider-line {
  height: 1px;
  width: 100%; /* You can adjust this if needed */
  background-color: #00000028; /* Light black */
}


/* Product Explainer CSS */
/* Product Explainer CSS */
.product-explainer {
  max-width: 930px;
  margin: 40px auto 0;
  padding: 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.product-explainer h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.product-explainer p {
  margin-bottom: 12px;
}

.pros-cons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 24px;
}

.pros, .cons {
  flex: 1 1 0%;
  min-width: 0;
}

.pros h4, .cons h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #111;
  font-weight: 700;
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros li, .cons li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

/* Check icon */
.pros li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
  font-size: 16px;
  line-height: 1;
}

/* Cross icon */
.cons li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: red;
  font-size: 16px;
  line-height: 1;
}


/* Best Supplements Headers Css */
/* Base Header */
.supplements-header {
  background: #4DACBB;
  padding: 10px 0;
}

.supplements-header-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo Image */
.supplements-logo-img {
  width: 300px;
  max-width: 100%;
  height: auto;
}

/* Hamburger (Mobile only) */
.supplements-hamburger {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  margin-left: auto;
}

/* Search Bar Block */
.supplements-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.supplements-search-bar input,
.supplements-search-bar select,
.supplements-search-bar button {
  padding: 6px 10px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
}

.supplements-search-bar input {
  flex: 1;
  min-width: 160px;
}

.supplements-search-bar select {
  background: white;
  color: #151515;
  width: 100px;
  cursor: pointer;
}

.supplements-search-bar button {
  background: #f23e0c;
  color: white;
  cursor: pointer;
}


.kicker{
  display:flex; flex-wrap:wrap; gap:8px; margin:.75rem 0 1rem 0;
}
.kicker a{
  display:inline-block; padding:6px 10px; border:1px solid var(--line);
  border-radius:10px; background:#fff; line-height:1.3;
}

/* Make anchor targets not hide behind sticky headers (if any) */
[id]{ scroll-margin-top: 80px; }

/* Lists */
ul{ padding-left:1.15rem }
ul ul{ margin:.4rem 0 }

/* ===== Tables (Desktop default) ===== */
table{ width:100%; border-collapse:collapse; }
th,td{ border:1px solid var(--line); padding:8px; vertical-align:top }
th{ background:#f6f8ff; text-align:left; }















































/* 991px for laptops reduce container width, spacing */  
@media (max-width: 991px) {
  .trust-section {
    margin-right: 30px;
    margin-left: 30px;
  }
}


















/* 965px  product-section fix for laptops */  
@media (max-width: 965px) {

.product-rank {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.product-image img {
  width: 150px;
  height: auto;
}

.product-details {
  flex: 1 1 200px;
}

.product-rating-wrapper {
  min-width: 120px;
  padding: 10px 0px;
}

.product-rating .rating-score {
  font-size: 18px;
}

.product-rating .stars {
  color: #FF9800;
  font-size: 16px;
  line-height: 1.2;
  margin-top: 3px;
}

.stars::before {
  content: "★★★★★";
  color: #FFA500; /* or gold */
  font-size: 16px;
  letter-spacing: 1px;
  user-select: none;   /* ❌ prevent copy */
  -webkit-user-select: none;
}

.product-cta {
  position: relative;
  text-align: center;
  min-width: 120px;
}

.discount {
  position: absolute;
  top: -10px;
  right: -10px;
  background: orange;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 13px;
  border-radius: 3px;
}
}












/* 828px MIN Width 828 to 965 width  product-section fix for laptops */  
@media (min-width: 828px) {

.product-rank {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.product-image img {
  width: 150px;
  height: auto;
}

.product-details {
  flex: 1 1 200px;
}

.product-rating-wrapper {
  min-width: 120px;
  padding: 10px 0px;
}

.product-rating .rating-score {
  font-size: 18px;
}

.product-rating .stars {
  color: #FF9800;
  font-size: 16px;
  line-height: 1.2;
  margin-top: 3px;
}

.stars::before {
  content: "★★★★★";
  color: #FFA500; /* or gold */
  font-size: 16px;
  letter-spacing: 1px;
  user-select: none;   /* ❌ prevent copy */
  -webkit-user-select: none;
}

.product-cta {
  position: relative;
  text-align: center;
  min-width: 120px;
}

.discount {
  position: absolute;
  top: -10px;
  right: -10px;
  background: orange;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 13px;
  border-radius: 3px;
}
}












/* 965px  product-section fix for laptops */  
@media (max-width: 965px) {

.product-rank {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.product-image img {
  width: 150px;
  height: auto;
}

.product-details {
  flex: 1 1 200px;
}

.product-rating-wrapper {
  min-width: 120px;
  padding: 10px 0px;
}

.product-rating .rating-score {
  font-size: 18px;
}

.product-rating .stars {
  color: #FF9800;
  font-size: 16px;
  line-height: 1.2;
  margin-top: 3px;
}

.stars::before {
  content: "★★★★★";
  color: #FFA500; /* or gold */
  font-size: 16px;
  letter-spacing: 1px;
  user-select: none;   /* ❌ prevent copy */
  -webkit-user-select: none;
}

.product-cta {
  position: relative;
  text-align: center;
  min-width: 120px;
}

.discount {
  position: absolute;
  top: -10px;
  right: -10px;
  background: orange;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 13px;
  border-radius: 3px;
}
}
















/* 🔧 Tablet (768px and below till 480px make 2-columns to 1-column, reduce padding) */
@media (max-width: 768px) {
  h1.logo {
    font-size: 32px;
  }

  .search-bar {
    flex-direction: column;
    align-items: stretch;
    padding-right: 20px;
  }

  .search-bar input,
  .search-bar select,
  .search-bar button {
    width: 100%;
  }

  .icon-circle {
    width: 100px;
    height: 100px;
  }

  .card img {
    width: 90px;
    height: 90px;
  }

  .trust-columns { /* trust section responsive fix for tab and mobile */
    flex-direction: column;
  }

  .product-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-rank {
    justify-content: flex-start;
    text-align: left;
  }

  .product-image,
  .product-details,
  .product-rating,
  .product-cta {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .product-details h3,
  .features {
    text-align: center;
  }

  .product-rating-wrapper {
  padding-right: 0px;
  margin-top: 0px;
}

.product-image img {
  width: 250px;
  height: auto;
}

.product-details h3 {
  margin-bottom: 8px;
  font-size: 22px;
  margin-top: 0px;
}

.features {
  list-style: none;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: center; /* center all items */
}

.features li {
  display: flex;
  align-items: flex-start; /* 👈 fix here */
  gap: 10px;
  margin-bottom: 12px;
  font-size: 17px;
  color: #000;
  max-width: 90%;           /* optional: prevent breaking */
  text-align: left;         /* optional: tighter align */
}

.features li::before {
  content: "✔";
  font-size: 18px;
  color: #1e8c2f;
  font-weight: bold;
  line-height: 1.4;          /* fix vertical alignment */
  margin-top: 3px;           /* small nudge to match text */
}


.product-main {
  align-items: center; /* center all children vertically */
}

.product-rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 10px 0px;
  background-color: #F7F8F9;
  border-radius: 12px;
  padding-right: 0px;
  margin-top: -15px;
}

.product-rating {
  text-align: center;
  min-width: 100px;
}

.product-rating .rating-score {
  font-size: 22px;
  font-weight: bold;
  display: block;
}

.product-rating .stars {
  color: #FF9800;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 3px;
}

.stars::before {
  content: "★★★★★";
  color: #FFA500; /* or gold */
  font-size: 18px;
  letter-spacing: 1px;
  user-select: none;   /* ❌ prevent copy */
  -webkit-user-select: none;
}

.product-rating .reviews {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
}

.product-details h3 {
    font-size: 28px; 
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0px;
    text-align: center;
  }

.product-cta {
  position: relative;
  text-align: center;
  min-width: 150px;
  padding-top: 10px;
  padding-right: 20px;
  padding-left: 20px;
}

.discount {
  position: absolute;
  top: -10px;
  right: -10px;
  background: orange;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 13px;
  border-radius: 3px;
}

/* Ribbon Style */

.ribbon-wrapper {
    position: absolute;
    top: 0;       
    right: -10px;
    z-index: 10;
  }

.ribbon {
    background-color: #FFC530;
    color: #111;
    font-weight: bold;
    padding: 6px 12px;
    font-size: 15px;
    position: relative;
    margin-top: -640px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

.ribbon::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid #d1a300;
    border-right: 10px solid transparent;
  }


/* CTA Buttons */
.shop-btn {
  background-color: #28a745;
  color: #fff;
  font-weight: bold;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 50%;
  line-height: 1.5;
}

.watch-video-btn {
  background-color: #0056ff;
  color: #fff;
  font-weight: bold;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 50%;
  line-height: 1.5;
}

/* Text Below */
.limited-supply {
  margin-top: 10px;
  color: #333;
  font-size: 15px;
}

.supplements-heading-box h2 {
    font-size: 32px;
  }

.supplements-heading-box h1 {
    font-size: 32px;
  }
  
  .supplement-item {
    flex: 1 1 calc(33.333% - 20px);
  }

  .supplement-intro h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.supplement-item p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}
.supplement-icon {
  font-size: 20px;
  font-weight: bold;
  color: #007bff;
}

/* Supplement Buyer Guide CSS */
.content-box h2 {
    font-size: 24px;
  }

  .content-box h3 {
    font-size: 18px;
  }

  .content-box p,
  .content-box ul li {
    font-size: 16px;
  }

    .product-explainer {
    font-size: 14px;
  }

  .product-explainer h3 {
    font-size: 18px;
  }

  .pros h4, .cons h4 {
    font-size: 16px;
  }

  .pros li, .cons li {
    font-size: 14px;
  }

  .pros-cons-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .pros, .cons {
    width: 100%;
    flex: 1 1 100%;
  }

  .supplements-header-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .supplements-hamburger {
    display: block;
  }

  nav#supplementsMobileMenu {
    display: none;
    width: 100%;
    margin-top: 10px;
  }

  nav#supplementsMobileMenu.active {
    display: block;
  }

  .supplements-search-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .supplements-search-bar input,
  .supplements-search-bar select,
  .supplements-search-bar button {
    width: 100%;
  }
  .supplements-logo-img {
  width: 300px;
  max-width: 90%;
  height: auto;
  margin-top: 3px;
}

}
















@media (max-width: 720px){
  /* hide table header accessibly, and convert rows to cards */
  #notice-at-collection + table thead{
    border:0; clip:rect(0 0 0 0); height:1px; margin:-1px; overflow:hidden;
    padding:0; position:absolute; width:1px;
  }
  #notice-at-collection + table,
  #notice-at-collection + table tbody,
  #notice-at-collection + table tr,
  #notice-at-collection + table td{
    display:block; width:100%;
  }
  #notice-at-collection + table{
    border:0;
  }
  #notice-at-collection + table tr{
    border:1px solid var(--line);
    border-radius:12px;
    background:#fff;
    margin:12px 0;
    overflow:hidden;
  }
  #notice-at-collection + table td{
    border:0;
    border-bottom:1px solid var(--line);
    padding:10px 12px;
    display:flex; gap:10px;
  }
  #notice-at-collection + table td:last-child{
    border-bottom:0;
  }
  /* Labels for each column (no HTML changes needed) */
  #notice-at-collection + table td::before{
    content:""; flex:0 0 44%; font-weight:600; color:var(--muted);
  }
  #notice-at-collection + table td:nth-child(1)::before{ content:"Category"; }
  #notice-at-collection + table td:nth-child(2)::before{ content:"Examples"; }
  #notice-at-collection + table td:nth-child(3)::before{ content:"Sources"; }
  #notice-at-collection + table td:nth-child(4)::before{ content:"Purpose"; }
  #notice-at-collection + table td:nth-child(5)::before{ content:"Disclosed to"; }
  #notice-at-collection + table td:nth-child(6)::before{ content:"Sold?"; }
  #notice-at-collection + table td:nth-child(7)::before{ content:"Shared?"; }
  #notice-at-collection + table td:nth-child(8)::before{ content:"Retention"; }

  /* Kicker links wrap nicely on small screens */
  .kicker{ gap:6px }
  .kicker a{ padding:6px 8px; font-size:.95rem }
}
















/* 📱 Mobile (480px t0 430px and below general mobiles) */
@media (max-width: 480px) {
  h1.logo {
    font-size: 26px;
  }

  .tagline {
    font-size: 12px;
  }

  .search-bar {
    flex-direction: column;
    align-items: stretch;
    padding-right: 20px;
  }

  .search-bar input,
  .search-bar select,
  .search-bar button {
    width: 100%;
    font-size: 13px;
  }

  h2 {
    font-size: 18px;
  }

  span.subtitle {
    font-size: 13px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .icon-circle {
    width: 80px;
    height: 80px;
  }

  .card img {
    width: 70px;
    height: 70px;
  }

  .card b {
    font-size: 14px;
  }

  .card small {
    font-size: 12px;
  }

/* CTA Buttons */
.shop-btn {
  background-color: #28a745;
  color: #fff;
  font-weight: bold;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 70%;
  line-height: 1.5;
}

.watch-video-btn {
  background-color: #0056ff;
  color: #fff;
  font-weight: bold;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 70%;
  line-height: 1.5;
}  
.supplement-item {
    flex: 1 1 100%;
  }

.supplement-intro h3 {
    font-size: 32px;
  }

.supplement-description p {
    font-size: 18px;
  }
  .supplement-intro h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.supplement-item p {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.5;
}
.supplement-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

/* Supplement Buyer Guide CSS */
.content-box h2 {
    font-size: 22px;
  }

  .content-box h3 {
    font-size: 16px;
  }

  .content-box p,
  .content-box ul li {
    font-size: 15px;
  }

/* Author BOX CSS */
  .reviewed-box {
    flex-direction: row;
    align-items: center;
  }

  .text-info {
    min-width: 0;
  }
  .name {
  margin: 0;
  font-size: 14px;
  color: #111;
  font-weight: 700;
}
.profile-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}
.medically-reviewed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #007AC8;
  line-height: 1;
}
.sep {
  color: #ccc;
}
.details {
  margin-top: 2px;
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
}





























/* 430px iPhones most modern phones */
@media (max-width: 430px) {
   .product-details h3 {
    font-size: 25px; /* 👈 yaha size set karo */
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0px;
    text-align: center;
  }
   .name {
  margin: 0;
  font-size: 15px;
  color: #111;
  font-weight: 700;
}
.details {
  margin-top: 2px;
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
}















/* Mobile First - 375px small phones fix */
@media (max-width: 375px) {
  .trust-toggle-header h2 {
    font-size: 14px;
    line-height: 1.3;
  }

  #toggle-icon {
    font-size: 14px;
  }

  .trust-icon {
    font-size: 14px;
    margin-right: 6px;
  }

  .product-details h3 {
    font-size: 20px; 
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0px;
    text-align: center;
  }

  .ribbon {
    margin-top: -690px;
  }

  /* CTA Buttons */
.shop-btn {
  background-color: #28a745;
  color: #fff;
  font-weight: bold;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 90%;
  line-height: 1.5;
}

.watch-video-btn {
  background-color: #0056ff;
  color: #fff;
  font-weight: bold;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 90%;
  line-height: 1.5;
}

.supplements-heading-box h2 {
    font-size: 20px;
  }

  .supplements-heading-box h1 {
    font-size: 20px;
  }

  .supplement-intro h3 {
    font-size: 22px;
  }

.supplement-description p {
    font-size: 18px;
  }
    .name {
  margin: 0;
  font-size: 14px;
  color: #111;
  font-weight: 700;
  margin-bottom: 5px;
}
.details {
  margin-top: 2px;
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
  .supplements-logo-img {
  width: 200px;
  max-width: 90%;
  height: auto;
  margin-top: 3px;
}
}