/* ========================================
   VERO GUSTO SUPPLEMENT - STYLES
   ======================================== */

/* Reset & Container */
.vgs-supplement-wrapper {
    position: relative;
    overflow: hidden;
}

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

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

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

.vgs-col-right {
    flex: 1;
    min-width: 300px;
    position: relative;
}

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

/* Bordure décorative */
.vgs-circle-border {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px dashed #D4C4A8;
    border-radius: 50%;
    pointer-events: none;
}

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

/* Cercle principal */
.vgs-main-circle {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

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

/* ========================================
   CERCLE HOVER - IMAGE PLEIN CERCLE
   ======================================== */
.vgs-hover-circle {
    position: absolute;
    width: 220px;
    height: 220px;
    background: #FFFFFF;
    border-radius: 50% !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    right: -60px;
    bottom: 20px;
    overflow: hidden !important;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vgs-hover-circle img,
.vgs-hover-circle .vgs-hover-product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block;
    transition: all 0.3s ease;
}

/* Animation au changement d'image */
.vgs-hover-circle.animating img,
.vgs-hover-circle.animating .vgs-hover-product-image {
    animation: fadeInImage 0.3s ease;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   CONTENU DROITE
   ======================================== */
.vgs-subtitle {
    display: inline-block;
    font-size: 28px;
    color: #FC791A;
    margin-bottom: 10px;
}

.vgs-title {
    font-size: 42px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.vgs-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

/* ========================================
   LISTE PRODUITS
   ======================================== */
.vgs-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vgs-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vgs-product-item:last-child {
    border-bottom: none;
}

.vgs-product-item:hover,
.vgs-product-item.active {
    padding-left: 10px;
}

.vgs-product-link {
    flex: 1;
    text-decoration: none;
}

.vgs-product-title {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    transition: color 0.3s ease;
}

.vgs-product-item:hover .vgs-product-title,
.vgs-product-item.active .vgs-product-title {
    color: #FC791A;
}

/* Prix à droite */
.vgs-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #FC791A;
    white-space: nowrap;
    margin-left: auto;
    padding-right: 10px;
}

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

.vgs-product-item:hover .vgs-product-arrow,
.vgs-product-item.active .vgs-product-arrow {
    background: #FC791A;
    color: #fff;
}

.vgs-product-arrow svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   IMAGE DÉCORATION
   ======================================== */
.vgs-decoration-image {
    position: absolute;
    right: -100px;
    bottom: -50px;
    width: 300px;
    pointer-events: none;
    z-index: -1;
}

.vgs-decoration-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   MESSAGE AUCUN PRODUIT
   ======================================== */
.vgs-no-products {
    color: #999;
    font-style: italic;
    padding: 20px 0;
}

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

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

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

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

    .vgs-hover-circle {
        width: 180px;
        height: 180px;
        right: -40px;
    }

    .vgs-title {
        font-size: 36px;
    }

    .vgs-decoration-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .vgs-row {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

    .vgs-hover-circle {
        width: 160px;
        height: 160px;
        right: -20px;
        bottom: 10px;
    }

    .vgs-title {
        font-size: 28px;
    }

    .vgs-subtitle {
        font-size: 24px;
    }

    .vgs-product-title {
        font-size: 18px;
    }

    .vgs-product-price {
        font-size: 14px;
    }
}

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

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

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

    .vgs-hover-circle {
        width: 140px;
        height: 140px;
    }

    .vgs-title {
        font-size: 24px;
    }

    .vgs-product-item {
        flex-wrap: wrap;
    }

    .vgs-product-price {
        order: 3;
        width: 100%;
        padding-left: 0;
        padding-top: 5px;
        margin-left: 0;
    }
}
