/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/

.single .heading-title[data-header-style=default_minimal] {
    padding-top: 0;
}

.single .container-wrap.no-sidebar {
    padding-top: 0;
}

/*
 * START TEAM SEO work for Trello issue #93 Blog Section Improvements – Staging Site Ready for Review(MMX)
 */

/*
 * BLOG PAGE
*/
.masonry.classic .inner-wrap .post-featured-img img {
    height: 235px !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block;
}

.masonry.classic .post-meta {
    display: none !important;
}

.posts-container {
    display: flex !important;
    flex-wrap: wrap !important;
    height: auto !important;
    width: 100% !important;
    justify-content: flex-start;
    margin: 0 auto !important;
}

/* Responsive Logic */

/* Desktop (Default: 3 Columns) */
.masonry.classic .masonry-blog-item {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    display: flex !important;
    width: 31.33% !important;
    margin: 1% !important;
    padding: 0 !important;
}

/* Tablet (2 Columns) */
@media only screen and (max-width: 1024px) {
    .masonry.classic .masonry-blog-item {
        width: 48% !important;
        margin: 1% !important;
    }
}

/* Mobile (1 Column) */
@media only screen and (max-width: 767px) {
    .masonry.classic .masonry-blog-item {
        width: 96% !important;
        margin: 2% auto !important;
    }

    .masonry.classic .inner-wrap .post-featured-img img {
        height: 200px !important;
    }
}

/* Card Styling & Equal Heights */
.masonry.classic .inner-wrap {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

.masonry.classic .article-content-wrap {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    padding: 20px !important;
}

.masonry.classic .excerpt {
    flex-grow: 1 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/**
 * SIDEBAR
 * TABLE OF CONTENTS
 */

/* Main Container: Fixed to the left with increased top spacing */
.mmx-dialpad-row-centered {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    position: fixed !important;
    left: 40px !important;
    top: 300px !important;
    width: 280px !important;
    z-index: 100 !important;
    margin: 0 !important;
    gap: 10px !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

/* TOC Container Styling */
#ez-toc-container {
    background: #ffffff !important;
    border: 1px solid #e1e1e7 !important;
    border-radius: 12px !important;
    width: 100% !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    margin-bottom: 0 !important;
}

#ez-toc-container nav,
#ez-toc-container.toc_close nav {
    display: block !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
}

 #ez-toc-container li, #ez-toc-container ul li, div.ez-toc-widget-container, div.ez-toc-widget-container li {
  line-height: 0.6px !important;
}

/* Hide the Toggle Button/Icon Completely */
.ez-toc-title-toggle,
.ez-toc-pull-right,
.ez-toc-btn {
    display: none !important;
}

/* Sidebar Header Styling */
.ez-toc-title {
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #283c8f !important;
    margin-bottom: 15px !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
}

/* List Items Styling */
.ez-toc-list {
    padding: 0 !important;
    margin: 0 !important;
}

.ez-toc-list li {
    padding: 10px 0 !important;
    border-bottom: 1px solid #f5f5f7 !important;
    list-style: none !important;
}

.ez-toc-list li a {
    color: #444 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
    display: block;
}

.ez-toc-list li a:hover {
    color: #283c8f !important;
    padding-left: 5px;
    transition: all 0.2s ease;
}

/* Share Section */
.mmx-share-col {
    margin-top: 5px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding-left: 40px !important;
}

.mmx-share-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.mmx-share-link-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    position: relative !important;
}

.mmx-copy-toast {
    position: absolute !important;
    top: -30px !important;
    left: 0 !important;
    background: #283c8f !important;
    color: #fff !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    font-size: 10px !important;
    font-weight: normal !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease !important;
    white-space: nowrap !important;
}

.mmx-copy-toast.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.mmx-share-text {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #283c8f !important;
    letter-spacing: 0.5px !important;
}

