/* =================================================================
   LIVE SHOPPING - Section "Comment ca marche"
   TPL : themes/bobochic/live-shopping-comment-ca-marche.tpl
   Charge par override/controllers/front/LiveShoppingController.php

   Valeurs issues du design system Bobochic. Les variables CSS
   (--font-size-*, --color-*) ne sont PAS declarees dans le theme :
   les valeurs sont donc ecrites en dur. Correspondances utilisees :
     titre 39px        = --font-size-3xl      + --letter-spacing-display -1.5px
     titre puce 25px   = --font-size-xl
     texte 14px        = --font-size-md
     sur-titre 12px    = --font-size-sm  / 600 = --font-weight-medium
                       + --letter-spacing-caps 0.48px
     #0B0B0C = neutral-950   #F2F2F2 = neutral-100 (border-neutral-2)
     #737373 = neutral-550 (foreground-neutral-6)
     #333333 = neutral-800 (foreground-neutral-7)
   ================================================================= */

#liveshopping .ls-comment-ca-marche {
    background: #fff;
    color: #0B0B0C;
    padding: 80px 64px;
    border-top: 1px solid #F2F2F2;
}

#liveshopping .ls-comment-ca-marche__inner {
    max-width: 1408px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr auto;
    gap: 72px;
    align-items: center;
}

/* --- Colonne texte --- */
#liveshopping .ls-comment-ca-marche__eyebrow {
    display: block;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    color: #737373;
}

#liveshopping .ls-comment-ca-marche__title {
    margin: 12px 0 0;
    max-width: 720px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 39px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #0B0B0C;
}

#liveshopping .ls-comment-ca-marche__list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 640px;
}

#liveshopping .ls-comment-ca-marche__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

#liveshopping .ls-comment-ca-marche__item-icon {
    flex-shrink: 0;
    margin-top: 1px;
    color: #0B0B0C;
    line-height: 0;
}

#liveshopping .ls-comment-ca-marche__item-icon svg {
    width: 26px;
    height: 26px;
}

#liveshopping .ls-comment-ca-marche__item-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
    color: #0B0B0C;
    margin: 0;
}

#liveshopping .ls-comment-ca-marche__item-desc {
    margin: 3px 0 0;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #333333;
}

/* --- Responsive --- */
@media (max-width: 1400px) {
    #liveshopping .ls-comment-ca-marche__inner { gap: 48px; }
}

@media (max-width: 1100px) {
    #liveshopping .ls-comment-ca-marche__inner { gap: 36px; }
}

@media (max-width: 950px) {
    #liveshopping .ls-comment-ca-marche { padding: 50px 32px; }
    #liveshopping .ls-comment-ca-marche__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 767px) {
    #liveshopping .ls-comment-ca-marche { padding: 48px 16px; }
    #liveshopping .ls-comment-ca-marche__title { font-size: 31px; }
}
