/* Floating contact button */
.contact-container {
    position: fixed;
    bottom: 130px;
    right: 85px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.contact-container.show {
    opacity: 1;
    pointer-events: auto;
}

.contact-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.contact-main img,
.contact-item img {
    width: 100%;
    height: auto;
}

.contact-item {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.contact-container:hover .contact-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.contact-container:hover .contact-item:nth-of-type(2) {
    transition-delay: 0.1s;
}

.contact-container:hover .contact-item:nth-of-type(3) {
    transition-delay: 0.2s;
}

.contact-container:hover .contact-item:nth-of-type(4) {
    transition-delay: 0.3s;
}

/* Hide compare button */
.group-action .shop-action .woosc-btn,
.single-product .summary .woosc-btn,
.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--compare {
    display: none !important;
}

@media (max-width: 1024px) {
    .contact-container {
        bottom: 110px;
        right: 35px;
    }
}

@media (max-width: 576px) {
    .contact-container {
        bottom: 90px;
        right: 10px;
    }

    .contact-main {
        width: 50px;
        height: 50px;
    }
}

/* Google login button */
.social-login-divider {
    position: relative;
    text-align: center;
    margin: 30px 0 20px;
}

.social-login-divider::before,
.social-login-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #ddd;
}

.social-login-divider::before {
    left: 0;
}

.social-login-divider::after {
    right: 0;
}

.social-login-divider span {
    background: #f5f5f5;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.nsl-container {
    display: flex;
    justify-content: center;
}

#customer_login > div.u-column2.col-2 > form > p:nth-child(3) {
    margin: 0 0 0.8rem;
}

.logged-in .social-login-divider,
.logged-in .nsl-container,
.logged-in .sunverge-google-bottom,
.logged-in .sunverge-google-center,
.woocommerce-info[role="status"] {
    display: none !important;
}

/* Header/cart colors */
.header-group-action .site-header-wishlist .count,
.header-group-action .site-header-cart .count,
.site-header-wishlist .header-wishlist:hover .count,
.site-header-cart .cart-contents:hover .count {
    background-color: #68bd3c;
}

/* General button colors */
button[class="woocommerce-button button woocommerce-form-login__submit"],
form.woocommerce-form-register button[type="submit"],
button[name="apply_coupon"],
button[name="update_cart"],
a.checkout-button,
.woocommerce-button.button.view {
    background-color: #68bd3c;
}

form.woocommerce-form-login button[type="submit"]:hover,
form.woocommerce-form-register button[type="submit"]:hover {
    background-color: #2a600e !important;
}

/* General layout */
.mega-menu .elementor-icon-list-items li {
    text-align: left;
}

.price {
    font-size: 1rem;
}

.entry-content {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

#vision-more-info-btn {
    cursor: pointer;
}

.fade-switching {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-visible {
    opacity: 1;
    transition: opacity 0.5s ease;
}

form.woocommerce-form-register {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.site-header-account .account-dropdown a.register-link {
    color: #000 !important;
    font-weight: bold;
    text-decoration: underline;
}

footer ul li {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.aunuca-products-grid ul li {
    border: 1px solid #e5e5e5;
    background: #fff;
    box-sizing: border-box;
    transition: 0.3s ease;
}

.aunuca-products-grid ul li:hover {
    border-color: #cfcfcf;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.product-caption {
    padding: 0 8px;
}

#content #primary .site-main article {
    padding: 0 15px;
}

/* Single product buy now button layout */
.single-product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.single-product form.cart .quantity_wrap {
    order: 1;
    flex: 0 0 auto;
}

.single-product form.cart .single_add_to_cart_button:not(.sunverge-checkout-btn) {
    order: 2;
    flex: 1;
    min-width: 350px;
}

.single-product form.cart .product_button {
    order: 3;
    flex: 1;
    display: flex;
    width: fit-content;
    max-width: 150px;
}

.single-product form.cart .sunverge-checkout-btn {
    order: 4;
    flex: 1;
    width: 100%;
}

/* Product page installment text */
.sunverge-installment-box {
    display: inline-block;
    margin-bottom: 15px;
    color: #222;
    font-size: 20px;
    line-height: 1.3;
    background: #fff;
}

.sunverge-installment-box strong {
    font-weight: 700;
}
/* Check Out button: green to white animation */
#sunverge-checkout-now.sunverge-checkout-btn {
    background: #68bd3c !important;
    border: 1px solid #68bd3c !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

#sunverge-checkout-now.sunverge-checkout-btn .button-wrapper,
#sunverge-checkout-now.sunverge-checkout-btn .button-text,
#sunverge-checkout-now.sunverge-checkout-btn i,
#sunverge-checkout-now.sunverge-checkout-btn svg,
#sunverge-checkout-now.sunverge-checkout-btn svg *,
#sunverge-checkout-now.sunverge-checkout-btn .button-wrapper::before {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
    position: relative;
    z-index: 5;
}

#sunverge-checkout-now.sunverge-checkout-btn .blob-btn__inner,
#sunverge-checkout-now.sunverge-checkout-btn .blob-btn__blobs {
    display: block !important;
}