.mmx-sidebar-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Responsive: Mobile Flow */
@media (max-width: 1250px) {
    .mmx-dialpad-row-centered {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        max-width: 350px !important;
        margin: 40px auto !important;
        align-items: center !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mmx-share-col {
        justify-content: center !important;
        padding-left: 0 !important;
    }
}

/**
 * RELATED POSTS WITH IMAGES & HOVER EFFECTS
 */
.mmx-related-section {
    margin: 80px auto 40px auto !important;
    padding-top: 40px !important;
    border-top: 1px solid #e1e1e7 !important;
    clear: both;
}

.mmx-fake-heading {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 30px !important;
}

.mmx-post-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

.mmx-post-card a {
    text-decoration: none !important;
    display: block;
}

/* Image container with fixed aspect ratio */
.mmx-card-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.mmx-post-card:hover .mmx-card-image {
    transform: scale(1.03);
}

.mmx-post-tag {
    display: block !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    color: #283c8f !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
}

.mmx-post-card-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111 !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    min-height: 45px;
}

.mmx-post-date {
    font-size: 12px !important;
    color: #999 !important;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .mmx-post-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
    .mmx-post-grid { grid-template-columns: 1fr !important; }
}

/*
 * DESKTOP STICKY SIDEBAR LOGIC
 *
*/
@media only screen and (min-width: 1300px) {
    .single-post .container-wrap,
    .single-post .post-area,
    .single-post .post-content {
        margin-left: 60px !important;
    }

    .mmx-sidebar-sticky-wrapper {
        position: sticky !important;
        top: 120px;
        float: left;
        z-index: 10;
        display: block;
    }

    @media (min-width: 1600px) {
        .mmx-sidebar-sticky-wrapper {
            width: 260px;
            margin-left: -340px;
        }
    }

    @media (max-width: 1599px) {
        .mmx-sidebar-sticky-wrapper {
            width: 220px;
            margin-left: -290px;
        }
        #ez-toc-container {
            padding: 15px !important;
        }
        #ez-toc-container li {
            font-size: 13px !important;
        }
    }

    #page-header-wrap { z-index: 20; position: relative; }
    .container-wrap { overflow: visible !important; }
}

/* --- RESPONSIVE FIXES (TABLET/MOBILE) --- */
@media only screen and (max-width: 1299px) {
    .mmx-sidebar-sticky-wrapper {
        position: relative !important;
        width: 100%;
        max-width: 100%;
        margin: 20px 0 !important;
        float: none !important;
    }
    #ez-toc-container {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .single-post .container-wrap,
    .single-post .post-area {
        margin-left: 0 !important;
    }
}

/* --- GENERAL UI STYLING --- */
#ez-toc-container {
    border: 1px solid #e1e1e1;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    word-wrap: break-word;
}

.mmx-share-link-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    margin-top: 20px;
    position: relative;
}

.mmx-share-text {
    font-size: 11px;
    font-weight: bold;
    color: #283c8f;
    letter-spacing: 1px;
}

.mmx-share-icon { width: 16px; height: 16px; }

.mmx-copy-toast {
    position: absolute;
    top: -30px;
    left: 0;
    background: #283c8f;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.mmx-copy-toast.show { opacity: 1; }

/* --- POST KEYWORDS STYLING --- */
.post-keywords-wrapper {
    margin-top: 50px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    clear: both;
    font-family: inherit;
}

.keyword-label {
    font-weight: 700;
    font-size: 13px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 5px;
}

.post-keyword-pill {
    background-color: #f5f5f5 !important;
    color: #444 !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: inline-block;
}

.post-keyword-pill:hover {
    background-color: #283c8f !important;
    color: #ffffff !important;
    border-color: #283c8f !important;
    box-shadow: 0 4px 10px rgba(40, 60, 143, 0.2);
    transform: translateY(-2px);
}

.bottom-meta {
    margin-top: 20px !important;
    border-top: none !important;
}

/*
 *  BLOG CATEGORY PAGE
*/
.container.main-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.container-wrap {
    padding-top: 0 !important;
}

/*
 * Add spacing above the Summarize/Share section
*/
.bottom-meta {
    margin-top: 40px !important;
    margin-bottom: 20px;
    padding-top: 20px;
    clear: both;
}

.molemax-ai-label {
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

/*
 * Blog Category
 */
.molemax-categories-injected {
    margin: 0px 0 45px 0;
    text-align: center;
    width: 100%;
    clear: both;
    display: block;
}

.molemax-cat-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-family: "Montserrat", sans-serif;
}

.molemax-cat-list li {
    list-style: none !important;
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

/* Single Separator Dot */
.molemax-cat-list li:not(:last-child):after {
    content: "•";
    margin-left: 25px;
    color: #ccc;
    font-size: 14px;
    pointer-events: none;
}

.molemax-cat-list li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: #283c8f;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 4px;
}

/* Animated Underline on Hover */
.molemax-cat-list li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #283c8f;
    transition: width 0.3s ease;
}

