/* Home Page - Alternating Section Backgrounds */

:root {
    --section-bg-light: #ffffff;
    --section-bg-alt: #f8fafc;
}

/* Reset main background */
.main {
    background: var(--section-bg-light);
}

/* Alternating backgrounds pattern:
   - Hero: full background image (no change)
   - Categories (bento): light
   - Products (spotlight): alt (gray)
   - Ebook banner: light
   - SAV (pill-features): alt (gray)
*/

/* Bento Categories - fond blanc */
.bento-categories {
    background: var(--section-bg-light);
}

/* Spotlight Products - fond gris clair */
.spotlight-products {
    background: var(--section-bg-alt);
}

/* Card Ebook Banner - fond blanc */
.card-ebook-banner {
    background: var(--section-bg-light);
}

/* Pill Features (SAV) - fond gris clair */
.pill-features {
    background: var(--section-bg-alt);
}
