/* ========================================
   VERO GUSTO COMBOS À TESTER
   ======================================== */

.vgc-combos-wrapper {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.vgc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.vgc-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

/* Colonnes */
.vgc-col-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.vgc-col-right {
    flex: 1;
    min-width: 300px;
}

/* ========================================
   CERCLE PRINCIPAL
   ======================================== */
.vgc-circle-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vgc-circle-border {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px dashed #1B5E4B;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.25;
}

.vgc-circle-border::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    top: -12px;
    left: -12px;
    border: 1px solid #1B5E4B;
    border-radius: 50%;
    opacity: 0.15;
}

.vgc-main-circle {
    position: relative;
    display: flex;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.vgc-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   CONTENU DROITE
   ======================================== */
.vgc-subtitle {
    display: inline-block;
    font-size: 26px;
    color: #FC791A;
    margin-bottom: 8px;
}

.vgc-title {
    font-size: 38px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.vgc-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

/* ========================================
   LISTE COMBOS
   ======================================== */
.vgc-combos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vgc-combo-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    cursor: default;
    transition: all 0.3s ease;
}

.vgc-combo-item:last-child {
    border-bottom: none;
}

.vgc-combo-item:hover {
    padding-left: 10px;
}

.vgc-combo-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vgc-combo-name {
    font-size: 19px;
    font-weight: 700;
    color: #1A1A1A;
    transition: color 0.3s ease;
}

.vgc-combo-item:hover .vgc-combo-name {
    color: #1B5E4B;
}

.vgc-combo-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.vgc-combo-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    color: #1A1A1A;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.vgc-combo-item:hover .vgc-combo-arrow {
    background: #1B5E4B;
    color: #fff;
}

.vgc-combo-arrow svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .vgc-row {
        gap: 40px;
    }

    .vgc-main-circle {
        width: 380px;
        height: 380px;
    }

    .vgc-circle-border {
        width: 420px;
        height: 420px;
    }

    .vgc-circle-border::before {
        width: 440px;
        height: 440px;
    }

    .vgc-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .vgc-combos-wrapper {
        padding: 40px 0;
    }

    .vgc-row {
        flex-direction: column;
        gap: 36px;
    }

    .vgc-col-left,
    .vgc-col-right {
        width: 100%;
        min-width: auto;
    }

    .vgc-main-circle {
        width: 300px;
        height: 300px;
    }

    .vgc-circle-border {
        width: 340px;
        height: 340px;
    }

    .vgc-circle-border::before {
        width: 360px;
        height: 360px;
    }

    .vgc-title {
        font-size: 26px;
    }

    .vgc-subtitle {
        font-size: 22px;
    }

    .vgc-combo-name {
        font-size: 17px;
    }

    .vgc-combo-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .vgc-main-circle {
        width: 250px;
        height: 250px;
    }

    .vgc-circle-border {
        width: 280px;
        height: 280px;
    }

    .vgc-circle-border::before {
        width: 300px;
        height: 300px;
    }

    .vgc-title {
        font-size: 22px;
    }

    .vgc-combo-item {
        padding: 14px 0;
    }

    .vgc-combo-arrow {
        width: 32px;
        height: 32px;
    }
}
