/* CSS pour le plugin Yith Prices Page */

.attractive-box-title {
    background-color: #f5f5f5;
    margin-bottom: 60px;
    border-radius: 5px;
    text-align: center;
}

.attractive-box {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.attractive-box p {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.simulation-button {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.simulation-button:hover {
    background-color: #005177;
    color: #fff;
}

.product-menu {
    margin-bottom: 20px;
}

.product-menu p {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-menu ul {
    list-style: none;
    padding: 0 !important;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.product-menu ul li {
    margin: 0;
}

.product-menu ul li a {
    display: block;
    padding: 10px 15px;
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s;
}

.product-menu ul li a:hover {
    color: #005177;
}

.table-yith-booking-container {
    margin-top: 20px;
}

.product {
    margin-bottom: 40px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 30px !important;
    margin-top: 60px !important;
    color: #fff;
    background-color: #2e2e2e;
    padding: 10px;
    border-radius: 3px;
}

.columns-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-column {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    flex: 1 1 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.highlighted-blocks {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: 30px !important;
}

.highlighted-block {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
    margin-top: 30px;
}

.highlighted-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0073aa;
    color: #fff;
    border-radius: 50%;
    padding: 5px 8px;
    font-weight: bold;
    font-size: 14px;
}

.highlighted-circle::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background-color: #2C628A;
    border-radius: 50%;
    z-index: -1;
    font-weight: bold;
}

.highlighted-price {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    color:#65ae73;
}

.product-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    background-color: #65ae73; /* Lighter green */
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.product-column ul {
    list-style: none;
    padding: 0 !important;
    margin: 0;
}

.product-column ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.product-column ul li:last-child {
    border-bottom: none;
}

.additional-message {
    padding-top: 10px;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
}

.custom-page-title {
    font-size: 32px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    position: relative;
}

.currency-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background-color: var(--global-palette1);
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    border: 3px solid var(--global-palette1);
}

/* Ajoutez ce media query pour les écrans de petite taille */
@media screen and (max-width: 768px) {
    .highlighted-blocks {
        flex-direction: column;
        gap: 20px;
    }

    .highlighted-block {
        flex: 1 1 100%;
        margin-top: 10px;
    }
}