#sunverge-checkout-now.sunverge-checkout-btn .blob-btn__blob {
    background: #ffffff !important;
}

#sunverge-checkout-now.sunverge-checkout-btn:hover {
    background: #68bd3c !important;
    border-color: #68bd3c !important;
    color: #68bd3c !important;
}

#sunverge-checkout-now.sunverge-checkout-btn:hover .button-wrapper,
#sunverge-checkout-now.sunverge-checkout-btn:hover .button-text,
#sunverge-checkout-now.sunverge-checkout-btn:hover i,
#sunverge-checkout-now.sunverge-checkout-btn:hover svg,
#sunverge-checkout-now.sunverge-checkout-btn:hover svg *,
#sunverge-checkout-now.sunverge-checkout-btn:hover .button-wrapper::before {
    color: #68bd3c !important;
    fill: #68bd3c !important;
    stroke: #68bd3c !important;
}

#sunverge-checkout-now.sunverge-checkout-btn::after {
    color: #ffffff !important;
    position: relative;
    z-index: 9;
}

#sunverge-checkout-now.sunverge-checkout-btn:hover::after {
    color: #68bd3c !important;
}

/* Checkout/order received breadcrumb */
.breadcrumb-order-received {
    display: none;
    background-image: url("https://sunvergeliving.com/wp-content/uploads/2026/03/Order_Received_Page.jpg") !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: 460px;
    padding: 120px 0;
}

.breadcrumb-checkout {
    display: block;
    background-image: url("https://sunvergeliving.com/wp-content/uploads/2026/03/Checkout_Page.jpg") !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: 460px;
    padding: 120px 0;
}

.woocommerce-order-received .breadcrumb-checkout {
    display: none !important;
}

.woocommerce-order-received .breadcrumb-order-received {
    display: block !important;
}

/* Header/menu */
.main-navigation ul.menu > li.menu-item > a {
    padding: 6px 8px;
}

.main-navigation ul.menu > li.menu-item:hover > a {
    background-color: #68bd3c;
}

#SR7_1_1 .aunuca_bullets .sr7-bullet::after {
    background-color: #68bd3c !important;
    box-shadow: 0 0 1px #68bd3c !important;
}

.elementor-211 .elementor-element.elementor-element-312de4a {
    border-width: 0 0 2px 0;
    border-color: #000;
}

.product-category {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

/* Elementor widths */
@media (min-width: 1400px) {
    .elementor-277 .elementor-element.elementor-element-c6f6172,
    .elementor-277 .elementor-element.elementor-element-092c357 {
        --width: 15%;
    }

    .elementor-277 .elementor-element.elementor-element-72ad363 {
        --width: 70%;
    }
}

@media (min-width: 768px) {
    .elementor-277 .elementor-element.elementor-element-c6f6172,
    .elementor-277 .elementor-element.elementor-element-092c357 {
        --width: 10%;
    }

    .elementor-277 .elementor-element.elementor-element-72ad363 {
        --width: 80%;
    }
}

.elementor-277 .elementor-element.elementor-element-e071bdd {
    --container-widget-width: 90%;
}

@media (max-width: 1600px) {
    .menu-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .menu a {
        font-size: 14px !important;
        font-weight: 700 !important;
    }

    .sub-menu a {
        font-size: 14px !important;
        font-weight: 400 !important;
    }
}

@media (max-width: 767px) {
    .single-product form.cart {
        gap: 12px;
    }

    .single-product form.cart .quantity_wrap,
    .single-product form.cart .single_add_to_cart_button,
    .single-product form.cart .sunverge-checkout-btn {
        flex: 0 0 100%;
        width: 100%;
    }

    .single-product form.cart .single_add_to_cart_button {
        min-width: 100%;
    }

    .single-product form.cart .sunverge-checkout-btn {
        justify-content: center;
        border: 1px solid #68bd3c !important;
        border-radius: 999px;
        min-height: 52px;
    }
}

@media (max-width: 576px) {
    .elementor-249 .elementor-element.elementor-element-dce30a5.elementor-element {
        width: 100%;
    }

    .home-intro-content {
        padding: 0 15px;
    }
	
	.price {
		 font-size: .75rem;
	}
}

body.page-id-28382 .entry-header,
body.page-id-28382 h1.entry-title {
    display: none !important;
}

/* Below Price Customize content*/
.sunverge-customize-box {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 20px 24px;
    background: #f7f7f7;
    border-left: 4px solid #62bd36;
    border-radius: 10px;
}

.sunverge-customize-box p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.sunverge-customize-box p strong {
    font-size: 18px;
    color: #111;
}

.sunverge-customize-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 24px;
    background: #62bd36;
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none !important;
}

.sunverge-customize-btn:hover {
    background: #4fa52b;
    color: #fff !important;
}



/*========= Checkout Delivery Content ===========*/
/* Checkout notice under right order box */
.woocommerce-checkout .sv-checkout-right-notice {
    width: 41%;
    float: right;
    clear: right;
    margin-top: 28px;
    padding: 24px 28px;
    border-radius: 14px;
    box-sizing: border-box;
}

