/*
Theme Name: Woodmart Child
Theme URI: https://xtemos.com/woodmart/
Description: Woodmart Child Theme
Author: XTEMOS
Author URI: https://xtemos.com
Template: woodmart
Version: 1.0.0
Text Domain: woodmart
*/

/**
 * Product Detail Page Customizations
 */

/* 1. Back to Shop Link Styling */

.back-to-shop-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 800;
    color: #888;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.back-to-shop-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

.back-icon {
    display: flex;
    align-items: center;
}

/* 2. Sticky Product Image */
@media (min-width: 1025px) {
    .product-image-summary {
        display: flex !important;
        align-items: flex-start !important;
    }

    .product-image-summary .col-lg-6:first-child {
        position: sticky !important;
        top: 40px !important; /* Adjusted top for cleaner look */
        align-self: flex-start !important;
        z-index: 10;
        height: min-content;
    }
}

/* 3. Thumbnails Below Main Image Adjustments */
/* Support both the filtered option and any persistent classes */
.woocommerce-product-gallery.thumbs-position-bottom,
.woocommerce-product-gallery.thumbs-position-left {
    display: flex !important;
    flex-direction: column !important;
    top: 120px;
    position: sticky;
}

/* Ensure main image is on top */
.woocommerce-product-gallery.thumbs-position-bottom .wd-gallery-images,
.woocommerce-product-gallery.thumbs-position-left .wd-gallery-images,
.woocommerce-product-gallery.thumbs-position-left .children-relative-wrapper {
    order: 1 !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

/* Ensure thumbnails are below */
.woocommerce-product-gallery.thumbs-position-bottom .wd-gallery-thumb,
.woocommerce-product-gallery.thumbs-position-left .thumbnails,
.woocommerce-product-gallery.thumbs-position-left .wd-gallery-thumb {
    order: 2 !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-top: 20px !important;
}

/* Fix for Woodmart's specific thumbnail display styles */
.woocommerce-product-gallery.thumbs-position-left .wd-gallery-thumb {
    margin-left: 0 !important;
}

/* General refinement for thumbnails */
.wd-gallery-thumb .wd-carousel-wrap {
    display: flex !important;
    gap: 15px !important;
}

.wd-gallery-thumb .wd-carousel-item {
    width: 100px !important;
    height: 100px !important;
    flex: 0 0 100px !important;
    background-color: #0b0b0b !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.wd-gallery-thumb .wd-carousel-item:hover,
.wd-gallery-thumb .wd-carousel-item.active {
    border-color: #fff !important;
}

.wd-gallery-thumb .wd-carousel-item img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important; /* Ensures the whole image/certification is visible without cropping */
}

.single-product .product_title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 48px !important;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

/* 4. Product Summary Design Polishing */
.summary .price {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 25px !important;
    display: block !important;
}

.summary .woocommerce-product-details__short-description {
    font-size: 16px !important;
    line-height: 30px;
    color: #aaa;
    margin-bottom: 30px;
}

/* Moved Tabs Styling */
.summary .woocommerce-tabs {
    margin: 40px 0 30px !important;
    border: none !important;
}

.summary .woocommerce-tabs ul.tabs {
    display: flex !important;
    gap: 10px !important;
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 25px !important;
    border-bottom: 1px solid #222 !important;
    justify-content: flex-start;
}

.summary .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    padding: 0 0 10px 0 !important;
    margin: 0 !important;
}

.summary .woocommerce-tabs ul.tabs li a {
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px;
    color: #555 !important;
    padding: 0 20px !important;
    transition: color 0.3s;
}


.summary .woocommerce-tabs ul.tabs li.active a {
    color: #fff !important;
}

.summary .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 0 !important;
    font-size: 14px;
    line-height: 1.7;
    color: #999;
}

/* Research Use Only Box Styling */
/* Assuming it has a identifying container or we target the probable output */
.summary .wd-add-cart-msg, 
.summary div[class*="research-use"],
.summary .elementor-element-31374 { /* Specific to the shortcode observed in functions.php */
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid #a7a7a7 !important;
    padding: 25px !important;
    border-radius: 4px !important;
    margin-top: 40px !important;
}

.summary .elementor-element-31374 h4,
.summary .research-title {
    font-family: 'Space Grotesk' !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #fff !important;
    margin-bottom: 15px !important;
    display: block !important;
}

.summary .elementor-element-31374 p {
    font-size: 12px !important;
    line-height: 1.6 !important;
    color: #777 !important;
    margin: 0 !important;
}

/* Potency/Size Pills Polish */
.summary .variations label {
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 15px;
}

/* 1. Shop Search & Filters */
.custom-shop-filters {
    margin-bottom: 50px;
}

.shop-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.shop-search {
    flex-grow: 1;
    position: relative;
}

.shop-search input {
    background: #000 !important;
    border-radius: 100px !important;
    height: 55px !important;
    padding: 0 30px 0 55px !important;
    color: #fff !important;
    font-size: 14px !important;
    width: 100% !important;
    transition: border-color 0.3s;
}

.shop-search input:focus {
    border-color: #fff !important;
}

.shop-search .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fefefe;
    pointer-events: none;
}

.shop-sort select {
    background: #000 !important;
    border: 1px solid #2563FF !important;
    border-radius: 100px !important;
    color: #919191 !important;
    height: 55px !important;
    font-size: 12px !important;
    padding: 0 15px 0px 25px !important;
}