.molemax-cat-list li a:hover::after {
    width: 100%;
}

/* Mobile View */
@media only screen and (max-width: 690px) {
    .molemax-cat-list {
        flex-direction: column;
        gap: 15px;
    }
    .molemax-cat-list li:after {
        display: none !important;
    }
    .molemax-categories-injected {
        margin-bottom: 30px;
    }
}


/*
 * END TEAM SEO work for Trello issue #93 Blog Section Improvements – Staging Site Ready for Review(MMX)
 */


 /*
 * START PRODUCT DESIGN CHANGES
 */

/*----PRODUCT CATEGORY PAGE CUSTOMIZATION----*/
body #ajax-content-wrap ul.products li.minimal.product span.onsale,
body .nectar-woo-flickity ul.products li.minimal.product span.onsale,
body .products.columns-4 li.product span.onsale {
    position: absolute !important;
    top: 15px !important;
    right: 0px !important;
    left: auto !important;

    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;

    padding: 10px 18px !important;
    background-color: #ff3300 !important;
    color: #ffffff !important;
    z-index: 100 !important;

    line-height: 1 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    display: inline-block !important;
}

.products.columns-4 li.product {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
}

.products.columns-4 li.product .woocommerce-loop-product__title,
.products.columns-4 li.product .price {
    padding-right: 0px !important;
    display: block !important;
}

.products.columns-4 li.product .product-meta {
    width: 100% !important;
    padding: 15px 0 0 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
}

.products.columns-4 li.product .product-main-meta {
    flex: 1 !important;
    width: auto !important;
    padding: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
}

.products.columns-4 li.product .woocommerce-loop-product__title,
.products.columns-4 li.product .price,
.products.columns-4 li.product .wcpbc-price {
    text-align: left !important;
    margin: 5px 0 !important;
    padding-left: 0 !important;
    display: block !important;
}

.products.columns-4 li.product .background-color-expand,
.products.columns-4 li.product .product-wrap,
.products.columns-4 .product-add-to-cart {
    border-radius: 0 !important;
    text-align: left !important;
    margin-left: 0 !important;
}

.product-meta .price,
.product-meta .price .woocommerce-Price-amount,
.product-meta .price .woocommerce-price-suffix {
    color: #283C8F !important;
}




/*CART LINK TO ICON*/
.product-image-wrap .product-add-to-cart,
.product-image-wrap .button.add_to_cart_button {
    display: none !important;
}

.custom-cart-wrapper {
    margin-top: 5px !important;
    display: flex !important;
    flex-shrink: 0 !important;
    margin-left: 10px !important;
}

.custom-ajax-cart svg {
    display: block;
    position: static !important;
    width: 30px !important;
    height: 30px !important;
}

