/* ==========================================================================
   NEWERA PROTECT
   ========================================================================== */

/* ===== GLOBAL RESETS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === BRAND COLORS FOR NEWERA PROTECT === */
  --brand-primary:   #8C6259; /* Deeper contrasting earthy rose for text/headers */
  --brand-secondary: #B3887E; /* Medium shade for hovers/accents */
  --brand-accent:    #5E3B33; /* Deep earthy maroon for CTA Buttons */
  --brand-yellow:    #D4A373; /* Earthy gold for Stars and Urgency Badges */
  --brand-green:     #52796F; /* Muted Trust/Success Green */
  --white:           #ffffff;
  --bg-light:        #FAF5F3; /* Very soft version of the theme color */
  --bg-dark:         #3B2F2D; /* Deep earthy tone for Footer */
  --text-main:       #2B2321; /* Strong Dark Brown/Grey for high readability */
  --text-muted:      #665A57; /* Softer text for descriptions */
  --border-color:    #E9D6CF; /* Requested Theme Color */
  
  /* Advanced Shadows for Depth (Earthy Tinted) */
  --shadow-sm:       0 2px 8px rgba(140, 98, 89, 0.08);
  --shadow-md:       0 4px 20px rgba(140, 98, 89, 0.15);
  --shadow-lg:       0 12px 35px rgba(140, 98, 89, 0.22);

  /* === OPTIMIZED TYPOGRAPHY SCALES (US Standards) === */
  --f-xs:    1.0rem;
  --f-sm:    1.15rem;
  --f-body:  1.20rem; 
  --f-md:    1.45rem;
  --f-lg:    1.65rem;
  --f-xl:    2.1rem;
  --f-2xl:   2.6rem;
  --f-3xl:   3.2rem;
  --f-price: 3.6rem;
  --lh-body: 1.8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: var(--f-body);
  line-height: var(--lh-body);
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: 0px; 
}

/* ===== TYPOGRAPHY BASICS ===== */
h1 { font-family: 'Oswald', sans-serif; font-size: var(--f-3xl); font-weight: 700; line-height: 1.2; text-transform: uppercase; }
h2 { font-size: var(--f-2xl); font-weight: 800; line-height: 1.25; }
h3 { font-size: var(--f-xl);  font-weight: 700; line-height: 1.3; }
h4 { font-size: var(--f-lg);  font-weight: 700; line-height: 1.35; }
p, li { font-size: var(--f-body); line-height: var(--lh-body); margin-bottom: 18px; text-align: justify; text-align-last: left; }
a { text-decoration: none; color: var(--brand-primary); }

/* ===== STRUCTURAL UTILITIES ===== */
.section    { padding: 80px 24px; }
.bg-light   { background: var(--bg-light); }
.brand-title { color: var(--brand-primary); }
.sec-title  { text-align: center; font-size: var(--f-2xl); font-weight: 900; color: var(--text-main); margin-bottom: 15px; }
.sec-sub    { text-align: center; font-size: var(--f-md); color: var(--text-muted); margin-bottom: 50px; max-width: 900px; margin-left: auto; margin-right: auto; }
.wrap       { padding: 0 15px; } 