.shop-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cat-pill {
    padding: 10px 25px;
    background: #050505;
    border: 1px solid #111;
    border-radius: 100px;
    color: #222;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.cat-pill:hover,
.cat-pill.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* No Products Found Styling */
.no-products-found-wrap {
    padding: 20px;
    text-align: center;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no-results-icon {
    margin-bottom: 40px;
    opacity: 0.5;
    border: 1px solid var(--zentra-primary);
}

.no-results-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #eee !important;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 12px !important;
}

.no-results-text {
    font-size: 15px;
    color: #6a6868;
    margin-bottom: 45px !important;
    font-weight: 500;
}

.clear-filters-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid var(--zentra-primary);
    border-radius: 100px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clear-filters-btn:hover {
    border: 1px solid white;
}

/* 2. Checkout & Cart Design */

.summary .wd-swatches-grid {
    gap: 10px !important;
}

.summary .wd-swatch {
    background: #111 !important;
    border: 1px solid #222 !important;
    color: #888 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
}

.summary .wd-swatch.wd-active {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

/* Quantity Section Redesign */
.summary .cart .quantity {
    display: inline-flex !important;
    align-items: center;
    background: #050505 !important;
    border: 1px solid var(--zentra-primary) !important;
    border-radius: 8px !important;
    margin-right: 20px !important;
    margin-bottom: 0 !important;
    height: 50px !important;
}

.summary .cart .quantity-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

/* Quantity Label */
.summary .cart .quantity-label {
    font-size: 10px;
    font-weight: 800;
    color: #555;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.summary .cart .quantity input.qty {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    width: 50px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 0 !important;
    text-align: center !important;
}

.summary .cart .quantity input[type="button"] {
    background: var(--zentra-primary) !important;
    border: none !important;
    color: #fff !important;
    width: 35px !important;
    height: 100% !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    cursor: pointer;
    transition: color 0.3s;
}

.summary .cart .quantity input[type="button"]:hover {
    color: #fff !important;
}

/* Stock Status next to quantity */
.summary .woocommerce-variation-add-to-cart {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
}

.summary .woocommerce-variation-availability {
    margin-bottom: 0 !important;
}

.summary .stock {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #7c7c7c !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

/* Add to Cart Button Polish */
.summary button.single_add_to_cart_button {
    background: #fff !important;
    color: #000 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px;
    height: 65px !important;
    border-radius: 100px !important; /* Updated to pill shape */
    width: 100% !important; /* Full width as requested */
    margin-top: 30px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    font-weight: 700;
    position: relative !important; /* For absolute icon positioning */
    overflow: hidden;
}

/* Disable Woodmart default loading spinner pseudo-elements */
.summary button.single_add_to_cart_button:before,
.summary button.single_add_to_cart_button:after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
}

.summary button.single_add_to_cart_button .btn-content-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.summary button.single_add_to_cart_button .cart-btn-icon {
    position: relative;
    left: -20px;
    transition: transform 0.3s ease;
}

.summary button.single_add_to_cart_button:hover .cart-btn-icon {
    transform: scale(1.1);
}

.summary button.single_add_to_cart_button.is-loading {
    opacity: 0.8;
}

@keyframes coa-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Toast Notification Styling */
.biocollex-toast-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--zentra-primary);
    padding: 20px 30px;
    border-radius: 12px;
    z-index: 999999;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
}

.biocollex-toast-wrap.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--zentra-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.toast-msg {
    font-size: 13px;
    color: #999;
    line-height: 1.4;
}

.toast-msg .product-name {
    color: #fff;
    font-weight: 700;
}

/* 5. Frequently Bought Bundle Design */
.frequently-bought-bundle {
    background: #000;
    border: 1px solid #453b2d !important;
    padding: 30px;
    border-radius: 4px;
    margin-top: 40px !important;
    display: none;
}

.bundle-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
    color: var(--zentra-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.bundle-icon {
    display: flex;
    color: var(--zentra-primary);
}

.bundle-items {
    border-bottom: 1px solid #222;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.bundle-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #fff;
}

.item-dot {
    width: 6px;
    height: 6px;
    background: #453b2d;
    border-radius: 50%;
    margin-right: 15px;
}

.item-name {
    flex: 1;
    font-weight: 600;
}

.item-price {
    font-weight: 700;
}

.bundle-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bundle-total-wrap {
    display: flex;
    flex-direction: column;
}

.total-label {
    font-size: 11px;
    color: #666;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.total-amount {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.add-all-cart-btn {
    background: #c29b63 !important;
    color: #000 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 18px 30px !important;
    border-radius: 40px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.add-all-cart-btn:hover {
    background: #d4ae75 !important;
    transform: scale(1.03);
}

.btn-icon {
    display: flex;
}


@media(max-width: 767px){
    .bundle-footer{
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .bundle-total-wrap{
        display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    }
    .frequently-bought-bundle{
        padding: 18px;
    }
}

/* Certificate of Analysis (COA) Section Styling */
.coa-section {
    padding: 60px 0;
}

.coa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.coa-header-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--zentra-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--zentra-primary);
}

.coa-header-text h2 {
    font-family: 'Space Grotesk';
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.coa-header-text p {
    font-size: 11px;
    color: #666;
    letter-spacing: 1px;
    margin: 0;
}

.coa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 10px;
}

.coa-card {
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--zentra-primary);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coa-card:hover {
    border-color: #222;
    background: rgba(255, 255, 255, 0.02);
}

.coa-card.is-latest {
    border-color: var(--zentra-primary);
}

.coa-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--zentra-primary);
    color: var(--zentra-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    border: 1px solid rgba(194, 160, 93, 0.2);
}

.coa-card-content {
    margin-top: 40px; /* Space for badge if present */
    margin-bottom: 10px;
}

.is-latest .coa-card-content {
    margin-top: 40px;
}

/* .coa-card:not(.is-latest) .coa-card-content {
    margin-top: 0;
} */

.coa-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.coa-label {
    font-size: 12px;
    color: #ffffff59;
}

.coa-value {
    font-size: 12px;
    color: #fff9;
}