.custom-cart-wrapper a.custom-ajax-cart,
.custom-cart-wrapper a.custom-ajax-cart.added,
.custom-cart-wrapper a.custom-ajax-cart.loading,
.products .product .custom-cart-wrapper a.added {
    background-color: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

.custom-ajax-cart.added::after {
    content: '✓';
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin-left: 8px;
    font-weight: bold;
    display: inline-block !important;
    background: none !important;
}

.custom-ajax-cart.loading::after,
.custom-ajax-cart.added::before {
    display: none !important;
}

.minimal.product,
.minimal.product .background-color-expand,
.minimal.product .product-wrap {
    border-radius: 0px !important;
}

.minimal.product .product-image-wrap,
.minimal.product .product-image-wrap img {
    border-radius: 0px !important;
}

.minimal.product .product-add-to-cart a,
.minimal.product .custom-cart-wrapper a {
    border-radius: 0px !important;
}




/*REVIEW CSS*/
.product-meta .product-main-meta .price,
.product-meta .product-main-meta .price .wcpbc-price {
    display: block !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1 !important;
}

.woocommerce-price-suffix {
    line-height: 1 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.custom-product-rating {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    margin-top: 10px !important;
    padding-top: 0 !important;
    line-height: 1 !important;
}

.custom-product-rating .stars {
    color: #ffff00;
    font-size: 18px;
    margin-right: 5px;
    letter-spacing: -1px;
}

.custom-product-rating .rating-number {
    font-size: 15px;
    font-weight: 500;
    color: #444;
}





/*PRODUCT CATEGORY BREADCRUMB AND PAGE TITLE*/
.nectar-shop-header {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.nectar-shop-header .woocommerce-breadcrumb {
    flex: 0 0 100% !important;
    order: 1 !important;
    margin-bottom: 15px !important;
}

.nectar-shop-header h1.page-title {
    flex: 0 1 auto !important;
    order: 2 !important;
    margin: 0 !important;
    padding-bottom: 10px !important;
}

.nectar-shop-header .woocommerce-result-count {
    order: 3 !important;
    margin-left: auto !important;
    margin-right: 15px !important;
    font-size: 14px !important;
    color: #777 !important;
}

.nectar-shop-header form.woocommerce-ordering {
    flex: 0 1 auto !important;
    order: 4 !important;
    margin: 0 !important;
}

.nectar-shop-header .woocommerce-products-header,
header.woocommerce-products-header {
    flex: 0 0 100% !important;
    order: 5 !important;
    margin-top: 45px !important;
    display: block !important;
    clear: both !important;
}

@media (max-width: 768px) {
    .nectar-shop-header {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .nectar-shop-header .woocommerce-result-count {
        display: none !important;
    }

    .nectar-shop-header h1.page-title {
        margin-bottom: 0 !important;
        flex: 0 1 auto !important;
    }

    .nectar-shop-header form.woocommerce-ordering {
        width: auto !important;
        margin-left: auto !important;
    }

    .woocommerce-ordering select.orderby {
        width: auto !important;
    }

    header.woocommerce-products-header {
        margin-top: 30px !important;
    }
}




/* ----SELECT BOX STYLING ----*/
.woocommerce-ordering select.orderby {
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    padding: 8px 30px 8px 12px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
    background-size: 20px !important;
}

.woocommerce-ordering select.orderby:focus {
    outline: none !important;
    box-shadow: none !important;
}





/* ----Product FAQ Accordion----*/
.mmx-faq-section { padding: 50px 0; background: #fff; clear: both; }
.faq-main-title { font-size: 24px; font-weight: 600; margin-bottom: 25px; color: #000; }

.accordion-item { margin-bottom: 12px; width: 100%; }
.accordion-toggle { display: none; }

.accordion-header {
    width: 100%; background-color: #edeff7; display: flex;
    justify-content: space-between; align-items: center;
    padding: 20px 25px; cursor: pointer; border-radius: 4px;
    transition: background 0.2s ease;
}
.accordion-header:hover { background-color: #e2e4f0; }
.q-text { font-size: 17px; color: #111; font-weight: 500; }

.chevron {
    width: 8px; height: 8px; border-right: 2px solid #000;
    border-bottom: 2px solid #000; transform: rotate(45deg);
    transition: transform 0.25s cubic-bezier(0.2, 0, 0.4, 1);
    margin-left: 15px; flex-shrink: 0;
}

.accordion-panel {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height;
    background: #f9f9fb;
    border-radius: 0 0 4px 4px;
}

.panel-inner { padding: 20px 25px; border-top: 1px solid rgba(0,0,0,0.03); }
.panel-inner p { margin: 0; font-size: 16px; line-height: 1.6; color: #444; }

.accordion-toggle:checked ~ .accordion-header .chevron { transform: rotate(-135deg); }
.accordion-toggle:checked ~ .accordion-panel { max-height: 600px; }




/* ----Add to Cart and Quantity Layout----*/
form.cart {
    display: block !important;
}

/* Keeps quantity selector and Add To Cart button in one row */
form.cart .quantity,
form.cart .single_add_to_cart_button {
    display: inline-flex !important;
    vertical-align: middle !important;
    float: none !important;
    height: 38px !important;
}

form.cart .quantity {
    width: 118px !important;
    height: 38px !important;
    border: 1.5px solid #d1d1d1 !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    background-color: #ffffff !important;
    box-sizing: border-box !important;
    align-items: center !important;
    justify-content: space-between !important;
}

form.cart .quantity input::-webkit-outer-spin-button,
form.cart .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

form.cart .quantity input[type="number"] {
    -webkit-appearance: textfield !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

form.cart .quantity .minus {
    order: 1 !important;
}

form.cart .quantity input.qty {
    order: 2 !important;
    width: 38px !important;
    height: 100% !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
    text-align: center !important;
    padding: 0 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #333 !important;
}

form.cart .quantity .plus {
    order: 3 !important;
}

form.cart .quantity .plus,
form.cart .quantity .minus {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border: none !important;
    background: transparent !important;
    color: #333 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    box-shadow: none !important;
}

form.cart .quantity .plus:hover,
form.cart .quantity .minus:hover {
    color: #00a8aa !important;
}

form.cart .single_add_to_cart_button {
    margin-left: 10px !important;
    padding: 0 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    min-width: 120px !important;
    border-radius: 30px !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #00a8aa !important;
    color: #ffffff !important;
    border: none !important;
    transition: opacity 0.2s ease;
}

form.cart .single_add_to_cart_button:hover {
    opacity: 0.9;
}

.woocommerce div.product form.cart .variations_button .single_add_to_cart_button {
    max-width: 120px !important;
}

form.cart .flex-break {
    display: none !important;
}




/**
 * STYLESHEET: Stripe & PayPal Express Checkout Button Alignment
 * DESCRIPTION: Custom layout for express payment buttons (PayPal, Google Pay, and Link).
 * COMPATIBILITY: Desktop (3-column inline) | Mobile (2+1 stacked layout).
 */
#wc-stripe-express-checkout-element {
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    margin: -13px 0 25px 0 !important;
    width: auto !important;
    max-width: 390px !important;
    height: 40px !important;
    min-height: 40px !important;
    clear: both !important;
}

#wc-stripe-express-checkout-element-googlePay,
#wc-stripe-express-checkout-element-link,
.ppc-button-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    flex: 1 1 0% !important;
    max-width: 150px !important;
    border-radius: 50px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

#wc-stripe-express-checkout-element-googlePay *,
#wc-stripe-express-checkout-element-link *,
.ppc-button-wrapper *,
#wc-stripe-express-checkout-element iframe,
.ppc-button-wrapper iframe {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.ppc-button-wrapper { background-color: #ffc439 !important; order: 1 !important; }
#wc-stripe-express-checkout-element-googlePay { background-color: #000000 !important; order: 2 !important; }
#wc-stripe-express-checkout-element-link { background-color: #00d66f !important; order: 3 !important; }

.ppc-button-wrapper iframe {
    transform: scale(1.0) !important;
    transform-origin: center !important;
    width: 100% !important;
    height: 100% !important;
}

#wc-stripe-express-checkout-element-googlePay iframe {
    transform: scale(0.55) !important;
    transform-origin: center !important;
}

#wc-stripe-express-checkout-element-link iframe {
    transform: scale(0.85) !important;
    transform-origin: center !important;
}

#wc-stripe-express-checkout-element-googlePay:hover { opacity: 0.7 !important; }
.ppc-button-wrapper:hover { background-color: #e2ae32 !important; }
#wc-stripe-express-checkout-element-link:hover { background-color: #00b35d !important; }

@media (max-width: 767px) {
    #wc-stripe-express-checkout-element {
        flex-wrap: wrap !important;
        flex-flow: row wrap !important;
        height: auto !important;
        min-height: auto !important;
    }

    .ppc-button-wrapper,
    #wc-stripe-express-checkout-element-googlePay {
        flex: 1 1 calc(50% - 5px) !important;
        max-width: 100% !important;
    }

    #wc-stripe-express-checkout-element-link {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        margin-top: 5px !important;
    }
}




/* ----Product Trust Badges----*/
.product-trust-badges {
    margin-top: 10px !important;
    display: block !important;
    width: 100%;
    clear: both !important;
    text-align: left;
}

.product-trust-badges h4.trust-badges-title {
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    text-transform: none !important;
    letter-spacing: -0.2px !important;
    line-height: 1.2 !important;
}

.trust-logos-flex {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

.trust-logo-item {
    flex: 0 1 auto;
}

.trust-logo-item img {
    max-width: 100%;
    height: auto;
    display: block !important;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-logo-item img:hover {
    opacity: 1;
}

.trust-logo-item.logo-1 { max-width: 120px; }
.trust-logo-item.logo-2 { max-width: 140px; }

@media screen and (max-width: 992px) {
    .product-trust-badges {
        margin-top: 10px;
        text-align: center;
    }

    .trust-logos-flex {
        justify-content: center !important;
        gap: 15px !important;
    }
}

@media screen and (max-width: 480px) {
    .trust-logo-item.logo-1 { max-width: 100px; }
    .trust-logo-item.logo-2 { max-width: 120px; }

    .product-trust-badges h4.trust-badges-title {
        font-size: 13px !important;
    }
}




/* ----Product Details Sidebox----*/
.summary-flex-container {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 335px !important;
    clear: both !important;

    margin-top: 8px !important;
    margin-bottom: 14px !important;

    transform: translateY(-18px) !important;

    margin-left: -30px !important;

    position: relative !important;
    z-index: 10 !important;
    pointer-events: none;
}

.summary-right-side {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 335px !important;
    pointer-events: auto;
    position: static !important;
    margin: 0 !important;
}

.product-details-sidebox {
    background-color: #f3f5f6 !important;
    border-radius: 15px !important;
    padding: 18px 20px !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    width: 100% !important;
}

.details-title {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
}

.details-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.details-item {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 13px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    color: #333 !important;
}

.details-item:last-child {
    margin-bottom: 0 !important;
}

.product-details-sidebox .item-text {
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.check-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-right: 12px;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300c853' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='8 12 11 15 16 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}




/* ----Trusted By Section----*/
.summary.entry-summary > b:last-of-type,
.summary.entry-summary > strong:last-of-type {
    display: block !important;
    clear: both !important;
    position: relative !important;
    margin-top: 0 !important;
}

.summary.entry-summary .trusted-logos-container,
.summary.entry-summary img[src*="Australian-Skin-Cancer-Clinics"] {
    margin-top: 8px !important;
}

.summary.entry-summary .price,
.summary.entry-summary .product_title {
    margin-top: 0 !important;
    position: relative;
    z-index: 20;
}

@media (max-width: 1200px) {

    .summary-flex-container {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: flex-start !important;
        margin-left: 0 !important;
        margin-top: 16px !important;
        margin-bottom: 18px !important;
        transform: none !important;
    }

    .summary-right-side {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .product-details-sidebox {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .summary.entry-summary > b:last-of-type,
    .summary.entry-summary > strong:last-of-type {
        margin-top: 18px !important;
    }
}




/*
 * THUMNBAIL AND GALLERY IMAGE
 * SINGLE DETAIL PRODUCT PAGE
 */
.mmx-status-bar {
    margin-top: -30px;
}

.woocommerce-product-details__short-description {
    margin-top: 50px !important;
}

.flex-control-thumbs {
    max-height: 540px !important;
}

.woocommerce-tabs
.single-product-summary .woocommerce-tabs.wc-tabs-wrapper
.single-product-summary .woocommerce-tabs.wc-tabs-wrapper {
    width: 220% !important;
    left: -110% !important;
}
.single-product-summary .woocommerce-tabs.wc-tabs-wrapper {
    width: 200% !important;
    left: -105% !important;
}
.woocommerce-tabs .woocommerce-Tabs-panel {
    max-width: 1300px !important;
}
.woocommerce-tabs .woocommerce-Tabs-panel {
    max-width: 100% !important;
    overflow-x: auto !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed;
}
body:not(.woocommerce-cart) .main-content table {
   max-width: 100% !important;
    overflow-x: auto !important;
}
body:not(.woocommerce-cart) .main-content table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed;
}





/*New Change*/
@media (max-width: 1400px) {
    #wc-stripe-express-checkout-element {
        flex-wrap: wrap !important;
        flex-flow: row wrap !important;
        height: auto !important;
        min-height: auto !important;
        max-width: 360px !important;
        margin-bottom: 25px !important;
        overflow: visible !important;
    }

    .ppc-button-wrapper,
    #wc-stripe-express-checkout-element-googlePay {
        flex: 1 1 calc(50% - 5px) !important;
        max-width: 170px !important;
        min-width: 120px !important;
    }

    #wc-stripe-express-checkout-element-link {
        flex: 1 1 100% !important;
        max-width: 350px !important;
        min-width: 120px !important;
        margin-top: 5px !important;
    }
}
.single-product .product-details-sidebox {
    transform: translateX(35px) !important;
}





/*
 * UNIFIED WOOCOMMERCE GALLERY OVERRIDE V15
 * SAME HEIGHT FIX
 */
.woocommerce-product-gallery {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row-reverse !important;
    align-items: stretch !important;
    margin-bottom: 30px !important;
    width: 100% !important;
}

.woocommerce-product-gallery .flex-viewport {
    flex: 1 !important;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    height: 500px !important;
}

.woocommerce-product-gallery .flex-viewport img {
    width: 100% !important;
    height: 500px !important;
    object-fit: contain !important;
}

.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
    display: flex !important;
    flex-direction: column !important;
    width: 80px !important;
    margin: 0 15px 0 0 !important;
    overflow-y: auto !important;
    scrollbar-width: none;
    gap: 10px !important;
    order: 2;
}

.flex-control-nav.flex-control-thumbs li {
    width: 70px !important;
    height: 70px !important;
    flex: 0 0 70px !important;
    list-style: none !important;
}

.woocommerce-product-gallery
.flex-control-nav.flex-control-thumbs::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .single-product-main-image,
    .woocommerce-product-gallery {
        display: block !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }

    .woocommerce-product-gallery .flex-viewport {
        width: 100% !important;
        height: 350px !important;
        margin: 0 auto !important;
        touch-action: pan-y !important;
    }

    .woocommerce-product-gallery .flex-viewport img {
        width: 100% !important;
        height: 350px !important;
        object-fit: contain !important;
    }

    .woocommerce-product-gallery
    .flex-control-nav.flex-control-thumbs {
        display: block !important;
        white-space: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        margin: 15px 0 !important;
        padding: 10px 0 !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-x !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .flex-control-nav.flex-control-thumbs li {
        display: inline-block !important;
        width: 75px !important;
        height: 75px !important;
        margin-right: 12px !important;
        float: none !important;
        vertical-align: top !important;
    }

    .flex-control-nav.flex-control-thumbs li img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .flex-control-nav.flex-control-thumbs::-webkit-scrollbar {
        display: none !important;
    }
}




/* Single-product native price styling */
.single-product div.product .summary p.price {
    display: block;
    margin: 10px 0 10px !important;
    color: #2e4594 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
}

.single-product div.product .summary p.price .amount {
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}


/*
 * END PRODUCT DESIGN CHANGES
 */