/*
* Boutique Opquast
* Styles spécifiques pour la page boutique
*/

/* Product Card */
.c-product-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 24px;
    background: var(--opq-bg-white);
    border: 1.5px solid var(--opq-border);
    border-radius: 12px;
}

.c-product-card__img {
    flex-shrink: 0;
    width: 120px;
    height: 100px;
    object-fit: contain;
}

.c-product-card__content {
    flex: 1;
    min-width: 0;
}

.c-product-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.c-tag--product {
    display: inline-block;
    padding: 4px 14px;
    color: var(--opq-bg-white);
    font-weight: 600;
    font-size: 0.75rem;
    background-color: var(--opq-navy);
    border-radius: 20px;
}

.c-product-card__title {
    margin: 0 0 2px 0;
    color: var(--opq-navy);
    font-weight: 700;
    font-size: 1.05rem;
}

.c-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.c-product-card__title a:hover,
.c-product-card__title a:focus {
    text-decoration: underline;
}

.c-product-card__desc {
    margin: 0 0 2px 0;
    color: var(--opq-navy);
    font-weight: 400;
    font-size: 1rem;
}

.c-product-card__meta {
    margin: 0;
    color: var(--opq-text-muted);
    font-weight: 400;
    font-size: 0.95rem;
}

.c-product-card__action {
    flex-shrink: 0;
}

.c-btn--product {
    display: inline-block;
    padding: 10px 22px;
    color: var(--opq-black);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background-color: var(--opq-yellow);
    border: 2px solid var(--opq-black);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.c-btn--product:hover,
.c-btn--product:focus {
    background-color: var(--opq-yellow-hover);
    text-decoration: none;
}

/* Promo Banner */
.c-promo-banner {
    width: 100vw;
    margin-top: -10px;
    /* Ajustement spécifique demandé */
    margin-bottom: 40px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 36px 20px;
    background-color: var(--opq-turquoise);
    box-sizing: border-box;
}

.c-promo-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.c-promo-banner__content {
    text-align: center;
    color: var(--opq-bg-white);
}

.c-promo-banner__title {
    margin: 0 0 6px 0;
    color: var(--opq-bg-white);
    font-weight: 700;
    font-size: 1.35rem;
}

.c-promo-banner__text {
    margin: 0 0 8px 0;
    color: var(--opq-bg-white);
    font-weight: 600;
    font-size: 1.15rem;
}

.c-promo-banner__footer {
    margin: 0;
    color: var(--opq-bg-white);
    font-size: 1rem;
}

.c-promo-banner__footer a {
    color: var(--opq-bg-white);
    text-decoration: underline;
}

.c-promo-banner__footer a:hover,
.c-promo-banner__footer a:focus {
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .c-product-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .c-product-card__img {
        width: 100%;
        height: auto;
        max-width: 120px;
    }

    .c-product-card__action {
        width: 100%;
        margin-top: 1rem;
    }

    .c-btn--product {
        display: block;
        width: 100%;
        text-align: center;
    }

    .c-promo-banner__inner {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================================================================
   CTA OPQUAST START - Styles globaux
   ========================================================================== */

.c-cta-oq-start {
    border-radius: 16px !important;
    overflow: hidden;
    text-align: center;
}

.c-cta-oq-start,
.c-cta-oq-start p,
.c-cta-oq-start strong {
    color: var(--opq-bg-white) !important;
}

.c-cta-oq-start h3 {
    color: var(--opq-bg-white) !important;
}

.c-cta-oq-start .o-media__illustration {
    display: flex;
    justify-content: center;
}

.c-cta-oq-start .c-page-header__illustration {
    float: none !important;
    width: 100% !important;
}