.coa-value.highlight {
    color: var(--zentra-primary);
    font-size: 14px;
}

.view-coa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--zentra-primary);
    color: #fafafa !important;
    text-decoration: none !important;
    padding: 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px !important;
}

.view-coa-btn:hover {
    background: rgba(var(--zentra-primary-rgb), 0.48);
    color: #fff;
    border-color: var(--zentra-primary);
}

@media (max-width: 480px) {
    .coa-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .coa-section{
        padding: 20px 0 20px 0;
    }
    .coa-section .container{
        padding: 0;
    }
    .shop-sort select{
        border: none !important;
        height: 100% !important;
    }
    .single-product .product_title{
        font-size: 30px !important;
        margin-top: 36px;
    }

    .summary button.single_add_to_cart_button{
        font-size: 12px !important;
        font-weight: 700;
    }
}

/* Custom Mini-Cart Popup (Premium Design) */
.biocollex-cart-popup-inner {
    position: fixed;
    top: 50px;
    right: 30px;
    width: 380px;
    background: black;
    border: 1px solid var(--zentra-primary);
    border-radius: 6px;
    z-index: 999999 !important; /* Higher than theme overlays */
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
    
    /* Base state (Invisible) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    /* Transition for CLOSING: Fast transform snap, slow opacity fade */
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.5s, 
                transform 0s 0.5s; 
}

.biocollex-cart-popup-inner.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Transition for OPENING: Smooth slide and fade */
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.6s, 
                transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.biocollex-cart-popup-inner .popup-header {
    color: #4a4a4a;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #0f0f0f;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-close {
    background: none;
    border: none;
    color: #7c7c7c;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    transition: all 0.3s ease;
    margin-top: -3px;
}

.popup-close:hover {
    background: none;
}

.popup-items {
    max-height: 380px;
    overflow-y: auto;
    margin-bottom: 25px;
    padding-right: 5px;
}

/* Custom scrollbar for popup */
.popup-items::-webkit-scrollbar {
    width: 2px;
}
.popup-items::-webkit-scrollbar-track {
    background: transparent;
}
.popup-items::-webkit-scrollbar-thumb {
    background: #1a1a1a;
}

.popup-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.popup-item-img img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover !important;
    border-radius: 4px;
    background: #050505;
}

.popup-item-details {
    flex-grow: 1;
    padding-top: 2px;
}

.popup-item-details .item-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
}

.popup-item-details .item-qty {
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 500;
}

.item-price {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-top: 2px;
}

.popup-more-items {
    color: #a7a7a7;
    font-size: 12px;
    font-weight: 600;
    margin-top: -8px;
    margin-bottom: 15px;
    padding-left: 76px; /* Align with text */
}

.popup-footer {
    padding-top: 20px;
}

.popup-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-top: 15px;
    border-top: 1px solid #0f0f0f;
}

.popup-subtotal-row span:first-child {
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 600;
}

.popup-subtotal-row span:last-child {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.popup-view-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 58px;
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.popup-view-cart:hover {
    background: #f0f0f0;
    color: black;
    transform: translateY(-2px);
}

.popup-view-cart svg {
    transition: transform 0.3s ease;
}

.popup-view-cart:hover svg {
    transform: translateX(5px);
}

/* Supress Woodmart Default Cart Sidebar and Overlay */
.cart-widget-side,
.wd-cart-side,
.wd-close-side,
.wd-side-hidden-sidebar-opened .wd-close-side {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    position: fixed;
    left: -9999px; /* Absolute removal from viewport */
}

body.wd-side-hidden-sidebar-opened {
    overflow: auto !important;
    padding-right: 0 !important;
}

@media (max-width: 768px) {
    .biocollex-cart-popup-inner {
        width: calc(100% - 40px);
        right: 20px;
        top: 20px;
    }
}

/* Product Card Hover Enhancements */
.product-grid-item .product-image-link {
    overflow: hidden !important;
}

.product-grid-item .product-image-link img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.product-grid-item:hover .product-image-link img {
    transform: scale(1.1);
}

/* Disable Gallery Image Swap on Hover */
.product-grid-item .hover-img {
    display: none !important;
}

/* Hide Quick View Button/Icon */
.wd-quick-view-icon,
.wd-quick-view-btn,
.quick-view {
    display: none !important;
}

/* Hide 'View Cart' link after adding to cart (conflicts with custom popup) */
.added_to_cart,
.wc-forward:not(.popup-view-cart) {
    display: none !important;
}

/* Ensure Shop Loop Buttons are Full Width and have consistent animations */
.product-grid-item .add_to_cart_button,
.product-grid-item .product_type_variable {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
}

/* Global Ajax Add to Cart Loading State */
.ajax_add_to_cart.loading {
    opacity: 0.6 !important;
    position: relative;
    color: transparent !important; /* Hide text while loading */
}

.ajax_add_to_cart.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    margin-left: -9px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Hide Compare/Wishlist if needed for clean look (Optional but recommended for premium feel) */
.wd-compare-btn,
.wd-wishlist-btn {
    display: none !important;
}

/* Product Specification Display (Single Product Page) */
.product-badge-wrap {
    font-size: 10px;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-separator {
    color: #414141;
    font-weight: 400;
    font-size: 14px;
}

.purity-label {
    color: #777;
}

.product_title {
    margin-bottom: 8px !important;
}

.product-dosage-label {
    font-size: 15px;
    font-weight: 500;
    color: #a7a7a7;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.discount-amount-wrap .woocommerce-remove-coupon {
    display: none !important;
}

/* Loader for Order Summary during AJAX */
.cart-summary-col.processing .order-summary-card {
    pointer-events: none;
    opacity: 0.7;
}

.cart-summary-col.processing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 99;
    border-radius: 4px;
}

.cart-summary-col.processing::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 100;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.quick-shop-shown .quick-shop-wrapper{
    display: none;
}

/* Custom Checkout Auth Layout */
.custom-checkout-auth-container {
    max-width: 500px;
    margin: 60px auto;
    font-family: 'Space Grotesk', sans-serif;
}

.custom-checkout-auth-container .auth-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: none;
}

