/* =========================================
   ADAPTACCESSOIRES — WHOLESALE
   ========================================= */

.aa-wholesale {
    position: relative;

    overflow: hidden;

    padding: var(--aa-space-13) 20px;

    background: var(--aa-dark);

    color: var(--aa-white);

    isolation: isolate;
}


/* =========================================
   INNER
   ========================================= */

.aa-wholesale__inner {
    position: relative;

    z-index: 3;

    display: flex;

    min-height: 430px;

    align-items: center;
    justify-content: space-between;

    gap: 80px;

    padding: 70px 80px;

    overflow: hidden;

    border-radius: var(--aa-radius-xl);

    background:
        linear-gradient(
            120deg,
            var(--aa-primary) 0%,
            #207F9F 55%,
            var(--aa-dark) 100%
        );

    box-shadow: var(--aa-shadow-lg);
}


/* =========================================
   CONTENT
   ========================================= */

.aa-wholesale__content {
    position: relative;

    z-index: 4;

    max-width: 800px;
}


/* =========================================
   EYEBROW
   ========================================= */

.aa-wholesale__eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: var(--aa-space-5);

    color: var(--aa-white);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    opacity: 0.9;
}


.aa-wholesale__eyebrow::before {
    content: "";

    width: 32px;
    height: 2px;

    border-radius: var(--aa-radius-pill);

    background: var(--aa-secondary);
}


/* =========================================
   TITLE
   ========================================= */

.aa-wholesale__title {
    margin: 0 0 var(--aa-space-6);

    color: var(--aa-white);

    font-family: var(--aa-font-heading);

    font-size: clamp(
        38px,
        5vw,
        62px
    );

    line-height: 1.08;

    letter-spacing: -0.025em;
}


.aa-wholesale__title span {
    display: block;

    color: #FFD1B5;
}


/* =========================================
   DESCRIPTION
   ========================================= */

.aa-wholesale__description {
    max-width: 680px;

    margin: 0 0 var(--aa-space-8);

    color: rgba(255, 255, 255, 0.88);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   BUTTON
   ========================================= */

.aa-wholesale__button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 56px;

    padding: 0 30px;

    border-radius: var(--aa-radius-pill);

    background: var(--aa-secondary);

    color: var(--aa-white);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.06em;

    text-decoration: none;

    text-transform: uppercase;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.16);

    transition:
        transform var(--aa-transition),
        background-color var(--aa-transition),
        box-shadow var(--aa-transition);
}


.aa-wholesale__button span:last-child {
    font-size: 21px;

    line-height: 1;

    transition:
        transform var(--aa-transition);
}


.aa-wholesale__button:hover {
    background: var(--aa-white);

    color: var(--aa-primary);

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.22);
}


.aa-wholesale__button:hover span:last-child {
    transform: translateX(5px);
}


/* =========================================
   BADGE
   ========================================= */

.aa-wholesale__badge {
    position: relative;

    z-index: 4;

    flex: 0 0 auto;

    display: flex;

    width: 210px;
    height: 210px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 8px;

    border: 1px solid rgba(255, 255, 255, 0.28);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(8px);

    box-shadow:
        inset 0 0 0 12px rgba(255, 255, 255, 0.035);

    transform: rotate(8deg);
}


.aa-wholesale__badge-star {
    color: var(--aa-secondary);

    font-size: 22px;

    line-height: 1;
}


.aa-wholesale__badge-text {
    color: var(--aa-white);

    font-family: var(--aa-font-heading);

    font-size: 22px;

    line-height: 1.05;

    text-align: center;
}


/* =========================================
   DECORATIONS
   ========================================= */

.aa-wholesale__decoration {
    position: absolute;

    z-index: 1;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


.aa-wholesale__decoration--one {
    top: -250px;
    left: -180px;

    width: 600px;
    height: 600px;
}


.aa-wholesale__decoration--two {
    right: -220px;
    bottom: -300px;

    width: 650px;
    height: 650px;

    border-color: rgba(255, 105, 0, 0.18);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .aa-wholesale {
        padding: var(--aa-space-11) 15px;
    }

    .aa-wholesale__inner {
        min-height: auto;

        padding: 60px 50px;

        gap: 40px;
    }

    .aa-wholesale__badge {
        width: 170px;
        height: 170px;
    }

    .aa-wholesale__badge-text {
        font-size: 18px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .aa-wholesale {
        padding: var(--aa-space-10) 12px;
    }

    .aa-wholesale__inner {
        display: block;

        padding: 55px 24px;

        border-radius: var(--aa-radius-lg);

        text-align: center;
    }

    .aa-wholesale__content {
        max-width: none;
    }

    .aa-wholesale__eyebrow {
        justify-content: center;

        font-size: 10px;
    }

    .aa-wholesale__eyebrow::before {
        width: 22px;
    }

    .aa-wholesale__title {
        font-size: 36px;
    }

    .aa-wholesale__title span {
        display: inline;
    }

    .aa-wholesale__description {
        font-size: 15px;

        line-height: 1.7;
    }

    .aa-wholesale__button {
        width: 100%;

        max-width: 300px;
    }

    .aa-wholesale__badge {
        width: 135px;
        height: 135px;

        margin: 45px auto 0;
    }

    .aa-wholesale__badge-text {
        font-size: 15px;
    }

    .aa-wholesale__badge-star {
        font-size: 16px;
    }
}


/* =========================================
   REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {

    .aa-wholesale__button {
        transition: none;
    }
}
