/*========================================================================
   MIND VAULT - UPDATED CSS 
   Strictly matched to the provided index.html structure
========================================================================*/

:root {
  --main-color: #1a4b77; /* MindVault Blue */
  --main-hover: #123759;
  --accent-color: #ffcc00; /* High-converting Yellow */
  --accent-hover: #e6b800;
  --light-bg: #f8fbff;
  --text-dark: #222222;
  --text-gray: #444444;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto Condensed', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 20px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-top: 0;
}

h2 {
  font-size: 32px;
  text-align: center;
  color: var(--main-color);
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.header {
  background-color: #ffffff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  width: 100%;
}

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

.logo h2 {
  color: var(--main-color);
  font-size: 32px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newHeadBox {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 20px;
  padding: 5px 10px;
}

.nav-links a:hover {
  color: var(--main-color);
}

.order-button, .cta-button, .buy-now-btn {
  background-color: var(--accent-color);
  color: #111;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
  text-transform: uppercase;
  text-align: center;
}

.order-button:hover, .cta-button:hover, .buy-now-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
}

.secondary-button {
  background-color: var(--main-color);
  color: #fff;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  transition: all 0.3s;
  margin-left: 10px;
}

.secondary-button:hover {
  background-color: var(--main-hover);
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.product-title {
  font-size: 36px;
  margin: 0;
  color: #ffffff;
  background-color: var(--main-color);
  text-align: center;
  padding: 15px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.product-image img {
  width: 100%;
  height: auto;
  max-width: 450px;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

.product-info {
  flex: 1.2;
  min-width: 320px;
}

.product-description {
  margin-bottom: 20px;
  color: var(--text-gray);
  font-size: 20px;
}

.product-info h3 {
  font-size: 24px;
  color: var(--main-color);
  margin-bottom: 15px;
}

.benefits-lists {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.benefits-lists li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.benefits-lists li::before {
  content: '✓';
  font-weight: 900;
  color: var(--main-color);
  position: absolute;
  left: 0;
  top: 0px;
}

/*--------------------------------------------------------------
# Global Section Styles
--------------------------------------------------------------*/
section {
  padding: 60px 20px;
}

.product-details h2, .how-it-works h2, .ingredients-section h2, .customer-reviews h2, .benefits-section h2, .faq-heading, .image-grid-section h2 {
  background-color: var(--main-color);
  color: #ffffff;
  margin: 0 0 40px 0;
  padding: 20px 10px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Certifications Section
--------------------------------------------------------------*/
.certifications {
  background-color: var(--light-bg);
  text-align: center;
}

.certification-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.badge {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  max-width: 260px;
  flex: 1;
  min-width: 220px;
  text-align: center;
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
}

.badge img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.badge-title {
  color: var(--main-color);
  font-size: 22px;
  margin-bottom: 10px;
}

.badge-description {
  font-size: 16px;
  color: var(--text-gray);
  margin: 0;
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.product-details-content > div {
  flex: 1;
  min-width: 320px;
}

.product-details-content img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.product-details-content p {
  color: var(--text-gray);
  margin-bottom: 20px;
  text-align: justify;
}

/*--------------------------------------------------------------
# How It Works
--------------------------------------------------------------*/
.how-it-works { background-color: var(--light-bg); }
.how-it-works-content { max-width: 1200px; margin: 0 auto; }
.how-it-works-intro { font-size: 22px; text-align: center; margin-bottom: 40px; font-weight: 600; }
.how-it-works-steps { display: flex; flex-direction: column; gap: 20px; }
.how-it-works-step { background: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-left: 5px solid var(--main-color); }
.step-title { color: var(--main-color); font-size: 26px; margin-bottom: 10px; }
.step-description { color: var(--text-gray); margin: 0; }
.step-below-para { font-size: 20px; font-weight: bold; text-align: center; margin-top: 30px; }
.ingredients-highlight { color: var(--main-color); }
.cta-section { text-align: center; margin-top: 40px; }

/*--------------------------------------------------------------
# Customer Reviews
--------------------------------------------------------------*/
.reviews-container { display: flex; flex-direction: column; gap: 25px; max-width: 1000px; margin: 0 auto; }
.review { background: #fff; border: 1px solid #e1eefc; padding: 30px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.reviewer-profile { margin-bottom: 15px; }
.verified-badge { color: #28a745; font-weight: 700; font-size: 16px; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
.reviewer-info h4 { margin: 0 0 5px 0; font-size: 22px; color: var(--main-color); }
.rating { color: #ffcc00; display: flex; gap: 2px; }
.review-text { font-style: italic; color: var(--text-gray); margin: 0; }

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.image-grid-section { background-color: var(--light-bg); }
.pricing-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; max-width: 1200px; margin: 40px auto 0; }
.product-card { background: #fff; border-radius: 15px; overflow: hidden; width: 340px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); border: 2px solid #e1eefc; display: flex; flex-direction: column; transition: transform 0.3s; }
.product-card:hover { transform: translateY(-10px); }
.product-card.best-value { border: 3px solid var(--accent-color); transform: scale(1.05); box-shadow: 0 15px 35px rgba(255,204,0,0.2); z-index: 2; }
.product-card.best-value:hover { transform: scale(1.05) translateY(-10px); }

.header-1x, .header-3x { background-color: #4a7aa8; color: white; padding: 15px; text-align: center; font-weight: bold; font-size: 24px; }
.header-6x { background-color: var(--main-color); color: white; padding: 15px; text-align: center; font-weight: bold; font-size: 24px; }
.supply-days { display: block; font-size: 14px; font-weight: 400; text-transform: uppercase; margin-top: 5px; }

.card-content { padding: 30px 20px; text-align: center; flex: 1; display: flex; flex-direction: column; align-items: center; }
.product-image-new { max-width: 80%; height: auto; margin: 0 auto 20px; }
.price-section { display: flex; align-items: baseline; justify-content: center; margin-bottom: 15px; width: 100%; }
.current-price { font-size: 50px; font-weight: 900; color: var(--text-dark); line-height: 1; }
.per-bottle { font-size: 20px; color: var(--text-gray); margin-left: 5px; }

.ebooks { background-color: #fff9e6; color: #d97706; border: 1px dashed #d97706; padding: 8px; border-radius: 5px; font-weight: 700; margin-bottom: 10px; font-size: 16px; width: 100%; }
.shipping { color: #28a745; font-weight: 700; margin-bottom: 15px; font-size: 18px; }
.buy-now-btn-a { width: 100%; text-decoration: none; display: block; margin-bottom: 15px; }
.buy-now-btn { width: 100%; border-radius: 50px; padding: 15px; font-size: 22px; }

.total-price { color: var(--text-gray); font-weight: 600; margin-bottom: 15px; }
.original-total { text-decoration: line-through; margin-right: 5px; color: #999; }
.discounted-total { color: var(--text-dark); font-size: 22px; font-weight: 700; }
.payment-methods { margin-top: auto; }
.payment-methods img { max-width: 100%; height: auto; }

/*--------------------------------------------------------------
# Ingredients Section
--------------------------------------------------------------*/
.ingredients-intro { text-align: center; max-width: 900px; margin: 0 auto 40px; color: var(--text-gray); }
.ingredients-list { max-width: 1000px; margin: 0 auto; list-style: none; padding: 0; }
.ingredient-item { display: flex; gap: 20px; background: var(--light-bg); padding: 25px; border-radius: 12px; margin-bottom: 20px; align-items: flex-start; }
.ingredient-number { background: var(--main-color); color: #fff; min-width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; flex-shrink: 0; }
.ingredient-content strong { color: var(--main-color); font-size: 24px; display: block; margin-bottom: 10px; }
.ingredient-content p { margin: 0; color: var(--text-gray); }

/*--------------------------------------------------------------
# Science & Guarantee
--------------------------------------------------------------*/
.science-section { background-color: #fff; text-align: center; }
.science-heading { font-size: 36px; color: var(--main-color); margin-bottom: 50px; text-transform: uppercase; }
.science-steps { display: flex; justify-content: center; align-items: flex-start; gap: 30px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto 50px; }
.science-step { flex: 1; min-width: 250px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-number { width: 50px; height: 50px; background: var(--main-color); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; margin-bottom: 15px; }
.step-title { display: block; font-size: 22px; color: var(--main-color); margin-bottom: 10px; font-weight: 700; }
.step-arrow { color: #ccc; font-size: 30px; margin-top: 10px; font-weight: bold; }

.guarantee-block { max-width: 1000px; margin: 0 auto; }
.guarantee-content { display: flex; align-items: center; background: var(--main-color); color: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.gurantee-blog { width: 40%; background: #123759; padding: 30px; display: flex; justify-content: center; align-items: center; }
.gurantee-blog img { max-width: 100%; height: auto; filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2)); }
.guarantee-text { width: 60%; padding: 40px; text-align: left; }
.guarantee-text h3 { color: var(--accent-color); font-size: 28px; margin-bottom: 15px; }
.guarantee-text p { font-size: 18px; margin: 0; line-height: 1.6; }

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
.benefits-section { background: var(--light-bg); }
.benefits-intro { text-align: center; max-width: 900px; margin: 0 auto 40px; color: var(--text-gray); }
.benefits-list { max-width: 1000px; margin: 0 auto; list-style: none; padding: 0; }
.benefit-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 25px; background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.checkmark { color: var(--main-color); font-size: 24px; margin-top: 2px; font-weight: bold; }
.benefit-title { color: var(--main-color); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.benefit-desc { margin: 0; color: var(--text-gray); }

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-questions { list-style: none; padding: 0; max-width: 1000px; margin: 0 auto; }
.faq-questions li { padding: 20px; border: 1px solid #e1eefc; margin-bottom: 15px; border-radius: 8px; cursor: pointer; transition: background 0.3s; }
.faq-questions li:hover { background: var(--light-bg); }
.faq-q { font-size: 22px; font-weight: 700; color: var(--main-color); display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: "+"; font-size: 26px; font-weight: 900; }
.faq-questions li.open .faq-q::after { content: "-"; }
.faq-a { margin-top: 15px; color: var(--text-gray); padding-top: 15px; border-top: 1px solid #eee; }

.faq-banners { display: flex; align-items: center; background: var(--main-color); border-radius: 15px; padding: 30px; max-width: 1000px; margin: 40px auto; color: #fff; gap: 30px; }
.banner-image { width: 40%; text-align: center; }
.banner-image img { max-width: 100%; height: auto; }
.banner-content { width: 60%; }
.banner-content h3 { font-size: 32px; margin-bottom: 20px; color: #fff; }

.faq-answer-block { background: #fff9e6; border-left: 5px solid var(--accent-color); padding: 30px; border-radius: 0 10px 10px 0; margin-bottom: 40px; max-width: 1000px; margin: 0 auto 40px auto; }
.faq-answer-block h3 { color: #d97706; margin-bottom: 15px; }
.answer-subheading { font-weight: 700; margin-top: 20px; }

.bottom-banner { text-align: center; padding: 40px 20px; background: var(--light-bg); border-radius: 15px; border: 2px dashed #ccc; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.bottom-banner h3 { color: var(--main-color); font-size: 30px; margin-bottom: 20px; }
.bottom-banner .regular-price { font-size: 20px; color: #666; margin-bottom: 10px; }
.bottom-banner .regular-price span { text-decoration: line-through; }
.bottom-banner .discounted { display: block; font-size: 28px; color: #28a745; font-weight: 900; margin-bottom: 20px; }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-section { background: #111; color: #aaa; padding: 50px 20px 20px; font-size: 16px; }
.footer-disclaimer p { max-width: 1000px; margin: 0 auto 15px; line-height: 1.5; text-align: justify; }
.footer-bottom { border-top: 1px solid #333; max-width: 1000px; margin: 30px auto 0; padding-top: 20px; text-align: center; }
.social-icons { margin-bottom: 20px; }
.social-icons a { color: #aaa; font-size: 24px; margin: 0 10px; transition: color 0.3s; text-decoration: none;}
.social-icons a:hover { color: var(--accent-color); }
.footer-links { margin-bottom: 15px; }
.footer-links a { color: #ddd; text-decoration: none; margin: 0 10px; }
.footer-links a:hover { color: var(--accent-color); }

/*--------------------------------------------------------------
# Mobile Sidebar (Functional)
--------------------------------------------------------------*/
.mobile-menu-icon { background: none; border: none; color: var(--main-color); font-size: 32px; cursor: pointer; display: none; }
.mobile-sidebar { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background-color: var(--main-color); padding: 60px 20px; transition: right 0.3s ease; z-index: 1000; box-shadow: -5px 0 15px rgba(0,0,0,0.2); }
.mobile-sidebar.open { right: 0; }
.sidebar-nav { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.sidebar-nav a { color: #fff; text-decoration: none; font-size: 22px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.close-btn { background: none; border: none; color: #fff; font-size: 40px; position: absolute; top: 15px; right: 20px; cursor: pointer; }
.sidebar-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 999; }
.sidebar-overlay.show { opacity: 1; visibility: visible; }
.mobile-button { width: 100%; margin-top: 20px; text-align: center; display: block; }

/*--------------------------------------------------------------
# Responsive Design (Media Queries)
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  .product-card.best-value { transform: scale(1); }
  .product-card.best-value:hover { transform: translateY(-10px); }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .newHeadBox .order-button { display: none; }
  .mobile-menu-icon { display: block; }
  
  .hero-section { flex-direction: column; text-align: center; padding: 20px 15px; }
  .product-title { font-size: 28px; }
  .benefits-lists li { text-align: left; }
  .secondary-button { margin-left: 0; margin-top: 15px; }
  
  .product-details-content { flex-direction: column; text-align: center; }
  .product-details-content > div { width: 100%; }
  .product-details-content p { text-align: center; }
  
  .pricing-container { flex-direction: column; align-items: center; }
  .product-card { width: 100%; max-width: 400px; }
  
  .guarantee-content { flex-direction: column; }
  .gurantee-blog, .guarantee-text { width: 100%; text-align: center; }
  .gurantee-blog { padding: 20px; }
  .guarantee-text { padding: 25px 15px; }
  
  .faq-banners { flex-direction: column; text-align: center; gap: 15px; }
  .banner-image, .banner-content { width: 100%; padding: 0; }
  
  .ingredient-item { flex-direction: column; align-items: center; text-align: center; }
  .benefit-item { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  h2 { font-size: 26px; }
  .current-price { font-size: 40px; }
  .buy-now-btn { font-size: 18px; padding: 12px; }
  .bottom-banner img { width: 100%; max-width: 250px; }
}

/*--------------------------------------------------------------
# References Section
--------------------------------------------------------------*/
.references-section { 
    background-color: var(--light-bg); 
    padding: 60px 20px; 
}
.references-content { 
    max-width: 1000px; 
    margin: 0 auto; 
}
.reference-image-container { 
    text-align: center; 
    margin-bottom: 40px; 
}
.reference-image-container img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 12px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}
.reference-links-box { 
    background: #fff; 
    padding: 40px; 
    border-radius: 12px; 
    border: 1px solid #e1eefc; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
}
.reference-links-box p { 
    font-size: 20px; 
    color: var(--text-gray); 
    margin-bottom: 25px; 
    text-align: center; 
}
.reference-list { 
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
    line-height: 2; 
}
.reference-list li { 
    margin-bottom: 12px; 
    word-break: break-all; 
    font-size: 18px; 
}
.reference-list i { 
    color: var(--main-color); 
    margin-right: 10px; 
}
.reference-list a { 
    color: var(--text-gray); 
    text-decoration: none; 
    transition: color 0.3s; 
}
.reference-list a:hover { 
    color: var(--main-color); 
    text-decoration: underline; 
}

/* Mobile Responsive for References */
@media (max-width: 768px) {
    .reference-links-box { 
        padding: 20px; 
    }
    .reference-list li { 
        font-size: 16px; 
    }
}

/* Circular Reviewer Image BC */
.reviewer-image {
  width: 120px; /* Adjust as needed */
  height: 120px;
  overflow: hidden;
  border-radius: 50%; /* This makes it circular BC */
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-right: 25px; /* Spacing BC */
  flex-shrink: 0; /* Prevents stretching BC */
}

.reviewer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the circle BC */
}

/* Update verified check icon color BC */
.verified-check-icon {
  color: #28a745; /* Green BC */
  font-size: 18px;
  margin-left: 8px;
}

/*==================================================
   NEW PRICING TABLE MATCHING IMAGE
==================================================*/
.pr-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 10px;
}

.pr-card {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 8px;
  width: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding-bottom: 20px;
}

/* BEST VALUE CARD (Yellow Background + Top Bar) */
.pr-card.pr-best-value {
  background: #fdfcee; /* Light Yellow */
  border: 2px solid #1a2a40; /* Dark Blue Border */
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.pr-top-bar {
  background-color: #1a2a40;
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Family Pack Ribbon */
.pr-ribbon {
  position: absolute;
  top: 18px;
  right: -35px;
  background: #4ab3dd; /* Light Blue */
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 900;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 1px;
  z-index: 10;
}

/* Header Text */
.pr-header {
  padding: 25px 0 15px;
}
.pr-header h3 {
  font-size: 32px;
  font-weight: 900;
  color: #000;
  margin: 0;
}
.pr-header p {
  font-size: 18px;
  color: #333;
  margin: 0;
}

/* Product Image & Starburst */
.pr-img {
  padding: 10px 0;
  position: relative;
}
.pr-img img {
  height: 180px;
  width: auto;
  object-fit: contain;
}

.pr-save-badge {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
  background: #d32027; /* Red */
  color: white;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
  /* Starburst Shape */
  clip-path: polygon(50% 0%, 61% 16%, 80% 10%, 82% 29%, 100% 36%, 89% 51%, 98% 69%, 79% 74%, 73% 92%, 54% 85%, 35% 98%, 28% 80%, 9% 82%, 15% 63%, 0% 48%, 15% 33%, 8% 15%, 26% 18%, 34% 0%);
}

/* Price Formatting */
.pr-price {
  margin: 10px 0 20px;
}
.pr-dollar {
  font-size: 30px;
  font-weight: 900;
  color: #1c2b42;
  vertical-align: top;
}
.pr-amount {
  font-size: 75px;
  font-weight: 900;
  color: #1c2b42;
  line-height: 0.8;
}
.pr-per {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.pr-shipping-text {
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Badges (Bonuses / Shipping) */
.pr-badges {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 75%;
  margin: 0 auto 20px;
}
.pr-badge {
  color: #ffffff;
  padding: 6px 5px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pr-badge i { font-size: 16px; }
.pr-green { background-color: #218765; }
.pr-red { background-color: #d32027; }

/* Add To Cart Button */
.pr-add-btn {
  background: linear-gradient(to bottom, #ffeb3b, #fbc02d);
  border: 1px solid #fbc02d;
  border-radius: 12px;
  width: 85%;
  padding: 12px 15px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 900;
  color: #1c2b42;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.pr-add-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(to bottom, #fbc02d, #f9a825);
}
.pr-cart-icon {
  background: #1c2b42;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Safe Checkout & Total */
.pr-safe-checkout {
  padding: 0 20px;
}
.pr-checkout-lines {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: #444;
  margin-bottom: 10px;
}
.pr-checkout-lines::before,
.pr-checkout-lines::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
  margin: 0 8px;
}
.pr-checkout-lines b { color: #000; margin-left: 3px; }

.pr-safe-checkout img {
  height: 22px;
  object-fit: contain;
  margin-bottom: 15px;
}

.pr-total {
  font-size: 24px;
}
.pr-strike {
  color: #000;
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 8px;
}
.pr-final {
  color: #000;
  font-weight: 900;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .pr-card.pr-best-value { transform: scale(1); }
  .pr-card { width: 100%; max-width: 380px; }
}

/*==================================================
   TEXT-ONLY 3 BONUSES SECTION
==================================================*/
.bonuses-text-section {
    background-color: var(--main-color); /* MindVault Dark Blue */
    padding: 70px 20px;
    color: #ffffff;
}

.bonuses-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bonuses-heading {
    color: #ffffff !important;
    background-color: transparent !important;
    font-size: 38px !important;
    margin-bottom: 60px !important;
    text-transform: uppercase;
    border: none !important;
    padding: 0 !important;
    line-height: 1.4;
}

.highlight-yellow {
    color: var(--accent-color); /* Yellow */
    font-weight: 900;
}

.bonuses-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.bonus-text-card {
    background: #ffffff;
    color: #222222;
    border-radius: 12px;
    padding: 45px 25px 25px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-bottom: 6px solid var(--accent-color);
    text-align: center;
    transition: transform 0.3s ease;
}

.bonus-text-card:hover {
    transform: translateY(-8px);
}

.bonus-badge {
    background: #d32027; /* Bright Red */
    color: #ffffff;
    display: inline-block;
    padding: 8px 25px;
    font-weight: 900;
    font-size: 20px;
    border-radius: 50px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(211, 32, 39, 0.4);
    letter-spacing: 1px;
}

.bonus-title {
    color: var(--main-color);
    font-size: 24px;
    font-weight: 800;
    margin: 10px 0 15px 0;
    line-height: 1.3;
}

.bonus-desc {
    font-size: 18px;
    color: #444444;
    margin-bottom: 25px;
    line-height: 1.6;
}

.bonus-value {
    background: #fdfcee;
    border: 2px dashed #d97706;
    color: #555555;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.bonus-value span {
    text-decoration: line-through;
    color: #999999;
}

.bonus-value strong {
    color: #28a745; /* Success Green */
    font-size: 24px;
    font-weight: 900;
    display: block;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .bonuses-heading { 
        font-size: 28px !important; 
        margin-bottom: 40px !important; 
    }
    .bonus-text-card { 
        margin-bottom: 30px; 
    }
    .bonuses-grid {
        gap: 15px;
    }
}
/*==================================================
   ADVANCED GDPR COOKIE BANNER
==================================================*/
.gdpr-banner {
    position: fixed;
    bottom: -150%; /* Hidden initially */
    left: 0;
    width: 100%;
    background-color: #1a2a40; /* Dark Blue matching theme */
    color: #ffffff;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
    z-index: 99999; /* Always on top */
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 4px solid var(--accent-color); /* Yellow border */
}

.gdpr-banner.show {
    bottom: 0;
}

.gdpr-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.gdpr-text {
    flex: 1;
}

.gdpr-text h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gdpr-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #cbd5e1;
}

.gdpr-text a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
}

.gdpr-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.gdpr-btn {
    padding: 12px 25px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.gdpr-accept-btn {
    background-color: var(--accent-color);
    color: #111;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.2);
}

.gdpr-accept-btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.gdpr-reject-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.gdpr-reject-btn:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gdpr-content {
        flex-direction: column;
        text-align: left;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .gdpr-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .gdpr-btn {
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }
}