/* Styles pour le widget simulateur */
.simulator-widget-container {
    /* background-color: #ffa500; */
    /* padding: 20px; */
        /* border-radius: 5px; */
    color: #333;
    /* margin-bottom: 30px; */
}

.product-items-container {
    box-shadow: 4px 0px 5px -3px rgba(0, 0, 0, 0.4);
    padding: 50px 50px 20px 20px;
}
/* Conteneur de produit */
.product-container {
    /* background: #fff; */
    padding: 20px;
    text-align: center;
        /* border-radius: 5px; */
            /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); */
}

/* Titre du produit */
.product-title {
    font-family: "Fredoka";
        font-weight: 500;
        font-size: 30px;
        color: #00a988;
    text-align: center;
    margin-bottom: 20px;
}

/* Conteneur d'image */
.product-image-container {
    text-align: center;
    /* height: 200px; */
    margin-bottom: 20px;
        display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    max-height: 100%;
    width: 350px;
    background: transparent;
    /* padding: 10px; */
        border: 5px solid #fff;
}
#product-paysage-xs .product-image,
#product-paysage-s .product-image,
#product-paysage-m .product-image {
    width: 500px;
}
#product-portrait-xs .product-image,
#product-portrait-s .product-image {
    width: 300px;
}

#product-carre-m .product-image {
    width: 400px;
}
/* Description du produit */
.product-description {
    font-family: "Montserrat";
        font-size: 20px;
        color: #fff;
        margin-bottom: 20px;
        padding: 5px 20px;
    font-weight: 500;
}
.product-description p {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

/* Prix du produit */
.product-price {
    display: flex;
    align-items: center;
        gap: 5px;
    font-family: "Fredoka";
        font-size: 30px;
    font-weight: bold;
    color: #00a988;
    text-align: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 1);
        padding: 10px 25px;
    border-radius: 30px;
    width: fit-content;
    margin: 0 auto 20px;
    margin-bottom: 30px;
}

/* Prix avec réduction */
.product-price .regular-price {
    text-decoration: line-through;
    color: #999;
    font-size: 22px;
    font-weight: 400;
    margin-right: 10px;
}

.product-price .discount-price {
    color: #e33b3b;
    font-weight: bold;
}

.product-price .current-price {
    color: #00a988;
    font-weight: bold;
}
.product-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.product-price-wrapper .product-price {
    margin-bottom: 0;
}

.discount-badge {
    background: #e74c3c;
    color: #fff;
    font-family: "Fredoka";
    font-size: 16px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Lien du produit */
.product-link {
    font-family: 'Montserrat';
    background: #00a988;
    color: #fff;
    padding: 10px 20px;
        border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.product-link:hover {
    background: #008c6e;
    text-decoration: none;
    color: #fff;
}

.options-container {
    padding: 50px 20px 20px 70px;
}
/* Titres des sections */
.options-title {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #fff;
        font-size: 25px;
        font-family: 'Fredoka';
        font-weight: 600;
}

/* Options d'orientation */
.orientation-options {
    display: flex;
        align-items: flex-end;
            margin-bottom: 30px;
        justify-content: flex-start;
            margin-bottom: 30px;
            gap: 100px
}

.orientation-option {
    text-align: center;
    cursor: pointer;
}

.orientation-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    margin-bottom: 10px;
    background: #b08735;
}

.orientation-portrait .orientation-box {
    height: 100px;
}

.orientation-paysage .orientation-box {
    width: 100px;
}

.orientation-box.active {
    background: #00a988;
}

.orientation-label {
    color: #333;
    font-size: 22px;
        font-family: 'Fredoka';
        font-weight: 500;
}

.orientation-option.active .orientation-label {
    color: #00a988;
    /* font-weight: bold; */
}

.orientation-option.active .orientation-box {
    background: #00a988;
}

/* .orientation-label.active {
} */
/* Options de taille */
.size-options {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
        align-items: flex-start;
}

.size-option {
    text-align: center;
    cursor: pointer;
    display: flex;
        gap: 15px;
        align-items: center;
        margin-bottom: 10px;
}

.size-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background: #b08735; */
        background: url('../img/dot_gray_pixel.svg') no-repeat center;
        background-size: 70px;
    margin: 0 auto;
}

.size-option.active .size-circle,
.size-circle.active {
    /* background: #00a988; */
        background: url('../img/dot_green_pixel.svg') no-repeat center;
        background-size: 70px;
}

.size-label {
    color: #333;
    font-size: 20px;
        font-family: 'Fredoka';
        font-weight: 500;
}

.size-option.active .size-label,
.size-label.active {
    color: #00a988;
    /* font-weight: bold; */
}

@media(max-width: 1200px) {
    .orientation-options {
        gap: 30px;
    }
}
@media(max-width: 768px) {

    .simulator-widget-container .row {
        display: flex;
        flex-direction: column-reverse;
    }

    .product-items-container,
    .options-container {
        padding: 30px 10px 20px 20px;
        }
        
        .product-items-container {
            padding-bottom: 50px;
    }

        .options-container {
            width: 80%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

    .orientation-box {
        width: 60px;
        height: 60px;
    }

    .orientation-portrait .orientation-box {
        height: 90px;
    }

    .orientation-paysage .orientation-box {
        width: 90px;
    }

    .orientation-options {
        gap: 10%;
    }

    .size-options {
        margin-left: -80px;
    }

        .orientation-options-wrapper,
        .size-options-wrapper {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
}