/* ===== CALL TO ACTION (CTA) BUTTONS ===== */
.btn-cta {
  display: inline-block; 
  background: var(--brand-accent); 
  color: var(--white) !important;
  padding: 18px 45px; 
  border-radius: 6px;
  font-weight: 800; 
  font-size: var(--f-lg);
  margin-top: 25px;
  box-shadow: 0 6px 20px rgba(94, 59, 51, 0.4);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-cta:hover { 
  background: var(--brand-primary); 
  transform: translateY(-3px); 
  box-shadow: 0 8px 25px rgba(94, 59, 51, 0.6); 
}
.btn-cta-xl { 
  font-size: 1.4rem;  
  padding: 18px 50px;
}

/* ===== TOP NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 24px;
}
.logo-text { 
    font-size: 2.2rem; 
    font-weight: 900; 
    color: var(--brand-primary); 
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-logo img {
  display: block;
  max-height: 45px;
}
.nav-links { 
  display: flex; 
  gap: 35px; 
  list-style: none;
  margin-top: 15px; 
}
.nav-links a { color: var(--text-main); font-weight: 700; font-size: var(--f-sm); transition: color .2s; }
.nav-links a:hover { color: var(--brand-primary); }
.btn-nav {
  background: var(--brand-primary); color: var(--white) !important;
  padding: 12px 30px; border-radius: 6px;
  font-weight: 800; font-size: var(--f-sm);
  transition: all .2s;
}
.btn-nav:hover { background: var(--brand-accent); }
.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 30px; height: 3px; background: var(--text-main); border-radius: 2px; }
.mob-menu { display: none; flex-direction: column; gap: 18px; padding: 20px 24px; background: var(--white); border-top: 1px solid var(--border-color); }
.mob-menu.open { display: flex; }
.mob-menu a { color: var(--text-main); font-weight: 700; font-size: var(--f-md); }

/* ===== HERO SECTION ===== */
.hero { 
  padding: 80px 24px; 
  /* Soft Blush Pastel Gradient */
  background: linear-gradient(135deg, #FAF5F3 0%, #E9D6CF 100%);
  border-bottom: 1px solid var(--border-color);
}
.hero-grid {
  max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 50px; align-items: center;
}
.hero-content h1 { color: #000; margin-bottom: 20px; letter-spacing: -1px;}
.hero-content h1 span { color: var(--brand-primary); }
.hero-content p { color: var(--text-muted); margin-bottom: 20px; font-size: var(--f-lg); text-align: left; font-weight: 500;}
.hero-img img { width: 100%; max-width: 500px; margin: 0 auto; display: block; filter: drop-shadow(0px 15px 35px rgba(140, 98, 89, 0.15)); }

/* Hero Extras (Trust, Pricing, Urgency) */
.trust-stars { 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--brand-yellow); 
    margin-bottom: 15px; 
}
.trust-stars span { 
    font-size: 1rem; 
    color: var(--text-muted); 
    margin-left: 8px; 
    font-weight: 500; 
}
.hero-divider { 
    border: none; 
    border-top: 2px solid rgba(140, 98, 89, 0.2); 
    margin: 25px 0; 
}
.reg-price { 
    font-size: var(--f-md); 
    color: var(--text-muted); 
}
.sale-price { 
    font-size: var(--f-xl); 
    font-weight: 900; 
    color: var(--brand-primary); 
    margin: 8px 0; 
}
.hurry-badge { 
    display: inline-block; 
    background: var(--brand-yellow); 
    color: #000; 
    padding: 8px 22px; 
    font-size: var(--f-sm); 
    font-weight: 800; 
    border-radius: 5px; 
    margin-top: 10px; 
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(212, 163, 115, 0.3);
}

/* ===== BENEFITS SECTION (FEATURES) ===== */
.badges-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; 
}
.badge-card { text-align: center; padding: 35px 25px; border: 2px solid var(--border-color); border-radius: 12px; background: var(--white); transition: all .3s; }
.badge-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.badge-card img { width: 85px; height: 85px; object-fit: contain; margin: 0 auto 15px; display: block; }
.badge-card h4 { color: var(--brand-primary); margin-bottom: 12px; }
.badge-card p { font-size: 1.05rem; text-align: center; text-align-last: center;}

/* ===== TWO COLUMNS (THE SCIENCE) ===== */
.two-col { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center; }
.two-col img { width: 100%; border-radius: 15px; box-shadow: var(--shadow-md); border: 2px solid var(--border-color); }
.two-col h2 { color: var(--brand-primary); margin-bottom: 25px; }

/* ===== INGREDIENTS LIST ===== */
.ing-list { max-width: 950px; margin: 0 auto; list-style: none; }
.ing-item { padding: 35px 35px 35px 100px; margin-bottom: 25px; background: var(--white); border-radius: 15px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); position: relative; display: grid; grid-template-columns: 180px 1fr; gap: 35px; align-items: center; transition: all 0.3s ease; }
.ing-item:hover { box-shadow: var(--shadow-md); border-color: var(--brand-secondary); }
.ing-num { width: 55px; height: 55px; background: var(--brand-primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: var(--f-lg); font-weight: 900; position: absolute; left: -15px; top: -15px; box-shadow: var(--shadow-sm); }
.ing-img { width: 180px; height: 180px; object-fit: cover; border-radius: 12px; border: 3px solid var(--bg-light); }
.ing-content h4 { color: var(--brand-secondary); margin-bottom: 12px; font-size: var(--f-xl); }

/* ===== BONUSES SECTION FIX (2 ITEMS ALIGNMENT) ===== */
.bonus-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.bonus-card {
    background: var(--white);
    border: 2px solid var(--brand-primary); 
    border-radius: 12px;
    padding: 35px 25px;
    width: 100%;
    max-width: 48%; 
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-accent);
}
.bonus-card img {
    max-width: 140px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}
