/* ============================= */
/* SECTION MARCHE – BACKGROUND */
/* ============================= */

.market-bg {
    position: relative;
    background: linear-gradient(120deg, #eef1f4 0%, #ffffff 60%);
    border-radius: 40px;
    padding: 60px 0;
    overflow: hidden;
}

/* ============================= */
/* TEXTES */
/* ============================= */

.market-bg p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

.market-bg strong {
    font-weight: 600;
    color: #0b5ed7;
}

/* ============================= */
/* IMAGE */
/* ============================= */

.market-image-wrapper {
    max-width: 420px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.market-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================= */
/* FORMES DECORATIVES */
/* ============================= */

.market-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Cercle bleu */
.market-shapes .circle {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #0b5ed7;
    top: -60px;
    left: -60px;
    opacity: 0.12;
}

/* Carré orange */
.market-shapes .square {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #e8590c;
    bottom: -40px;
    right: -40px;
    border-radius: 24px;
    opacity: 0.12;
}

/* Ligne décorative */
.market-shapes .line {
    position: absolute;
    width: 220px;
    height: 6px;
    background: #6c757d;
    top: 45%;
    left: 15%;
    border-radius: 3px;
    opacity: 0.15;
}

/* ============================= */
/* ICONES DECORATIVES */
/* ============================= */

.market-shapes .icon {
    position: absolute;
    font-size: 56px;
    opacity: 0.12;
}

/* Camion */
.market-shapes .icon.truck {
    color: #0b5ed7;
    top: 18%;
    right: 10%;
    transform: rotate(-6deg);
}

/* Graphique */
.market-shapes .icon.graph {
    color: #e8590c;
    bottom: 20%;
    left: 8%;
    transform: rotate(8deg);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .market-bg {
        padding: 40px 0;
    }

    .market-shapes .circle,
    .market-shapes .square {
        display: none;
    }

    .market-shapes .icon {
        display: none;
    }
}