.custom-checkout-auth-container .auth-tab {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #a7a7a7;
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-checkout-auth-container .auth-tab.active {
    color: #fff;
    border-bottom-color: #fff;
}

.custom-checkout-auth-container .auth-tab:hover {
    color: #fff;
}

.custom-checkout-auth-container label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #888;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.custom-checkout-auth-container label .required {
    color: #ff4d4d;
}

.custom-checkout-auth-container .input-text {
    width: 100%;
    background: #000;
    border: 1px solid #a7a7a7;
    border-radius: 4px;
    padding: 15px;
    color: #fff;
    font-size: 14px;
    height: auto;
    outline: none;
    transition: border-color 0.3s;
}

.custom-checkout-auth-container .input-text:focus {
    border-color: #a7a7a7;
}

.custom-checkout-auth-container .auth-fields-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-checkout-auth-container .auth-field-col {
    flex: 1;
}

.custom-checkout-auth-container .auth-field {
    margin-bottom: 20px;
}

.custom-checkout-auth-container .password-field-wrap .password-input-container {
    position: relative;
}

.custom-checkout-auth-container .password-field-wrap .show-password-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
}

.custom-checkout-auth-container .auth-terms {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.custom-checkout-auth-container .auth-terms .custom-checkbox-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.custom-checkout-auth-container .auth-terms .custom-checkbox-wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    margin: 0; 
    top: 0;
    left: 0;
    z-index: 2;
}

.custom-checkout-auth-container .auth-terms .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #a7a7a7;
    border-radius: 4px;
    pointer-events: none;
}

.custom-checkout-auth-container .auth-terms input:checked ~ .checkmark {
    background-color: #fff;
    border-color: #fff;
}

.custom-checkout-auth-container .auth-terms .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkout-auth-container .auth-terms input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkout-auth-container .auth-terms-label {
    color: #888;
    font-size: 13px;
    text-transform: none;
    font-weight: 500;
    letter-spacing: normal;
    margin-top: 2px;
}

.custom-checkout-auth-container .auth-terms-label a {
    color: #fff;
    text-decoration: underline;
}

.custom-checkout-auth-container .auth-submit-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 25px;
    transition: background-color 0.3s;
}

.custom-checkout-auth-container .auth-submit-btn:hover {
    background: #e6e6e6;
}

.custom-checkout-auth-container .auth-forgot-password {
    text-align: center;
    margin-bottom: 25px;
    margin-top: -10px;
}

.custom-checkout-auth-container .auth-forgot-password a {
    color: #555;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.3s;
}

.custom-checkout-auth-container .auth-forgot-password a:hover {
    color: #fff;
}

.custom-checkout-auth-container .auth-login-link {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.custom-checkout-auth-container .auth-login-link a {
    color: #fff;
    text-decoration: underline;
}

/* ===================================================
   MY ACCOUNT ï¿½?? Auth container (login/register page)
   =================================================== */
.myaccount-auth-container {
    max-width: 520px;
    margin: 40px auto 60px;
}

/* ===================================================
   MY ACCOUNT ï¿½?? Premium Dashboard (bx- prefix)
   =================================================== */
.bx-dashboard {
    font-family: 'Space Grotesk', sans-serif;
    color: #666;
    padding: 10px 0 60px;
}

/* Top bar */
.bx-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.bx-topbar-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--zentra-primary);
    text-transform: uppercase;
}

.bx-signout {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.bx-signout:hover { color: #fff; }

/* Identity */
.bx-identity { margin-bottom: 35px; }

.bx-name {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 5px !important;
    letter-spacing: -1px;
    line-height: 1;
}

.bx-email {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Stats Grid Cards Layout */
.bx-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
    padding: 0;
    border: none;
}

.bx-stat {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--zentra-primary);
    border-radius: 8px;
    padding: 22px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bx-stat:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: #252525;
    transform: translateY(-2px);
}

.bx-stat-icon {
    color: var(--zentra-primary);
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.bx-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.bx-stat-lbl {
    font-size: 9px;
    font-weight: 800;
    color: #555;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Tabs */
.bx-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #111;
    margin-bottom: 35px;
    overflow-x: auto;
}

.bx-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 22px 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: color 0.3s, border-color 0.3s;
}

.bx-tab svg {
    color: #fff;
    transition: color 0.3s, transform 0.3s;
}

.bx-tab:hover { color: #000000; background: white; }
.bx-tab:hover svg {
    color: #000000;
    transform: scale(1.05);
}

.bx-tab.active {
    color: var(--zentra-primary);
    border-bottom-color: var(--zentra-primary);
}

.bx-tab.active svg {
    color: var(--zentra-primary);
}

/* Panels */
.bx-panels-container {
    min-height: 250px;
}

.bx-panel { display: none; }
.bx-panel.active { display: block; }

/* Table */
.bx-table-wrap { overflow-x: auto; }

.bx-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.bx-table th {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #7c7c7c;
    text-align: left;
    padding: 0 20px 14px 0;
    border-bottom: 1px solid #111;
    text-transform: uppercase;
}

.bx-table td {
    padding: 15px 20px 15px 0;
    color: #666;
    border-bottom: 1px solid #0c0c0c;
    font-size: 13px;
}

.bx-table tbody tr {
    transition: background-color 0.2s ease;
}

.bx-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.005);
}

