:root {
  --main-color: #0056b3; /* Updated to Blue for OcuRenew */
  --accent-color: #ffcc00; /* Kept yellow for high-converting CTA buttons */
  --accent-hover: #e6b800;
  --dark-bg: #1a1a1a;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #000000;
  background-color: white;
  line-height: 1.5;
  font-size: 20px;
}

/* Global Heading Overrides with Jost 800 ExtraBold */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 800;
}

strong, b {
  font-weight: 700; /* Jost 700 Bold for highlighted keywords */
}

h2 {
  font-size: 30px;
}

/* Header Styles */
.header {
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .header-container,
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo h2 {
  color: var(--main-color);
  font-weight: 800;
  font-size: 32px;
  margin: 0px;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
  font-size: 22px;
  padding: 0 12px;
}

.nav-links a:hover {
  color: var(--main-color);
}

.newHeadBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

.order-button {
  background-color: var(--accent-color);
  color: black;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 24px;
}

.order-button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  font-weight: 900;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16V4H2V2h3a1 1 0 0 1 1 1v12h12.438l2-8H8V5h13.72a1 1 0 0 1 .97 1.243l-2.5 10a1 1 0 0 1-.97.757H5a1 1 0 0 1-1-1zm2 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm12 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/></svg>');
  margin-left: 5px;
}

.order-button:hover {
  background-color: var(--accent-hover);
}

.max-button-padding {
  padding: 14px 22px;
  font-size: 30px;
}

.mobile-button{
  margin: 0px !important;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 10px 0px 20px 0px;
  max-width: 1600px;
  margin: 0 auto;
  background-color: white;
}

.product-image {
  flex: 1;
  min-width: 350px;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.product-image img{
  height: auto;
}

.product-info {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
}

.product-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 5px;
  color: white;
  background-color: var(--main-color);
  text-align: center;
  margin-top: 0px;
  padding: 10px 0px;
}

.product-description {
  margin-bottom: 5px;
  line-height: 1.5;
  color: #000;
  font-size: 20px;
}

.benefits-list {
  margin-bottom: 2px;
  padding-left: 25px;
  list-style: none;
}

.benefits-lists li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 5px;
  display: flex;
  align-items: flex-start;
  font-size: 20px;
}

.benefits-lists li::before {
  content: '✓';
  color: var(--main-color);
  position: absolute;
  left: -20px;
  font-weight: 800;
}

/* Button Styles */
.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: black;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.cta-button::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16V4H2V2h3a1 1 0 0 1 1 1v12h12.438l2-8H8V5h13.72a1 1 0 0 1 .97 1.243l-2.5 10a1 1 0 0 1-.97.757H5a1 1 0 0 1-1-1zm2 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm12 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/></svg>');
  margin-left: 5px;
}

.cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: black;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.secondary-button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z"/></svg>');
  margin-left: 5px;
}

.secondary-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

/* Certifications Section */
.certifications {
  background-color: white;
  padding: 0 0 40px 0;
  text-align: center;
  color: #333;
}

.certifications h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 800;
}

.certification-badges {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 5px;
  padding: 0 10px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.badge img {
  width: auto;
  height: auto;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 5px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.badge:hover img {
  transform: scale(1.1);
}

.badge-title {
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--main-color);
  font-size: 24px;
  margin-top: 5px;
}

.badge-description {
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  color: #000;
  margin: 10px 0px;
}

/* Product Details Section */
.product-details {
  padding: 0 0 40px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  color: #333;
}

.product-details h2 {
  background-color: var(--main-color);
  color: white;
  text-align: center;
  margin: 0 0 15px 0;
  padding: 20px 0;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 800;
}

.product-details-content {
  max-width: 1200px;
  margin: 0 auto;
}

.product-details-content p {
  font-size: 20px;
  margin: 10px 0px;
}

.product-details-content img{
  height: 300px;
  width: auto;
  margin: auto;
  display: block;
}

/* How It Works Section */
.how-it-works {
  padding: 0 0 40px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  color: #333;
}

.how-it-works h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 20px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: none;
  text-align: center;
  font-weight: 800;
}