.woocommerce-checkout .sv-checkout-right-notice h3 {
    color: #d32f2f;
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 12px;
    font-weight: 700;
}

.woocommerce-checkout .sv-checkout-right-notice p {
    color: #d32f2f;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 12px;
}

.woocommerce-checkout .sv-checkout-right-notice p:last-child {
    margin-bottom: 0;
}

.woocommerce-checkout .sv-checkout-right-notice a {
    color: #d32f2f;
    font-weight: 700;
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 767px) {
    .woocommerce-checkout .sv-checkout-right-notice {
        width: 100%;
        float: none;
        clear: both;
        margin-top: 24px;
        padding: 18px 20px;
    }

    .woocommerce-checkout .sv-checkout-right-notice h3 {
        font-size: 21px;
    }

    .woocommerce-checkout .sv-checkout-right-notice p {
        font-size: 14px;
    }
}

/* ===== Checkout Payment Radio Buttons - Clean Final Fix ===== */

/* Remove fake icon before payment box */
.woocommerce-checkout #payment::before {
    content: none !important;
    display: none !important;
}

/* Keep all payment radio inputs functional but hidden visually */
.woocommerce-checkout #payment input[type="radio"],
.woocommerce-checkout #payment input.input-radio {
    position: absolute !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    pointer-events: none !important;
}

/* Make labels clickable and aligned */
.woocommerce-checkout #payment input[type="radio"] + label,
.woocommerce-checkout #payment input.input-radio + label {
    display: inline-flex !important;
    align-items: center !important;
    cursor: pointer !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* Create visible radio circle beside every payment option label */
.woocommerce-checkout #payment input[type="radio"] + label::before,
.woocommerce-checkout #payment input.input-radio + label::before {
    content: "" !important;
    display: inline-block !important;
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    margin-right: 10px !important;
    border: 2px solid #62bd36 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
}

/* Selected radio style */
.woocommerce-checkout #payment input[type="radio"]:checked + label::before,
.woocommerce-checkout #payment input.input-radio:checked + label::before {
    background: #62bd36 !important;
    box-shadow: inset 0 0 0 4px #ffffff !important;
}

/* Main payment method spacing */
.woocommerce-checkout #payment ul.payment_methods > li,
.woocommerce-checkout #payment ul.wc_payment_methods > li {
    padding: 16px 0 !important;
    position: relative !important;
}

/* Stripe saved card options spacing */
.woocommerce-checkout #payment .woocommerce-SavedPaymentMethods li,
.woocommerce-checkout #payment .wc-saved-payment-methods li {
    margin-bottom: 12px !important;
    position: relative !important;
}

/* Keep card box spacing normal */
.woocommerce-checkout #payment .payment_box {
    margin-top: 15px !important;
}

/* Hide selected menu items on desktop */
@media (min-width: 1025px) {
    .mobile-menu-only {
        display: none !important;
    }
}

/* Show selected menu items on tablet/mobile */
@media (max-width: 1024px) {
    .mobile-menu-only {
        display: block !important;
    }
}

/* Hide mobile search form on desktop */
@media (min-width: 1025px) {
    .sv-mobile-product-search {
        display: none !important;
    }
}

/* Mobile menu search form */
@media (max-width: 1024px) {
    .sv-mobile-product-search {
        display: block !important;
        padding: 18px 0 !important;
        border-top: 1px solid #e5e5e5;
        margin-top: 10px;
    }

    .sv-mobile-search-form {
        display: flex;
        gap: 8px;
        width: 100%;
        align-items: center;
    }

    .sv-mobile-search-input {
        flex: 1;
        width: 100%;
        height: 42px;
        padding: 10px 14px;
        border: 1px solid #dcdcdc;
        border-radius: 30px;
        font-size: 14px;
        outline: none;
    }

    .sv-mobile-search-input:focus {
        border-color: #62bd36;
    }

    .sv-mobile-search-btn {
        height: 42px;
        padding: 0 18px;
        border: none;
        border-radius: 30px;
        background: #62bd36;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
    }

    .sv-mobile-search-btn:hover {
        background: #4fa52b;
        color: #ffffff;
    }
}

/* ===== Fix big white space on single product mobile image ===== */
@media (max-width: 767px) {

    .single-product div.product div.images,
    .single-product .woocommerce-product-gallery {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin-bottom: 18px !important;
        padding-bottom: 0 !important;
        float: none !important;
        overflow: hidden !important;
    }

    .single-product .woocommerce-product-gallery__wrapper,
    .single-product .woocommerce-product-gallery__image,
    .single-product .woocommerce-product-gallery__image a {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
        display: block !important;
    }

    .single-product .woocommerce-product-gallery img,
    .single-product div.product div.images img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 auto !important;
        padding: 0 !important;
        object-fit: contain !important;
    }

    .single-product div.product div.summary,
    .single-product .summary {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .single-product .woocommerce-product-gallery + .summary {
        margin-top: 0 !important;
    }
}