/* --- CUSTOM THEME VARIABLES (Bonivita - LIGHT) --- */
:root {
    /* Theme Boundaries & Spacings */
    --bo-val-max-width: 1200px;
    --bo-val-radius: 16px; /* Soft rounding style */
    --bo-val-radius-badge: 999px; /* Pill components */
    --bo-val-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.1), 0 8px 10px -6px rgba(15, 118, 110, 0.08); /* Raised Standard Shadows */
    --bo-val-shadow-flat: 0 2px 5px rgba(0, 0, 0, 0.03);

    /* Harmonious Light Palette */
    --bo-bg-base: #FAF8F5; /* Warm light cream */
    --bo-bg-surface: #FFFFFF; /* Pure white */
    
    --bo-brand-accent-teal: #0F766E; /* Dark Teal (Pillars of wellness) */
    --bo-brand-accent-teal-hover: #115E59;
    --bo-brand-accent-teal-light: #E6F4F1; /* Gentle highlights */
    --bo-brand-accent-gold: #D97706; /* High active contrast gold */
    --bo-brand-accent-gold-soft: #FEF3C7;

    --bo-text-primary: #1E293B; /* Deep elegant slate */
    --bo-text-secondary: #475569; /* Muted gray-blue */
    --bo-text-white: #FFFFFF;
    
    --bo-border-muted: #E2E8F0;

    /* Typography settings */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* --- GENERAL RESET & LAYOUT --- */
body.bo-body-shell {
    background-color: var(--bo-bg-base);
    color: var(--bo-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

body.bo-body-shell * {
    box-sizing: border-box;
    transition: all 0.25s ease-in-out;
}

/* Container limits applied only to main content */
.bo-capsule-mid {
    max-width: var(--bo-val-max-width);
    width: 100%;
}

/* --- BACKGROUND DECORATIVE PATTERN --- */
.bo-decorative-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bo-blob-one {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    min-width: 300px;
}

.bo-blob-two {
    position: absolute;
    top: 60%;
    left: -15%;
    width: 35vw;
    height: 35vw;
    min-width: 250px;
}

/* --- HEADER CLASS BLOCK --- */
.bo-header-outer {
    background-color: var(--bo-brand-accent-teal);
    color: var(--bo-text-white);
    width: 100%;
    position: relative;
    z-index: 20;
    box-shadow: var(--bo-val-shadow);
}

.bo-brand-logo-icon {
    width: 32px;
    height: 32px;
    color: var(--bo-brand-accent-gold);
}

.bo-brand-logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.bo-desktop-status-dot {
    width: 10px;
    height: 10px;
    background-color: #22C55E;
    border-radius: 50%;
    display: inline-block;
}

.bo-desktop-status-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bo-brand-accent-teal-light);
}

/* --- MAIN SHIELD SHELL --- */
.bo-main-shell {
    position: relative;
    z-index: 10;
    flex: 1;
}

/* --- PRESET A: SPLIT STICKY MERCHANDISE LAYOUT --- */
.bo-merchandise-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .bo-merchandise-split {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Left Sticky Side (40% width on Desktop) */
.bo-media-sticky-wrap {
    width: 100%;
}

@media (min-width: 768px) {
    .bo-media-sticky-wrap {
        width: 40%;
        position: sticky;
        top: 2rem;
        align-self: flex-start;
    }
}

.bo-item-graphic-box {
    background-color: var(--bo-bg-surface);
    border: 1px solid var(--bo-border-muted);
    border-radius: var(--bo-val-radius);
    padding: 1.5rem;
    box-shadow: var(--bo-val-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0;
}

.bo-main-product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--bo-val-radius);
}

.bo-graphic-caption-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--bo-brand-accent-teal-light);
    color: var(--bo-brand-accent-teal);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--bo-val-radius-badge);
    text-transform: uppercase;
}

/* Right Content Stream (60% width on Desktop) */
.bo-details-stream {
    width: 100%;
}

@media (min-width: 768px) {
    .bo-details-stream {
        width: 60%;
        padding-left: 1.5rem;
    }
}

/* Headings with Oswald font and Uppercase config */
.bo-main-heading {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bo-brand-accent-teal);
    margin: 0 0 0.5rem 0;
    letter-spacing: 1px;
}

.bo-sub-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--bo-text-secondary);
    margin-bottom: 2rem;
}

/* Details Description Card */
.bo-board-description {
    background-color: var(--bo-bg-surface);
    border-radius: var(--bo-val-radius);
    padding: 1.75rem;
    box-shadow: var(--bo-val-shadow-flat);
    border: 1px solid var(--bo-border-muted);
    margin-bottom: 2rem;
}

.bo-paragraph-lead {
    font-size: 1.125rem;
    color: var(--bo-text-primary);
    margin-bottom: 1rem;
}

.bo-paragraph-sub {
    font-size: 0.95rem;
    color: var(--bo-text-secondary);
    line-height: 1.7;
}

/* Features list inside Product Block (bullet-stack) */
.bo-bullet-stack {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bo-bullet-node {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bo-bullet-icon-wrapper {
    background-color: var(--bo-brand-accent-teal-light);
    color: var(--bo-brand-accent-teal);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bo-bullet-svg {
    width: 18px;
    height: 18px;
}

.bo-bullet-node-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bo-text-primary);
    margin: 0 0 0.25rem 0;
}

.bo-bullet-node-desc {
    font-size: 0.9rem;
    color: var(--bo-text-secondary);
    margin: 0;
}

/* Guarantee row - Icon Left style */
.bo-guarantee-shield-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: var(--bo-brand-accent-teal-light);
    border: 1.5px dashed var(--bo-brand-accent-teal);
    border-radius: var(--bo-val-radius);
    padding: 1.25rem;
    margin-bottom: 2.5rem;
}

