/* ==========================================
   NEUROZOOM AFFILIATE CSS - STYLE.CSS
   Optimized for High Conversions & Fast Loading
========================================== */

/* --- 1. CSS VARIABLES (Colors & Fonts) --- */
:root {
    --primary-color: #0d47a1; /* Trust Blue */
    --secondary-color: #1976d2;
    --accent-color: #ff8c00; /* CTA Orange */
    --accent-hover: #e67e22;
    --success-color: #2e7d32; /* Green for health/safety */
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #f8fcfd;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease-in-out;
}

/* --- 2. RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

/* --- 3. UTILITY CLASSES --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center { text-align: center; }
.background-light { background-color: var(--bg-light); }
.background-dark { background-color: var(--bg-dark); color: var(--white); }
.margin-top-lg { margin-top: 40px; }

/* Grid Layouts */
.grid-2-columns, .grid-3-columns {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}
.grid-2-columns { grid-template-columns: 1fr 1fr; }
.grid-3-columns { grid-template-columns: repeat(3, 1fr); }

/* Typography Utility */
.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* --- 4. BUTTONS & ANIMATIONS --- */
.btn-primary, .btn-large {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    padding: 12px 25px;
    font-size: 1.1rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.btn-primary:hover, .btn-large:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    color: var(--white);
}

/* CTA Pulse Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 140, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
}
.cta-pulse {
    animation: pulse 2s infinite;
}

/* --- 5. HEADER SECTION --- */
.site-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--text-main);
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* --- 6. HERO SECTION --- */
/* --- UPDATED HERO SECTION (Left Image Layout) --- */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f9fc 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Image Box Styling */
.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12));
    transition: transform 0.4s ease;
}

/* Soft hover animation on product image to grab attention */
.image-hover-effect:hover img {
    transform: scale(1.03) translateY(-5px);
}

/* Right Content Box Styling */
.hero-content {
    flex: 1.2;
}

.hero-top-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rating-badge {
    background-color: #e3f2fd;
    color: #0d47a1;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
}

.stock-tag {
    background-color: #ffebee;
    color: #c62828;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px dashed #e57373;
}

.hero-headline {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Modernized Custom Bullet Points */
.hero-bullets-updated {
    list-style: none;
    margin-bottom: 35px;
}

.hero-bullets-updated li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--text-main);
}