.bx-td-white { color: #ccc !important; }

.bx-badge {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #111;
    color: #555;
}
.bx-badge-completed  { background: rgba(194,160,93,0.12); color: var(--zentra-primary); }
.bx-badge-processing { background: rgba(255,255,255,0.05); color: #aaa; }
.bx-badge-pending    { background: rgba(255,80,80,0.08);   color: #ff6b6b; }
.bx-badge-on-hold    { background: rgba(255,200,80,0.08);  color: #e8b84b; }
.bx-badge-cancelled  { background: rgba(100,100,100,0.08); color: #555; }
 
.bx-view-link {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #7c7c7c;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
    white-space: nowrap;
}
.bx-view-link:hover { color: #fff; }

/* CTA buttons */
.bx-cta {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #a7a7a7;
    border-radius: 30px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
.bx-cta:hover { background: #fff; color: #000; border-color: #fff; }
.bx-cta-ghost { border-color: #7c7c7c; color: #fefefe; }
.bx-cta-ghost:hover { background: #ff4444; color: #fff; border-color: #ff4444; }

/* Welcome banner */
.bx-welcome-banner {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid #a7a7a7;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}
.bx-welcome-banner h3 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 10px !important;
}
.bx-welcome-banner p {
    font-size: 14px;
    line-height: 1.7;
    color: #777;
    margin: 0;
}
.bx-inline-link {
    color: var(--zentra-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.bx-inline-link:hover {
    color: #fff;
    text-decoration: underline;
} 

/* Empty state */
.bx-empty {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0 30px;
}
.bx-empty p { color: #7c7c7c; font-size: 14px; margin: 0; }

/* Section label */
.bx-section-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Address grid */
.bx-addr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bx-addr-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid #a7a7a7;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bx-addr-card:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: #202020;
}

.bx-addr-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--zentra-primary);
    text-transform: uppercase;
}

.bx-addr-body {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    flex: 1;
}

.bx-addr-empty { color: #666; font-style: italic; font-size: 13px; }

.bx-addr-edit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #eaeaea;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}
.bx-addr-edit:hover { color: #fff; }

/* Account detail rows */
.bx-acct-rows { padding: 5px 0; }

.bx-acct-row {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #4c4c4c;
    gap: 20px;
}

.bx-acct-lbl {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #555;
    text-transform: uppercase;
    min-width: 140px;
    flex-shrink: 0;
}

.bx-acct-val {
    font-size: 14px;
    color: #888;
}

/* Endpoint Subpages Content Wrapper & Overrides */
.bx-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    color: #666;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s, transform 0.3s;
}

.bx-back-link:hover {
    color: #fff;
    transform: translateX(-3px);
}

/* ===================================================
   WOOCOMMERCE ACCOUNT PAGES & FORM OVERRIDES
   =================================================== */

.bx-endpoint-content h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px !important;
    border-bottom: 1px solid #a7a7a7;
    padding-bottom: 10px;
}

.woocommerce-EditAccountForm,
.woocommerce-address-fields__field-wrapper {
    max-width: 700px;
}

.woocommerce-form-row,
.form-row {
    margin-bottom: 20px !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.woocommerce-form-row label,
.form-row label {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    color: #666 !important;
    text-transform: uppercase !important;
    margin-bottom: 0 !important;
}

.woocommerce-form-row label .required,
.form-row label .required {
    color: var(--zentra-primary) !important;
    text-decoration: none !important;
}

/* Inputs styling */
.bx-endpoint-content input[type="text"],
.bx-endpoint-content input[type="email"],
.bx-endpoint-content input[type="tel"],
.bx-endpoint-content input[type="password"],
.bx-endpoint-content select,
.bx-endpoint-content textarea {
    background-color: #050505 !important;
    border: 1px solid #a7a7a7 !important;
    border-radius: 6px !important;
    color: #fff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 14px !important;
    height: 48px !important;
    padding: 0 15px !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.bx-endpoint-content textarea {
    height: auto !important;
    padding: 15px !important;
}

.bx-endpoint-content input[type="text"]:focus,
.bx-endpoint-content input[type="email"]:focus,
.bx-endpoint-content input[type="tel"]:focus,
.bx-endpoint-content input[type="password"]:focus,
.bx-endpoint-content select:focus,
.bx-endpoint-content textarea:focus {
    border-color: var(--zentra-primary) !important;
    outline: none !important;
    background-color: #080808 !important;
    box-shadow: 0 0 10px rgba(194, 160, 93, 0.05) !important;
}

/* WooCommerce Select2 override */
.bx-endpoint-content .select2-container--default .select2-selection--single {
    background-color: #050505 !important;
    border: 1px solid #a7a7a7 !important;
    border-radius: 6px !important;
    height: 48px !important;
}
.bx-endpoint-content .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    line-height: 48px !important;
    padding-left: 15px !important;
}
.bx-endpoint-content .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
}

/* Form Buttons */
.bx-endpoint-content button.button {
    background: var(--zentra-primary) !important;
    color: #000 !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    height: 50px !important;
    padding: 0 35px !important;
    border-radius: 100px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.bx-endpoint-content button.button:hover {
    background: #d4ae75 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 5px 15px rgba(194, 160, 93, 0.2) !important;
}

/* Password change legend block */
.bx-endpoint-content fieldset {
    border: 1px solid #a7a7a7 !important;
    border-radius: 8px !important;
    padding: 25px !important;
    margin: 35px 0 20px !important;
    background: rgba(255, 255, 255, 0.005) !important;
}

.bx-endpoint-content fieldset legend {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    color: var(--zentra-primary) !important;
    text-transform: uppercase !important;
    padding: 0 10px !important;
    background: #000 !important;
}

/* Orders Details Screen (view-order subpage) overrides */
.woocommerce-order-details {
    margin-top: 35px !important;
}
.woocommerce-order-details h2.woocommerce-order-details__title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 20px !important;
}
.woocommerce-table--order-details {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 30px !important;
}
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    border-bottom: 1px solid #0d0d0d !important;
    padding: 15px 10px !important;
    text-align: left !important;
    color: #888 !important;
    background: transparent !important;
}
.woocommerce-table--order-details th {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    color: #7c7c7c !important;
    text-transform: uppercase !important;
}
.woocommerce-table--order-details td a {
    color: #fff !important;
    text-decoration: none !important;
}
.woocommerce-table--order-details td a:hover {
    color: var(--zentra-primary) !important;
}
.woocommerce-table--order-details tr.woocommerce-table__line-item td:first-child {
    color: #fff !important;
    font-weight: 700 !important;
}
.woocommerce-table--order-details tfoot th {
    color: #dedede !important;
}
.woocommerce-table--order-details tfoot td {
    color: #fff !important;
    font-weight: 800 !important;
}

/* Address summary boxes inside order details */
.woocommerce-customer-details {
    margin-top: 40px !important;
    border-top: 1px solid #a7a7a7 !important;
    padding-top: 30px !important;
}
.woocommerce-customer-details h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 20px !important;
}
.woocommerce-columns--addresses {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
}
@media (max-width: 768px) {
    .woocommerce-columns--addresses {
        grid-template-columns: 1fr !important;
    }
}
.woocommerce-column--billing-address,
.woocommerce-column--shipping-address {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid #a7a7a7 !important;
    border-radius: 8px !important;
    padding: 25px !important;
}
.woocommerce-column__title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    color: var(--zentra-primary) !important;
    text-transform: uppercase !important;
    margin-bottom: 15px !important;
    border: none !important;
    padding: 0 !important;
}
.woocommerce-customer-details address {
    font-style: normal !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #888 !important;
}

/* WooCommerce Notices Styling */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    border-left: 3px solid var(--zentra-primary) !important;
    border-radius: 4px !important;
    color: #fff !important;
    padding: 15px 20px !important;
    font-size: 13px !important;
    margin-bottom: 25px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    list-style: none !important;
}
.woocommerce-error {
    border-left-color: #ff4d4d !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 5px !important;
}
.woocommerce-message a.button,
.woocommerce-error a.button,
.woocommerce-info a.button {
    background: #1a1a1a !important;
    color: #fff !important;
    font-size: 10px !important;
    padding: 6px 15px !important;
    height: auto !important;
    border-radius: 20px !important;
    margin: 0 !important;
}
.woocommerce-message a.button:hover,
.woocommerce-error a.button:hover,
.woocommerce-info a.button:hover {
    background: #fff !important;
    color: #000 !important;
}

/* Responsive stats */
@media (max-width: 991px) {
    .bx-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .bx-name { font-size: 28px !important; }
    .bx-stats { gap: 15px; }
    .bx-stat { padding: 18px 20px; }
    .bx-stat-num { font-size: 26px; }
    .bx-addr-grid { grid-template-columns: 1fr; }
    .bx-acct-row { flex-direction: column; align-items: flex-start; gap: 6px; }
    .bx-acct-lbl { min-width: unset; }
}


/* ===================================================
   MY ACCOUNT ï¿½?? Premium Research Dashboard
   =================================================== */
.biocollex-dashboard {
    background: #000;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    padding: 30px 0 60px;
    min-height: 60vh;
}

/* Top bar */
.dashboard-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--zentra-primary);
    text-transform: uppercase;
}

.dashboard-signout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.dashboard-signout:hover { color: #fff; }

/* Identity */
.dashboard-identity { margin-bottom: 35px; }

.dashboard-name {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 6px !important;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.dashboard-email {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Stats */
.dashboard-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid #a7a7a7;
    border-bottom: 1px solid #a7a7a7;
    margin-bottom: 35px;
    padding: 25px 0;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 20px;
}

.stat-item svg { color: var(--zentra-primary); opacity: 0.7; }

.stat-value {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 9px;
    font-weight: 800;
    color: #7c7c7c;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Main Tabs */
.dashboard-main-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #a7a7a7;
    margin-bottom: 30px;
}

.dash-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #7c7c7c;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 20px 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: -1px;
    transition: color 0.3s, border-color 0.3s;
}

.dash-tab:hover { color: #fff; }

.dash-tab.active {
    color: var(--zentra-primary);
    border-bottom-color: var(--zentra-primary);
}

/* Panels */
.dash-panel,
.subpanel {
    display: none;
}

.dash-panel.active,
.subpanel.active {
    display: block;
}

/* Empty state */
.panel-empty-state {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0 30px;
    color: #a7a7a7;
}

.panel-empty-state p {
    color: #7c7c7c;
    font-size: 14px;
    margin: 0;
}

.panel-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #222;
    border-radius: 30px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.panel-cta-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Empty row (sub-panels) */
.panel-empty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: #a7a7a7;
    font-size: 13px;
    border-bottom: 1px solid #0e0e0e;
}

.new-entry-btn {
    background: transparent;
    border: 1px solid var(--zentra-primary);
    color: var(--zentra-primary);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.new-entry-btn:hover {
    background: var(--zentra-primary);
    color: #000;
}

/* Orders table */
.orders-table-wrap { overflow-x: auto; }

.dash-orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.dash-orders-table th {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #7c7c7c;
    text-align: left;
    padding: 0 15px 15px 0;
    border-bottom: 1px solid #a7a7a7;
}

.dash-orders-table td {
    padding: 15px 15px 15px 0;
    color: #888;
    border-bottom: 1px solid #0d0d0d;
}

.order-status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #a7a7a7;
    color: #555;
}

.order-status-badge.status-completed { background: rgba(194,160,93,0.1); color: var(--zentra-primary); }
.order-status-badge.status-processing { background: rgba(255,255,255,0.05); color: #aaa; }
.order-status-badge.status-pending { background: rgba(255,60,60,0.08); color: #ff6b6b; }

.view-order-link {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #555;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.view-order-link:hover { color: #fff; }

/* Quick links */
.dashboard-quick-links {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #0e0e0e;
}

.dashboard-quick-links a {
    font-size: 11px;
    font-weight: 700;
    color: #a7a7a7;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.dashboard-quick-links a:hover { color: #fff; }

/* Responsive */
@media (max-width: 767px) {
    .dashboard-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .stat-item { flex: 0 0 calc(50% - 10px); }
    .dashboard-main-tabs { overflow-x: auto; white-space: nowrap; }
    .dashboard-name { font-size: 26px !important; }
    .dashboard-quick-links { flex-direction: column; gap: 15px; }
}

/* ===================================================
   DASHBOARD ï¿½?? Additional Component Styles
   =================================================== */

/* Overview section label */
.overview-section-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #a7a7a7;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Address Cards */
.dash-addresses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 5px;
}

@media (max-width: 600px) {
    .dash-addresses-grid { grid-template-columns: 1fr; }
}

.dash-address-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid #a7a7a7;
    border-radius: 6px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address-card-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--zentra-primary);
    text-transform: uppercase;
}

.address-card-content {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
}

.address-empty {
    color: #2a2a2a;
    font-size: 13px;
    font-style: italic;
}

.address-edit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #7c7c7c;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
    margin-top: auto;
}

.address-edit-link:hover { color: #fff; }

/* Account Detail Rows */
.dash-account-details { padding: 5px 0; }

.account-detail-row {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #0d0d0d;
    gap: 20px;
}

.detail-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #a7a7a7;
    text-transform: uppercase;
    min-width: 130px;
}

.detail-value {
    font-size: 14px;
    color: #888;
}

.page .wd-page-content {
    background-color: rgba(5, 5, 5, 0.5) !important;
}

.wd-footer {
    background-color: rgba(5, 5, 5, 0.5) !important;
}

.woodmart-archive-shop:not(.single-product) .wd-page-content {
    background-color: rgba(5, 5, 5, 0.5) !important;
}

/* ï¿½??ï¿½?? Disable Header Loading & Sticky Transitions/Delays ï¿½??ï¿½?? */
.whb-header,
.whb-main-header,
.whb-row,
.whb-sticky-row,
.whb-sticky-row.whb-sticked,
.wd-header,
.wd-header-desktop,
.wd-header-sticky-row,
.header-main,
.elementor-element-2c64a55,
.elementor-sticky {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    transition-duration: 0s !important;
    animation-duration: 0s !important;
}





/* Fix: Gutenberg editor black background override */
body:not([class*="xts-wrapper-boxed"]) div.editor-styles-wrapper,
[class*="xts-wrapper-boxed"] div.is-root-container,
body.block-editor-iframe__body {
    background-color: #ffffff !important;
}

/* =============================================================================
   BUNDLE PRICING WIDGET  (biocollex-bundle-pricing)
   ============================================================================= */

.biocollex-bundle-pricing {
    margin: 8px 0 28px;
    font-family: 'Space Grotesk', sans-serif;
}

/* â??â?? Hide native WooCommerce elements replaced by the widget â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-hidden {
    display: none !important;
}
.bbp-native-hidden {
    display: none !important;
}

/* â??â?? Price Summary Bar â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-summary-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.bbp-stat {
    padding: 18px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.bbp-stat:last-child {
    border-right: none;
}

.bbp-stat-label {
    font-size: 8.5px;
    letter-spacing: 1.8px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 9px;
    white-space: nowrap;
}

.bbp-stat-total-price .bbp-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #555;
    line-height: 1;
}

.bbp-stat-total-price .bbp-stat-value s {
    text-decoration-color: #555;
}

.bbp-stat-discounted .bbp-stat-value {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.bbp-stat-units .bbp-stat-value {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.bbp-stat-savings .bbp-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--zentra-primary);
    line-height: 1;
}

.bbp-stat-savings .bbp-stat-value.bbp-savings-zero {
    color: #555;
}

.bbp-savings-badge {
    display: inline-block;
    background: #22c55e;
    color: #000;
    border-radius: 20px;
    padding: 3px 11px;
    font-size: 9.5px;
    font-weight: 800;
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bbp-savings-badge.bbp-badge-zero {
    background: #a7a7a7;
    color: #888888;
}

/* â??â?? Per-unit Note â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-per-unit-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #888;
    padding: 10px 4px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 26px;
}

.bbp-per-unit-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.bbp-per-unit-amount {
    color: #ffffff;
    font-weight: 700;
}

.bbp-per-unit-note em {
    color: #555;
    font-style: normal;
}

/* â??â?? Section Headers â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.bbp-section-title {
    font-size: 9.5px;
    letter-spacing: 2.2px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
}

.bbp-bulk-label {
    font-size: 9.5px;
    letter-spacing: 1.5px;
    color: var(--zentra-primary);
    font-weight: 700;
    text-transform: uppercase;
}

/* â??â?? Variant Toggle Buttons â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-variants-section {
    margin-bottom: 30px;
}

.bbp-variants-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bbp-variant-btn {
    padding: 13px 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: transparent;
    color: #bbb;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

.bbp-variant-btn:hover:not([disabled]) {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.bbp-variant-btn.active {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}
button.bbp-variant-btn.active:hover {
    color: black;
}

.bbp-variant-btn.out-of-stock {
    opacity: 0.35;
    cursor: not-allowed;
}

.bbp-oos-label {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #777;
    margin-top: 5px;
    letter-spacing: 0;
}

/* â??â?? Bundle Cards Grid â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-bundles-section {
    margin-bottom: 18px;
}

.bbp-bundles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.bbp-bundle-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 15px 10px 14px;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #888;
    user-select: none;
}

.bbp-bundle-card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.bbp-bundle-card.active {
    border-color: #ffffff;
    border-width: 2px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.bbp-bundle-card.highlighted {
    border-color: rgba(255, 255, 255, 0.25);
}

/* â??â?? Bundle badge (STARTER / MOST POPULAR / BEST VALUE) â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-bundle-top {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 24px;
}

.bbp-bundle-badge,
.bbp-badge-spacer {
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    min-height: 20px;
}

.bbp-badge-spacer {
    visibility: hidden;
}

.bbp-badge-green {
    background: var(--zentra-primary);
    color: #000;
}

.bbp-badge-outlined {
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: transparent;
}

.bbp-bundle-card.active .bbp-badge-outlined {
    border-color: #fff;
}

/* â??â?? Bundle qty label (e.g. "5 VIALS") â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-bundle-qty-label {
    font-size: 14px;
    font-weight: 800;
    color: inherit;
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.bbp-bundle-card.active .bbp-bundle-qty-label {
    color: #fff;
}

/* â??â?? Vial icons â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-bundle-icons {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
    margin: 6px 0 4px;
    min-height: 32px;
    flex-wrap: wrap;
}

.bbp-vial-icon {
    display: inline-block;
    width: 7px;
    height: 26px;
    background: currentColor;
    border-radius: 2px 2px 5px 5px;
    opacity: 0.45;
    position: relative;
    flex-shrink: 0;
}

.bbp-vial-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 4px;
    background: inherit;
    border-radius: 2px 2px 0 0;
}

.bbp-vial-row2 {
    height: 20px;
    opacity: 0.3;
}

.bbp-bundle-card.active .bbp-vial-icon {
    opacity: 0.85;
}

/* â??â?? Per-unit price inside card â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-bundle-per-unit {
    font-size: 12px;
    font-weight: 600;
    color: inherit;
    line-height: 1.5;
    text-align: center;
}

.bbp-bundle-per-unit strong {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.bbp-bundle-per-unit .bbp-orig-price {
    font-size: 10px;
    color: #555;
}

/* â??â?? Total inside card â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-bundle-total {
    font-size: 9.5px;
    letter-spacing: 1px;
    color: #555;
    text-transform: uppercase;
}

.bbp-bundle-card.active .bbp-bundle-total {
    color: #999;
}

/* â??â?? "SAVE X%" button inside card â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-bundle-save-badge {
    background: #22c55e;
    color: #000;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.bbp-bundle-save-zero {
    font-size: 9.5px;
    font-weight: 700;
    color: #3a3a3a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bbp-bundle-card.active .bbp-bundle-save-zero {
    color: #777;
}

/* â??â?? Description text â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-bundle-desc {
    font-size: 9.5px;
    color: #7c7c7c;
    text-align: center;
    line-height: 1.4;
    margin-top: 2px;
}

.bbp-bundle-card.active .bbp-bundle-desc {
    color: #888;
}

/* â??â?? Upgrade nudge banner â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-upgrade-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 10px;
    font-size: 12.5px;
    color: #888;
    background: rgba(34, 197, 94, 0.04);
    margin-top: 14px;
}

.bbp-upgrade-icon {
    font-size: 15px;
    color: #22c55e;
    flex-shrink: 0;
    line-height: 1;
}

.bbp-upgrade-banner-text strong {
    color: #fff;
}

.bbp-upgrade-banner.bbp-max-savings {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.08);
}

.bbp-upgrade-banner.bbp-max-savings .bbp-upgrade-icon {
    color: #22c55e;
    font-weight: bold;
}

/* â??â?? Responsive: tablet â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
@media (max-width: 860px) {
    .bbp-bundles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .bbp-summary-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .bbp-stat {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Remove right border on the second column */
    .bbp-stat:nth-child(2n) {
        border-right: none;
    }

    /* Remove bottom border on the last row */
    .bbp-stat:nth-child(3),
    .bbp-stat:nth-child(4) {
        border-bottom: none;
    }

    .bbp-stat-discounted .bbp-stat-value {
        font-size: 19px;
    }

    .bbp-stat-savings .bbp-stat-value {
        font-size: 17px;
    }

    .bbp-bundles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bbp-bundle-card {
        padding: 13px 8px 12px;
    }

    .bbp-bundle-qty-label {
        font-size: 12px;
    }

    .bbp-variant-btn {
        padding: 11px 18px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .bbp-stat-discounted .bbp-stat-value {
        font-size: 16px;
    }
    .bbp-bundle-per-unit strong {
        font-size: 12px;
    }
}

/* â??â?? Hide unwanted elements when bundle widget is active â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.bbp-active .summary .quantity,
.bbp-active .summary .wd-qty,
.bbp-active .summary label[for="quantity"],
.bbp-active .summary label[for*="quantity"],
.bbp-active .summary label[for*="qty"],
.bbp-active .summary .quantity-title,
.bbp-active .summary .quantity-label,
.bbp-active .summary .wd-qty-title,
.bbp-active .summary [class*="quantity-title"],
.bbp-active .summary [class*="qty-title"],
.bbp-active .summary .woocommerce-tabs,
.bbp-active .summary .woocommerce-variation,
.bbp-active .summary .wd-single-variation,
.bbp-active .summary .single_variation,
.bbp-active .summary [class*="31374"],
.bbp-active .summary .elementor-element-31374 {
    display: none !important;
}

/* Disable Button Background Color Change on Hover */
:is(.btn, .button, button, [type=submit], [type=button]) {
    --btn-bgcolor-hover: none !important;
}