/**
 * Theme Name: Vedmabooster
 * Template:   healfio
 * Version: 0.10
 */

#contact-us-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

#contact-us-modal.open {
    visibility: visible;
    opacity: 1;
}

#contact-us-modal .modal-window {
    box-shadow: var(--block-box-shadow);
    border-radius: 16px;
    background-color: #fff;
    padding: 28px 32px 32px 32px;
    width: 100%;
    max-width: 400px;
    position: relative;
    margin: 8px;
}

#contact-us-modal .close-btn {
    font-size: 32px;
    line-height: 25px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all .3s;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 12px;
}

#contact-us-modal .close-btn:hover {
    color: var(--title-color);
    transform: scale(1.1);
}

#contact-us-modal h4 {
    font-size: 1.8rem;
}

#contact-us-modal h4:before {
    content: none;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li {
    margin-bottom: 0.6rem;
}

.contact-list a {
    font-weight: bold;
    color: currentColor;
}

.contact-list a:hover {
    color: var(--primary-color);
}

.contact-list a img {
    transition: transform .3s;
    margin-right: 0.6rem;
    width: 40px;
    height: 40px;
}

.contact-list a:hover img {
    transform: scale(1.1);
}

.woocommerce ul.products li.product .button.contact-button:before {
    content: none;
}

.woocommerce ul.products li.product .button.contact-button {
    color: #fff;
    background: var(--primary-color);
    width: 100%;
    margin-top: 10px;
}

.woocommerce ul.products li.product .button.contact-button:hover {
    color: var(--primary-color);
    background: transparent !important;
}

.mobile-contact-list {
    list-style: none;
    display: flex;
    gap: 8px;
    margin-bottom: 35px;
}

.mobile-contact-list a {
    color: currentColor;
    background-color: transparent!important;
}

.mobile-langswitcher {
    list-style: none;
    display: flex;
    margin: 1rem 0 0;
}

.mobile-langswitcher a {
    padding: 1rem;
}

html {
    scroll-behavior: auto!important;
}

html.smooth-scroll {
    scroll-behavior: smooth!important;
}

@media (max-width: 1199px) {
    .header-cta {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .navbar-nav .lang-item {
        display: none;
    }
}


@media (min-width: 768px) {
    .mobile-contact-list,
    .mobile-langswitcher {
        display: none;
    }

    :target {
        scroll-margin-top: 75px;
    }
}

.woocommerce-cart [name="update_cart"] {
    display: none !important;
}

.woocommerce-billing-fields h4,
.woocommerce-additional-fields h4,
#order_review_heading,
.woocommerce-checkout .woocommerce-order-details__title,
.woocommerce-checkout .woocommerce-customer-details .woocommerce-column__title {
    display: none;
}