.pricing-container-new {
    width: 80%;
    margin: 20px auto;
    font-family: sans-serif;
}

.switch-new, .location-new {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.location-btn-new {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #f0f0f0;
    cursor: pointer;
    margin: 0 5px;
    flex: 1;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: 200px;
    font-weight: bold;
    font-size: 21.6px;
}

.location-btn-new.active {
    color: #1568c9;
    border: 2px solid #1568c9;
}

.cards-new {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.card-new {
    border: 2px solid #bfd7f0;
    padding: 20px;
    width: 280px;
    margin: 10px;
    text-align: center;
    flex-shrink: 0;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.best-selling {
    background:linear-gradient(to bottom, #42a5f5, #1e88e5);
    text-align: center;
    font-size: 12.6px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 8px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 15px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100%;
  }

.card-header-new {
    font-size: 20px;
    font-weight: bolder;
    margin-bottom: 10px;
    text-align: center;
    font-family: "Montserrat", sans-serif !important;
}

.price-new {
    font-size: 2em;
    color: #1568c9;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 900;
    font-family: "Montserrat", sans-serif !important;
}

.features-new {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.features-new li {
    margin-bottom: 8px;
}

.cf{
    font-size: 18px;
    font-weight: bold;
}

.add-to-cart-new {
    background-color: #1568c9;
    color: #fff;
    font-size: 16px;
    padding: 13px 70px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
}

.add-to-cart-new:hover {
    background-color: #164f91;
    color: #fff;
}

.flag-image {
    width: 50px;
    height: 50px;
    margin-right: 8px;
}

@media (max-width: 768px) { 
    .cards-new {
        flex-wrap: wrap;
    }

    .location-new {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        grid-gap: 10px;
    }

    .location-btn-new {
        max-width: none;
        margin: 0; 
    }

    .flag-image {
        width: 20px;
        height: 20px; 
        margin-right: 5px;
    }
}