.bullet-icon {
    margin-right: 12px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA and Trust indicators alignment */
.secure-info {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.guarantee-text {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 700;
}

.encryption-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Trust badges at the bottom */
.trust-badges-hero {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
}

.badge-item img {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.badge-item img:hover {
    opacity: 1;
}

/* Responsive Fix for Tablets & Mobile Screens */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column !important; /* Stack image on top for mobile screens */
        text-align: center;
        gap: 35px;
    }
    
    .hero-image {
        order: 1; /* Puts image first on mobile view */
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-top-meta, .secure-info, .trust-badges-hero {
        justify-content: center;
    }
    
    .hero-headline {
        font-size: 2.3rem;
    }
    
    .hero-bullets-updated li {
        justify-content: center;
    }
}

/* --- 7. EXPERT SECTION --- */
.expert-section {
    padding: 60px 0;
}

.expert-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.expert-image { flex: 0 0 40%; }
.expert-content { flex: 1; }

.expert-quote-box {
    background-color: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* --- 8. HOW IT WORKS & INGREDIENTS --- */
.how-it-works-section, .ingredients-section {
    padding: 60px 0;
}

.feature-card, .ingredient-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover, .ingredient-item:hover {
    transform: translateY(-5px);
}

.icon-wrapper img {
    margin: 0 auto 20px auto;
}

.feature-card h3, .ingredient-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ingredient-item {
    text-align: left;
    border-top: 4px solid var(--success-color);
}

/* --- 9. PROS & CONS --- */
.pros-cons-section {
    padding: 60px 0;
}

.pros-box, .cons-box {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.pros-box h3 { color: var(--success-color); margin-bottom: 20px; font-size: 1.5rem; }
.cons-box h3 { color: #d32f2f; margin-bottom: 20px; font-size: 1.5rem; }

.pros-box ul, .cons-box ul {
    list-style: none;
}

.pros-box ul li, .cons-box ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.pros-box ul li::before {
    content: '✔️';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.cons-box ul li::before {
    content: '✖️';
    position: absolute;
    left: 0;
    color: #d32f2f;
}

/* --- UPDATED PREMIUM TESTIMONIALS SECTION --- */
.reviews-section {
    padding: 80px 0;
}

.testimonials-grid-updated {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card-premium {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-top: 5px solid var(--secondary-color); /* Premium top border accent */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.1);
    border-top-color: var(--accent-color); /* Shifts to orange on hover for feedback */
}

/* Header profile meta alignment */
.card-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-img {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
    background-color: #f4f4f4;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name-new {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.reviewer-location {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.verified-purchase-badge {
    background-color: #e8f5e9;
    color: var(--success-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.stars-gold {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-headline-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.review-body-text {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive fixes for cards */
@media (max-width: 992px) {
    .testimonials-grid-updated {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .testimonial-card-premium {
        padding: 30px 20px;
    }
}

/* --- 11. BONUSES --- */
.bonuses-section {
    padding: 60px 0;
    background-color: #fff9f0;
}

.bonus-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.bonus-card img {
    margin: 0 auto 20px auto;
}

/* --- 12. PRICING TABLE (High Conversion Layout) --- */
.pricing-section {
    padding: 80px 0;
}

.alert-text {
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Grid Layout if not already defined elsewhere */
.grid-3-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center; /* This centers the middle scaled card nicely */
}

.price-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Keeps cards equal height */
}

.price-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-card.ultimate-pack {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
    background-color: #fffdfa;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* IMAGE FIXES: This ensures photos look perfect and don't stretch */
.package-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    min-height: 220px; /* Keeps image area uniform across all 3 cards */
}

.package-image-box img {
    max-width: 100%;
    height: auto;
    max-height: 220px; /* Prevents giant images from breaking the layout */
    object-fit: contain; /* Forces image to keep its original aspect ratio */
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); /* Adds a premium 3D shadow to the bottles */
}

.price-card:hover .package-image-box img {
    transform: scale(1.08) translateY(-5px); /* Makes bottles pop out on hover */
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}

.price-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.supply {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-display {
    margin-top: auto; /* Pushes price to the bottom consistently */
    margin-bottom: 15px;
}

.currency { font-size: 2rem; vertical-align: top; font-weight: bold; color: var(--text-main); }
.amount { font-size: 4.5rem; font-weight: 800; color: var(--text-main); line-height: 1; letter-spacing: -2px; }
.per-bottle { font-size: 1.2rem; color: var(--text-light); }

.total-price { font-size: 1.1rem; font-weight: bold; margin-bottom: 5px; }
.shipping-info { color: var(--success-color); font-weight: bold; margin-bottom: 10px; }
.savings { font-size: 1.1rem; color: var(--text-light); margin-bottom: 20px; }
.savings.highlight { color: #d32f2f; font-weight: bold; font-size: 1.2rem; }

.buy-btn {
    width: 100%;
    display: block;
    margin-top: 10px;
}

/* Mobile Responsiveness for Pricing Table */
@media (max-width: 992px) {
    .price-card.ultimate-pack {
        transform: scale(1); /* Removes scaling on smaller screens so it doesn't overlap */
    }
}

/* --- 13. REFUND SECTION --- */
.guarantee-section-updated {
    padding: 80px 0;
    background-color: var(--white);
}

.guarantee-box-premium {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ffffff;
    border: 2px solid #e0e8f0; /* Subtle border to contain the trust box */
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.guarantee-badge-column {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-badge-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

.guarantee-content-column {
    flex: 2;
    text-align: left;
}

.guarantee-tagline {
    font-size: 0.85rem;
    color: var(--success-color);
    font-weight: 800;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.guarantee-content-column h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.guarantee-main-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400; /* Clean and light as requested */
}

/* Trust pillars inside the guarantee box */
.trust-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pillar-item {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    font-weight: 400; /* Balanced body text */
}

.pillar-item strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Mobile & Tablet Responsive Adjustment */
@media (max-width: 992px) {
    .guarantee-box-premium {
        flex-direction: column !important; /* Stack badge on top for smaller screens */
        text-align: center;
        padding: 35px 20px;
        gap: 30px;
    }

    .guarantee-content-column {
        text-align: center;
    }

    .guarantee-content-column h2 {
        font-size: 1.8rem;
    }
}



/* --- 14. FOOTER --- */
.site-footer {
    padding: 50px 0 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #cccccc;
    text-align: justify;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* --- 15. RESPONSIVE DESIGN (Mobile & Tablet) --- */
@media (max-width: 992px) {
    .hero-container, .expert-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-headline { font-size: 2.2rem; }
    
    .grid-3-columns {
        grid-template-columns: 1fr;
    }
    
    .price-card.ultimate-pack {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .grid-2-columns {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .trust-badges {
        justify-content: center;
    }
}

/* --- TEXT LOGO STYLING (Bada Bold) --- */
.logo-text {
    font-size: 2.2rem; /* Thoda bada aur catchy size */
    font-weight: 800;  /* Full Bold effect */
    color: var(--primary-color); /* Premium Trust Blue color */
    letter-spacing: -1px; /* Modern tight spacing look */
    display: inline-block;
}

.logo-text:hover {
    color: var(--secondary-color); /*  */
}

/* --- 16. PREMIUM FAQ ACCORDION STYLING --- */
.faq-section-premium {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between accordion tabs */
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid #e0e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

/* Summary styling represents the main question tab */
.faq-question {
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none; /* Hides default native arrow marker */
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

/* Custom indicator icon toggle using standard CSS pseudo elements */
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

/* Hover style for better user feedback */
.faq-question:hover {
    background-color: #f0f7fc;
    color: var(--secondary-color);
}

/* Styling changes automatically when the details tag is open */
.faq-item[open] {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.05);
}

.faq-item[open] .faq-question {
    background-color: #f0f7fc;
    border-bottom: 1px solid #e0e8f0;
}

.faq-item[open] .faq-question::after {
    content: '−'; /* Shifts plus to minus when open */
    transform: rotate(180deg);
}

/* Answer body containing text descriptions */
.faq-answer {
    padding: 20px 25px;
    background-color: var(--white);
}

.faq-answer p {
    font-size: 1rem;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400; /* Standard clean weight for pure readability */
}

/* Webkit browser removal fix for default list arrow */
.faq-question::-webkit-details-marker {
    display: none;
}

/* --- 17. SCIENTIFIC REFERENCES & SUPPORT STYLING --- */
.references-support-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e8f0;
}

/* Support Cards Container */
.support-channels-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.support-card {
    background-color: var(--bg-light);
    border: 1px dashed var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
}

.support-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.support-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.email-link-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 4px;
}

.email-link-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: #e0e8f0;
    margin: 40px 0;
}

/* Scientific References Box styling */
.scientific-references-box {
    text-align: left;
}

.references-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.references-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 400;
}

.references-list {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.references-list li {
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.6;
    font-weight: 400; /* Clean light text style */
}

.references-list a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 5px;
}

.references-list a:hover {
    color: var(--accent-color);
}

/* Mobile Responsiveness for Support Section */
@media (max-width: 768px) {
    .support-channels-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- 18. PURITY HIGHLIGHTS SECTION STYLING --- */
.purity-highlights-section {
    padding: 80px 0;
    background-color: #e9eef2; /* Soft grey-blue background shade matches the exact image tone */
}

.purity-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Content Column */
.purity-content-column {
    flex: 1.2;
    text-align: left;
}

.purity-main-headline {
    font-size: 2.3rem;
    color: #1a3644; /* Premium deep navy/teal tint matching the image text style */
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 35px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.purity-checkmark-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.purity-checkmark-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Purple circular checkmark icon style */
.checkmark-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b33982; /* Distinct purple/magenta shade matching original check icons */
    color: var(--white);
    font-size: 0.9rem;
    font-weight: bold;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.purity-checkmark-list p {
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400; /* Maintained clean normal readability weight */
}

/* Right Image Column */
.purity-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.composition-wrapper {
    position: relative;
    width: 100%;
    text-align: center;
}

.composition-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover dynamic effect */
.composition-wrapper:hover .composition-img {
    transform: scale(1.02);
}

/* Responsive breakpoint handling */
@media (max-width: 992px) {
    .purity-container {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }
    
    .purity-content-column {
        order: 1;
    }
    
    .purity-image-column {
        order: 2;
        width: 100%;
    }
    
    .purity-main-headline {
        font-size: 1.9rem;
        text-align: center;
    }
    
    .purity-checkmark-list li {
        text-align: left;
    }
}