.how-it-works-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-it-works-intro {
  margin-bottom: 20px;
  font-size: 20px;
  color: #000;
  text-align: left;
  font-weight: 500;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.how-it-works-step {
  margin-bottom: 10px;
}

.step-title {
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--main-color);
  font-size: 30px;
  display: block;
}

.step-description {
  line-height: 1.6;
  color: #000;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.how-it-works .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: black;
  font-weight: 800;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.how-it-works .cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cta-section {
  text-align: center;
  margin-top: 30px;
}
/* Customer Reviews Section */
.customer-reviews {
  background-color: white;
  padding: 0px 0px 40px 0;
  text-align: center;
}

.customer-reviews h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 800;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.review {
  background-color: white;
  border-radius: 10px;
  border: 1px solid #eee;
  overflow: hidden;
  text-align: left;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4CAF50;
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 700;
}

.verified-badge svg {
  fill: #4CAF50;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.reviewer-image {
  flex-shrink: 0;
}

.reviewer-info h4 {
  margin: 0px;
  color: var(--main-color);
  font-size: 20px;
  font-weight: 800;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating svg, .rating i {
  fill: #FFD700;
  color: #FFD700;
  font-size: 20px;
}

.review-text {
  color: #666;
  line-height: 1.5;
  font-size: 20px;
  margin: 0;
  font-weight: 500;
}

/* --- NEW PRICING LAYOUT CSS --- */
.pricing-container-new {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    flex-wrap: wrap;
    padding: 0 15px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #ddd;
    width: 320px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.best-value-card {
    background: #fdfbf0; /* Light yellow bg for center card */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: scale(1.02);
    z-index: 2;
    border: 1px solid #e0d5a3;
}

.card-top-label {
    background: #fff;
    border: 1px solid #ddd;
    font-weight: 800;
    font-size: 16px;
    padding: 8px 10px;
    text-align: center;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 10;
}

.yellow-top {
    background: #fbe68e;
    border: 1px solid #e0d5a3;
}

.card-sub-label {
    margin-top: 25px; /* Push down because of the absolute top label */
    padding: 12px 10px;
    text-align: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
}

.black-label {
    background: #222;
}

.red-label {
    background: #e53935;
}

.price-lock-banner {
    background: #222;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.date-box {
    background: #e53935;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 800;
}

.card-content-new {
    padding: 20px 15px;
    text-align: center;
}

.bottle-img {
    height: 180px;
    width: auto;
    margin: 10px auto 20px;
    display: block;
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.price-display h2 {
    font-size: 42px;
    margin: 0;
    color: #000;
    font-weight: 800;
}

.price-display span {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin-left: 5px;
}

.discount-pricing {
    color: #e53935;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.strike {
    text-decoration: line-through;
    color: #666;
    margin: 0 5px;
}

.discount-pricing strong {
    font-size: 20px;
}

.save-badge {
    color: #e53935;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.buy-btn-new {
    background: #ffb300;
    color: #000;
    font-size: 24px;
    font-weight: 800;
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 12px 10px;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #d99a00;
    box-shadow: 0 4px 0px #d99a00; /* Solid bottom shadow to match image */
    transition: all 0.2s ease;
}

.buy-btn-new:hover {
    background: #ffc107;
    transform: translateY(2px);
    box-shadow: 0 2px 0px #d99a00;
}

.buy-btn-new i {
    margin-right: 5px;
}

.restore-link {
    display: block;
    color: blue;
    font-weight: 800;
    text-decoration: underline;
    margin-top: 15px;
    font-size: 16px;
}

.shipping-info {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-container-new {
        flex-direction: column;
        align-items: center;
    }
    .best-value-card {
        transform: scale(1);
    }
    .pricing-card {
        width: 100%;
        max-width: 380px;
        margin-bottom: 30px;
    }
}

/* FAQ Section */
.faq-section {
  background: #fff;
  color: #333;
  padding: 0;
  font-size: 20px;
}

.faq-heading {
  background-color: var(--main-color);
  color: #fff;
  margin: 0 0 40px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
}

.faq-questions {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  font-size: 20px;
}

.faq-questions li {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-questions li:hover { background: #f0f8ff; }
.faq-questions li.open .faq-q { font-weight: 800; color: var(--main-color); }
.faq-q::after { content: "+"; float: right; font-weight: 800; }
.faq-questions li.open .faq-q::after { content: "-"; }

.faq-a {
  margin-top: 15px;
  color: #555;
  font-size: 20px;
  line-height: 1.6;
}

.faq-banner {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 25px 30px;
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.faq-banners {
  display: flex;
  align-items: center;
  background: var(--main-color);
  border: 1px solid #ccc;
  padding: 25px 30px;
  max-width: 1200px;
  margin: 40px 20px;
  flex-wrap: wrap;
  margin: auto;
  border-radius: 15px;
}

.banner-image { width: 50%; }
.banner-image img { width: 80%; display: block; height: auto; }

.banner-content { width: 50%; }
.banner-content h3 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
}

.regular-price { font-size: 20px; margin: 0 0 15px 0; color: #fff; }
.regular-price span { text-decoration: line-through; color: #999; }

.bottom-banner {
  flex-direction: column;
  text-align: center;
  gap: 10px;
  max-width: none;
  width: 100%;
  margin: 20px 0 20px 0;
  border: none;
  padding: 0;
}

.bottom-banner h3 {
  background: var(--main-color);
  color: #fff;
  width: 100%;
  padding: 15px 0;
  margin: 0;
  font-size: 40px;
}

.bottom-banner .regular-price.small {
  font-size: 18px;
  margin: 0;
  color: #000;
  font-weight: 800;
}

.bottom-banner .discounted {
  font-size: 25px;
  color: var(--main-color);
  font-weight: 800;
}

.faq-answer-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  font-size: 20px;
}

.faq-answer-block h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: var(--main-color);
}

.answer-subheading { font-weight: 800; margin-top: 25px; margin-bottom: 5px; }

/* Science / Guarantee Block */
.science-section {
  padding: 40px 0;
  background-color: white;
  text-align: center;
  color: #333;
  font-size: 20px;
}

.cert-logos {
  background-color: var(--main-color);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.science-heading {
  font-size: 30px;
  font-weight: 800;
  margin: 40px 0 30px 0;
  text-transform: uppercase;
}

.science-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.science-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 260px;
  text-align: center;
  gap: 10px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}

.step-arrow {
  font-size: 32px;
  font-weight: 800;
  margin: 0 10px;
  align-self: center;
  color: var(--main-color);
}

.guarantee-block {
  background-color: #ffffff;
  padding: 20px 20px;
  margin-top: 40px;
  max-width: 1200px;
  margin: auto;
}

.guarantee-block h3 {
  margin-top: 0;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 800;
  text-align: left;
  color: white;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  flex-wrap: nowrap;
  background-color: var(--main-color);
  border-radius: 10px;
}

.gurantee-blog {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-text { width: 50%; padding: 40px; }

.guarantee-content p {
  margin: 0;
  line-height: 1.6;
  flex: 0 0 70%;
  max-width: 100%;
  margin: auto;
  color: white;
}

.guarantee-content>span,
.guarantee-content img { width: 100%; height: auto; padding: 25px; }

.step-title {
  font-weight: 800;
  font-size: 20px;
  margin: 0;
  margin-bottom: 10px;
  color: var(--main-color);
}

.step-desc { line-height: 1.4; margin: 0; }

/* Benefits Section */
.benefits-section {
  background-color: #f0f8ff; 
  color: #333;
  padding: 0 0 60px 0;
  text-align: left;
}

.benefits-section h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-intro {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  text-align: center;
  color: #444;
}

.benefits-list {
  list-style: none;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.benefit-content { flex: 1; }

.benefit-title {
  font-weight: 800;
  font-size: 20px;
  color: var(--main-color);
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.checkmark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-color);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.checkmark::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  font-weight: 800;
  font-size: 20px;
}

/* Ingredients Section */
.ingredients-section {
  padding: 0;
  background-color: white;
  color: #333;
  max-width: 100%;
  margin: 0 auto;
  font-size: 20px;
}

.ingredients-section h2 {
  background-color: var(--main-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
}

.ingredients-intro {
  margin-bottom: 30px;
  line-height: 1.6;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ingredients-list {
  list-style: none;
  padding: 0 30px 0 30px;
  margin: 0;
  max-width: 1200px;
  margin: auto;
  margin-top: 25px;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.ingredient-number {
  min-width: 48px;
  min-height: 48px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
}

.ingredient-content p { margin: 5px 0 0 0; line-height: 1.6; }

.image-grid-section {
  padding: 0;
  background-color: white;
  text-align: center;
}

.image-grid-section h2 {
  color: rgb(0, 0, 0);
  margin: 0 0 0px 0;
  padding: 20px 0;
  padding-bottom: 0px;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 800;
}

/* Footer CSS */
.footer-section {
  background: #f8f9fa; 
  border-top: 2px solid var(--main-color);
  padding: 30px 20px 50px;
  font-size: 14px;
  color: #000;
}

.footer-disclaimer p {
  margin-bottom: 15px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  text-align: justify;
  padding: 0px 20px;
}

.footer-bottom {
  border: 1px solid var(--main-color);
  border-radius: 20px;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  background-color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--main-color);
  background-color: transparent;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}

.social-icons a:hover {
  transform: scale(1.1);
  color: #ffffff;
  background-color: var(--main-color);
}

.social-icons i{ font-size: 20px; }

.footer-links { margin-bottom: 10px; }
.footer-links a { color: var(--main-color); text-decoration: none; margin: 0 5px; font-weight: 700; }
.footer-links a:hover { text-decoration: underline; }
.footer-copy { font-size: 13px; color: #000; font-weight: 700; }

/* Media Queries / Responsive Rules */
@media (max-width: 900px) {
  .pricing-container { flex-direction: column; align-items: center; }
  .product-card { width: 90%; max-width: 350px; }
  .product-card.best-value { transform: scale(1); }
}

@media (max-width: 768px) {
  .footer-disclaimer p { padding: 0 10px; }
  .footer-bottom { padding: 20px 10px; }
  .social-icons a { padding: 8px; }
  .science-step { flex-direction: column; }
  .step-arrow { display: none; }
  .guarantee-content { flex-direction: column; text-align: center; }
  .benefits-section, .ingredients-section { font-size: 16px; }
  .ingredient-item { flex-direction: column; }
  .ingredient-number { margin-bottom: 10px; }
  
  html, body { overflow-x: hidden; }
  body { font-size: 18px; line-height: 1.5; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 20px; }
  h3 { font-size: 18px; }

  header, section, footer { padding-left: 20px; padding-right: 20px; }
  img, .product-image img { max-width: 100%; height: auto; }
  .product-info, .benefits-content, .ingredients-intro { max-width: 100%; padding-left: 0; padding-right: 0; }
  .certification-badges, .benefits-row, .image-grid-section .image-row { gap: 20px; }
}

.mobile-menu-icon {
  background: none;
  border: none;
  color: var(--main-color) !important;
  font-size: 32px;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-icon { display: block; }
  .header .nav-links { display: none; }
  .header .order-button { display: none; }
  .product-image { min-width: 250px; max-width: 650px; }
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: var(--main-color);
  color: #ffffff;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-sidebar.open { right: 0; }

.sidebar-nav { display: flex; flex-direction: column; gap: 20px; }
.sidebar-nav a { color: #ffffff; text-decoration: none; font-size: 24px; padding: 10px 20px; font-weight: 700; }

.close-btn { background: none; border: none; color: #ffffff; font-size: 32px; position: absolute; top: 20px; right: 20px; cursor: pointer; }

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 250;
}

.sidebar-overlay.show { opacity: 1; visibility: visible; }

@media (max-width: 768px) {
  .hero-section { flex-direction: column; }
  .certification-badges { flex-direction: column; align-items: center; }
  .badge { margin-bottom: 20px; }
  .reviews-container { padding: 0 15px; }
  .review { padding: 15px; }
  .guarantee-block { margin: 0; padding: 0; max-width: 100%; }

  .hero-section, .certification-badges, .product-details-content, .how-it-works-content, .reviews-container, .ingredients-intro, .ingredients-list, .science-steps, .guarantee-content, .benefits-content, .faq-questions, .footer-disclaimer {
    padding-left: 10px;
    padding-right: 10px;
  }
  body { font-size: 16px; }
  .faq-banner { padding-bottom: 20px; }
  .mobile-menu-icon { margin-right: 10px; }
  .hero-section { gap: 5px; }
  .product-description { font-size: 16px; }
  .product-title { font-size: 25px; }
  .benefits-lists li { font-size: 16px; }
  .cta-button { font-size: 16px; margin: auto; }
  .secondary-button { font-size: 16px; margin: auto; }
  .certifications h2 { font-size: 25px; }
  .certification-badges { gap: 10px; }
  .product-details h2 { font-size: 25px; }
  .product-details-content p { font-size: 16px; text-align: justify; }
  .how-it-works h2 { font-size: 25px; }
  .how-it-works-intro { font-size: 16px; text-align: justify; }
  .step-title { font-size: 18px; text-align: justify; }
  .step-description { font-size: 16px; text-align: justify; }
  .how-it-works .cta-button { font-size: 16px; }
  .customer-reviews h2 { font-size: 25px; }
  .review-text { font-size: 18px; }
  .reviewer-info h4 { font-size: 18px; }
  .image-grid-section h2 { font-size: 25px; }
  .ingredients-section h2 { font-size: 25px; }
  .science-heading { font-size: 25px; margin: 20px 0 20px; }
  .guarantee-content img { width: 100%; padding: 5px; }
  .guarantee-content { padding: 10px; }
  .guarantee-text { width: 100%; padding: 10px; }
  .guarantee-block h3 { text-align: center; font-size: 25px; }
  .guarantee-content p { font-size: 18px; text-align: justify; }
  .guarantee-content { border-radius: 0px; }
  .science-section { padding: 20px 0px 5px 0px; }
  .benefits-section h2 { font-size: 25px; }
  .benefits-intro { font-size: 18px; }
  .benefit-title { font-size: 18px; }
  .benefit-desc { font-size: 18px; }
  .benefits-section { padding: 0px 0px 10px 0px; }
  .faq-heading { font-size: 25px; margin: 0 0 20px; }
  .faq-banners { flex-direction: column; padding: 10px; }
  .banner-image { width: 100%; }
  .banner-image img { margin: auto; display: block; }
  .banner-content { width: 100%; }
  .banner-content h3 { text-align: center; font-size: 25px; }
  .order-button { margin: auto; display: block; text-align: center; }
  .faq-answer-block { padding: 20px 10px; }
  .faq-answer-block h3 { margin: 0 0 10px; }
  .bottom-banner h3 { font-size: 25px; }
  .footer-section { padding: 20px 10px; }
}

@media (max-width: 1024px) { .header .header-container, .header-container { padding: 0 16px; } }
@media (max-width: 640px) {
  .header { padding: 12px 0; }
  .header .header-container, .header-container { padding: 0 12px; }
  .nav-links a { padding: 0 8px; }
}
@media (max-width: 480px) {
  .header { padding: 10px 0; }
  .header .header-container, .header-container { padding: 0 10px; }
}

.buying-background {
  background: var(--main-color);
  border-top: 4px solid var(--main-color);
  max-width: 600px;
  top: -1px;
}

.g-arrow {
  position: relative;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  height: 15px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border-top: none !important;
}

.p-4 { padding: 1rem !important; }
@media (max-width: 425px) { .g-arrow { max-width: 350px; } }

.para-privacy-page {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0px 10px;
}

.buy-now-btn-a {
  width: 100%;
  text-decoration: none;
}

