.ag-wheel-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1120px;
    margin: 80px auto;
    padding: 40px 20px;
}

.ag-wheel {
    position: relative;
    width: 360px;
    height: 330px;
}

.ag-wheel-circle {
    position: absolute;
    width: 190px;
    height: 190px;
    padding: 28px 24px;
    border: none;
    border-radius: 50% !important;
    color: #fff !important;
    cursor: pointer;
    text-align: center;
    transition: all 0.65s ease;
    opacity: 0.74;
    transform: scale(0.95);
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    line-height: 1.35;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    appearance: none;
    -webkit-appearance: none;
    outline: none;
    background-clip: padding-box;
    font-family: inherit;
    text-decoration: none;
}

.ag-wheel-circle:nth-child(1) {
    top: 0;
    left: 85px;
}

.ag-wheel-circle:nth-child(2) {
    bottom: 0;
    left: 0;
}

.ag-wheel-circle:nth-child(3) {
    bottom: 0;
    right: 0;
}

.ag-wheel-circle.active {
    opacity: 1;
    transform: scale(1.08);
    z-index: 5;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.ag-wheel-title {
    display: block;
    max-width: 135px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: break-word;
}

.ag-wheel-circle small {
    display: block;
    max-width: 140px;
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
}

.ag-wheel-center {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #f9f9f9;
    border-radius: 50%;
    top: 145px;
    left: 145px;
    z-index: 10;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ag-wheel-center-icon {
    width: 42px;
    height: 42px;
    display: block;
    object-fit: contain;
}

/* Blocs à droite */
.ag-wheel-content {
    position: relative;
    min-height: 310px;
    width: 540px;
    max-width: 100%;
    perspective: 900px;
}

.ag-wheel-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 390px;
    min-height: 165px;
    padding: 34px 36px 28px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
    opacity: 0;
    filter: blur(4px);
    transform: translate(-50%, -50%) scale(0.86);
    transition: all 0.65s ease;
    pointer-events: none;
}

.ag-wheel-card.active {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1);
    z-index: 5;
}

.ag-wheel-card.prev {
    opacity: 0.22;
    filter: blur(4px);
    transform: translate(-96%, -56%) scale(0.82);
    z-index: 2;
}

.ag-wheel-card.next {
    opacity: 0.22;
    filter: blur(4px);
    transform: translate(-4%, -56%) scale(0.82);
    z-index: 2;
}

.ag-wheel-icon {
    width: 48px;
    height: 48px;
    margin: -58px auto 18px;
    background: #ded5ca;
    color: #4f4a44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ag-wheel-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.ag-wheel-card h3 {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 14px;
    color: #5f5a54;
    line-height: 1.35;
}

.ag-wheel-card p {
    text-align: center;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    color: #7b746d;
}

/* Responsive */
@media (max-width: 900px) {
    .ag-wheel-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
        margin: 50px auto;
    }

    .ag-wheel {
        margin: 0 auto;
        transform: scale(0.9);
    }

    .ag-wheel-content {
        width: 100%;
        min-height: 310px;
    }

    .ag-wheel-card {
        width: min(390px, calc(100% - 30px));
    }

    .ag-wheel-card.prev {
        transform: translate(-78%, -56%) scale(0.78);
    }

    .ag-wheel-card.next {
        transform: translate(-22%, -56%) scale(0.78);
    }
}

@media (max-width: 480px) {
    .ag-wheel {
        width: 320px;
        height: 300px;
        transform: scale(0.82);
    }

    .ag-wheel-circle {
        width: 175px;
        height: 175px;
        padding: 24px 20px;
    }

    .ag-wheel-circle:nth-child(1) {
        left: 72px;
    }

    .ag-wheel-circle:nth-child(3) {
        right: 0;
    }

    .ag-wheel-center {
        top: 132px;
        left: 126px;
    }
}
.ag-wheel-center img.ag-wheel-center-icon {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px;
    min-height: 70px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain;
    position: relative;
    z-index: 2;
}