.bonus-card h4 {
    color: var(--brand-primary);
    margin-bottom: 12px;
    font-size: 1.5rem;
}
.bonus-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    text-align-last: center;
}
@media (max-width: 800px) {
    .bonus-card {
        max-width: 100%; 
    }
}

/* ===== UPDATED PRICING SECTION (EXACT IMAGE MATCH) ===== */
.pricing-section-new {
    padding: 60px 0 80px;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif; /* Standard font to match the image precisely */
}

.pricing-container-new {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 15px;
}

.pricing-grid-img-match {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch; 
}

/* Base Card Styling */
.img-price-card {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Middle Pop-Out Card */
.img-pop-card {
    transform: scale(1.05);
    z-index: 2;
    border: 2px solid #E5D5C5; /* Border to match cream bg */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.img-pop-body {
    background-color: #F8EFE4; /* Exact light cream/beige background */
}

/* Headers */
.img-card-header {
    background-color: #333333; /* Dark gray/black header */
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 12px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Titles and Text */
.img-card-body {
    padding: 25px 20px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.img-bottle-title {
    font-size: 2.2rem;
    color: #333;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 5px;
}

.img-supply-text {
    font-size: 1.15rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Images & Badges */
.img-product-wrapper {
    position: relative;
    margin: 0 auto 20px;
    display: inline-block;
}

.img-product-img {
    max-height: 190px;
    display: block;
    margin: 0 auto;
}

.img-pop-card .img-product-img {
    max-height: 220px;
}

.img-save-badge {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%) rotate(-10deg);
    background: #E74C3C;
    color: #fff;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 900;
    font-size: 1.15rem;
    line-height: 1.1;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 5;
}

/* Huge Price Display */
.img-price-display {
    color: #333;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 20px;
}

.img-price-display .currency {
    font-size: 2.5rem;
}

.img-price-display .amount {
    font-size: 5rem;
    line-height: 0.8;
    letter-spacing: -2px;
}

.img-price-display .per-bottle {
    font-size: 1.1rem;
    color: #333;
    font-weight: 700;
    margin-left: 5px;
}

/* Benefits List (Only on middle card) */
.img-benefits-list {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-benefit-item {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1F618D; /* Blueish text matching image */
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.img-benefit-item .check {
    font-weight: 900;
    font-size: 1.1rem;
}

.img-benefit-item .check.green { color: #008000; }
.img-benefit-item .check.red { color: #E74C3C; }

/* CSS Gradient BUY NOW Button */
.img-buy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 95%;
    margin: auto auto 15px; 
    background: linear-gradient(180deg, #FFEA00 0%, #FFB300 100%);
    color: #005A9C !important; /* Dark blue text for button */
    font-size: 1.5rem;
    font-weight: 900;
    padding: 12px 0;
    border-radius: 6px;
    border: 1px solid #D4AC0D;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 3px 6px rgba(0,0,0,0.15);
    text-decoration: none;
    transition: all 0.2s ease;
}

.img-buy-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.cart-icon {
    font-size: 1.3rem; 
}

/* Total Price & Footer Elements */
.img-cards-img {
    max-width: 170px;
    margin: 0 auto 5px;
    display: block;
}

.img-total-price {
    font-size: 1.3rem;
    color: #333;
    font-weight: 700;
}

.img-total-price s {
    color: #D9534F; /* Reddish strikethrough like in image */
    font-weight: normal;
    margin-right: 5px;
    text-decoration-thickness: 2px;
}

.img-total-price b {
    font-weight: 900;
    font-size: 1.4rem;
}

/* ===== MONEY BACK GUARANTEE ===== */
.mb-inner { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 50px; align-items: center; }
.mb-inner img { width: 100%; max-width: 280px; }
.mb-inner h3 { color: var(--brand-primary); margin-bottom: 20px; font-size: var(--f-xl);}

/* ===== FREQUENTLY ASKED QUESTIONS ===== */
.faq-list { max-width: 950px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-color); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; background: none; border: none; padding: 25px 30px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: var(--f-lg); font-weight: 800; color: var(--brand-primary); font-family: inherit; }
.faq-arrow { color: var(--brand-secondary); transition: transform .3s; font-size: 1.2rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: all .4s ease; padding: 0 30px; }
.faq-item.open .faq-ans { max-height: 800px; padding: 0 30px 25px; }

/* ===== SCIENTIFIC REFERENCES SECTION ===== */
.references-section {
    padding: 70px 20px;
    background-color: #FAFAFA; 
    border-top: 2px solid #e0e0e0;
    font-family: 'Poppins', sans-serif;
}

.references-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header & Image Styling */
.ref-header {
    text-align: center;
    margin-bottom: 40px;
}

.ref-header h2 {
    color: var(--brand-accent); 
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.ref-header p {
    color: #555;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.ref-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 3px solid #fff;
    display: block;
    margin: 0 auto;
}

/* References Box Styling */
.ref-content-box {
    background-color: #FAF5F3; 
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color); 
    max-height: 400px; 
    overflow-y: auto;
}

/* List Styling */
.ref-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: decimal;
}

.ref-list li {
    font-size: 12.5px; 
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: justify;
    word-wrap: break-word;
}

/* Custom Scrollbar for References Box */
.ref-content-box::-webkit-scrollbar {
    width: 8px;
}
.ref-content-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.ref-content-box::-webkit-scrollbar-thumb {
    background: var(--brand-secondary); 
    border-radius: 4px;
}
.ref-content-box::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary); 
}

/* ===== TRUST BADGES SECTION ===== */
.trust-badges-section {
    padding: 40px 20px;
    background-color: #FAFAFA; 
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.trust-badges-img {
    width: 100%;
    max-width: 800px; 
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05)); 
    transition: transform 0.3s ease;
}

.trust-badges-img:hover {
    transform: scale(1.02); 
}

/* ===== COMPLIANCE FOOTER ===== */
footer { background: var(--bg-dark); color: #E9D6CF; padding: 70px 24px 40px; text-align: center; border-top: 5px solid var(--brand-primary);}
.foot-disc { max-width: 1100px; margin: 0 auto; font-size: 0.95rem; line-height: 1.7; text-align: justify; text-align-last: center; }
.foot-disc p { margin-bottom: 12px; }
.foot-links { display: flex; justify-content: center; gap: 30px; margin: 40px 0 25px; flex-wrap: wrap; }
.foot-links a { color: var(--brand-secondary); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; }
.foot-links a:hover { color: var(--white); }
.foot-copy { font-size: 0.9rem; opacity: 0.7; margin-top: 15px;}
.foot-copy p { text-align: center !important; text-align-last: center !important; }

/* ===== INNER SUPPORT PAGES (LEGAL, CONTACT, SHIPPING ETC) ===== */
.legal-section { 
    padding: 60px 20px; 
    background-color: #FAFAFA; 
    font-family: 'Poppins', sans-serif; 
}
.legal-container { 
    max-width: 900px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    border: 1px solid #e0e0e0; 
}
.legal-container h1 { 
    color: var(--brand-accent); 
    font-size: 2.2rem; 
    text-align: center; 
    border-bottom: 2px solid var(--border-color); 
    padding-bottom: 15px; 
    margin-bottom: 30px; 
}
.legal-container h2 { 
    color: var(--brand-primary); 
    font-size: 1.5rem; 
    margin-top: 30px; 
    margin-bottom: 15px; 
}
.legal-container h3 { 
    color: #333; 
    font-size: 1.2rem; 
    margin-top: 20px; 
    margin-bottom: 10px; 
}
.legal-container p { 
    font-size: 15px; 
    color: #444; 
    line-height: 1.8; 
    margin-bottom: 15px; 
}
.legal-container ul, .legal-container ol { 
    margin-left: 20px; 
    margin-bottom: 20px; 
    color: #444; 
    font-size: 15px; 
    line-height: 1.8; 
}
.legal-container li { margin-bottom: 10px; }
.legal-container strong { color: #333; }

/* Table for Shipping Policy */
.legal-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin: 25px 0; 
    font-size: 15px; 
}
.legal-table th, .legal-table td { 
    border: 1px solid #ddd; 
    padding: 12px; 
    text-align: left; 
}
.legal-table th { 
    background-color: var(--brand-secondary); 
    color: #fff; 
    font-weight: 700; 
}
.legal-table tr:nth-child(even) { background-color: var(--bg-light); }

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  :root {
    --f-body: 1.15rem; --f-md: 1.3rem; --f-lg: 1.45rem;
    --f-xl: 1.8rem; --f-2xl: 2.2rem; --f-3xl: 2.8rem; --f-price: 3rem;
  }
  .hero-grid { grid-template-columns: 1fr; text-align: center;}
  .hero-content p { text-align: center; }
  .hero-grid, .two-col, .mb-inner { grid-template-columns: 1fr; text-align: center; }
  .badges-grid { grid-template-columns: 1fr; max-width: 550px; margin: 0 auto; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .ing-item { grid-template-columns: 1fr; text-align: center; padding: 50px 25px 30px; }
  .ing-num { left: 50%; transform: translateX(-50%); top: -25px; }
  .ing-img { margin: 0 auto; }
  p, li { text-align: left; }

}

@media (max-width: 992px) {
    .pricing-grid-img-match { 
        grid-template-columns: 1fr; 
        max-width: 420px; 
        margin: 0 auto; 
        gap: 35px; 
    }
    .img-pop-card { 
        transform: scale(1); 
        order: -1; /* Puts BEST VALUE on top in mobile view */
    }
}

@media (max-width: 768px) {
    .references-section { padding: 50px 15px; }
    .ref-header h2 { font-size: 1.8rem; }
    .ref-content-box { padding: 25px 20px; max-height: 300px; }
    .ref-list li { font-size: 12px; }
    .trust-badges-section { padding: 30px 15px; }
    .trust-badges-img { max-width: 100%; }
    .legal-container { padding: 25px 15px; } 
    .legal-container h1 { font-size: 1.8rem; } 
    .legal-table { font-size: 13px; }
}

@media (max-width: 600px) {
  :root {
    --f-body: 1.05rem; --f-md: 1.15rem; --f-lg: 1.3rem;
    --f-xl: 1.6rem; --f-2xl: 1.9rem; --f-3xl: 2.2rem; --f-price: 2.5rem;
  }
  .btn-cta, .btn-cta-xl { padding: 18px 20px; font-size: var(--f-md); width: 100%; }
  .section { padding: 50px 20px; }
  .foot-disc { text-align: left; text-align-last: left; }
}