.bo-shield-icon {
    width: 44px;
    height: 44px;
    color: var(--bo-brand-accent-teal);
    flex-shrink: 0;
}

.bo-shield-text-block {
    flex: 1;
}

.bo-shield-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bo-brand-accent-teal);
    margin: 0 0 0.25rem 0;
}

.bo-shield-subtext {
    font-size: 0.85rem;
    color: var(--bo-text-secondary);
    margin: 0;
}

/* Conversion & Price Badge (accent background) */
.bo-conversion-hub {
    background-color: var(--bo-bg-surface);
    border-radius: var(--bo-val-radius);
    padding: 2rem;
    box-shadow: var(--bo-val-shadow);
    border: 1px solid var(--bo-border-muted);
}

.bo-price-tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.bo-price-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--bo-text-secondary);
}

/* Price Badge Option: prominently styled overlay */
.bo-price-badge-accent {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bo-text-white);
    background-color: var(--bo-brand-accent-gold);
    padding: 0.5rem 1.75rem;
    border-radius: var(--bo-val-radius-badge);
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
    display: inline-block;
}

/* CTA Action Button */
.bo-button-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--bo-brand-accent-teal);
    color: var(--bo-text-white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2rem;
    border-radius: var(--bo-val-radius);
    box-shadow: 0 6px 15px rgba(15, 118, 110, 0.25);
    width: 100%;
}

.bo-button-action:hover {
    background-color: var(--bo-brand-accent-teal-hover);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.35);
    transform: translateY(-2px);
}

.bo-button-arrow-icon {
    width: 24px;
    height: 24px;
}

.bo-secure-notice {
    font-size: 0.85rem;
    color: var(--bo-text-secondary);
    text-align: center;
    margin: 1rem 0 0 0;
}


/* --- SEPARATE BENEFITS LAYOUT (3 horizontal rows) --- */
.bo-benefits-layout {
    background-color: var(--bo-bg-surface);
    border-radius: var(--bo-val-radius);
    padding: 3rem 1.5rem;
    border: 1px solid var(--bo-border-muted);
    box-shadow: var(--bo-val-shadow-flat);
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .bo-benefits-layout {
        padding: 4rem 3rem;
    }
}

.bo-section-header-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bo-brand-accent-teal);
    text-align: center;
    margin: 0 0 0.5rem 0;
}

.bo-section-header-subtitle {
    font-size: 1.1rem;
    color: var(--bo-text-secondary);
    text-align: center;
    margin: 0 0 3.5rem 0;
}

.bo-benefit-alignment-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bo-benefit-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--bo-val-radius);
    background-color: var(--bo-bg-base);
}

@media (min-width: 768px) {
    .bo-benefit-strip {
        flex-direction: row;
        align-items: flex-start;
        padding: 2rem;
    }
}

.bo-benefit-icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--bo-brand-accent-teal);
    color: var(--bo-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(15, 118, 110, 0.15);
}

.bo-benefit-svg-icon {
    width: 32px;
    height: 32px;
}

.bo-benefit-prose-cap {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .bo-benefit-prose-cap {
        text-align: left;
    }
}

.bo-benefit-label-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--bo-brand-accent-teal);
    margin: 0 0 0.5rem 0;
}

.bo-benefit-paragraph-desc {
    font-size: 0.95rem;
    color: var(--bo-text-secondary);
    margin: 0;
    line-height: 1.6;
}


/* --- CUSTOMER SHOUTOUT REVIEWS SECTION --- */
.bo-customer-shoutouts {
    margin-bottom: 5rem;
}

.bo-reviews-grid-deck {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .bo-reviews-grid-deck {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bo-reviews-grid-deck {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card layout with colored border-top 4px */
.bo-review-node-board {
    background-color: var(--bo-bg-surface);
    border-top: 5px solid var(--bo-brand-accent-teal);
    border-radius: var(--bo-val-radius);
    padding: 2rem;
    box-shadow: var(--bo-val-shadow);
    border-left: 1px solid var(--bo-border-muted);
    border-right: 1px solid var(--bo-border-muted);
    border-bottom: 1px solid var(--bo-border-muted);
}

.bo-avatar-initials-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bo-brand-accent-gold-soft);
    color: var(--bo-brand-accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bo-reviewer-name-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bo-text-primary);
    margin: 0;
}

.bo-star-score {
    color: var(--bo-brand-accent-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.bo-review-prose-text {
    font-size: 0.95rem;
    color: var(--bo-text-secondary);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}


/* --- FOOTER CLASS SECTION --- */
.bo-footer-bar {
    background-color: var(--bo-text-primary);
    color: var(--bo-text-white);
    width: 100%;
    position: relative;
    z-index: 20;
    border-top: 4px solid var(--bo-brand-accent-gold);
}

.bo-footer-inner {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bo-footer-copy-text {
    font-size: 0.9rem;
    color: var(--bo-border-muted);
    margin: 0 0 0.5rem 0;
}

.bo-disclaimer-text {
    font-size: 0.75rem;
    color: #94A3B8;
    max-width: 500px;
    line-height: 1.4;
    margin: 0;
}

.bo-footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

@media (min-width: 768px) {
    .bo-footer-navigation {
        align-items: flex-end;
    }
}

.bo-legal-anchor {
    font-size: 0.85rem;
    color: var(--bo-border-muted);
    text-decoration: none;
}

.bo-legal-anchor:hover {
    color: var(--bo-brand-accent-gold);
    text-decoration: underline;
}