/* ========================================
   CUSTOM PRODUCT BOXES - MAIN STYLES
   ======================================== */

.cpb-text-center {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

.justify-space-between {
    justify-content: space-between;
}

.cpb-d-flex {
    display: flex;
}

.cpb-align-center {
    align-items: center;
}

.cpb-float-left {
    float: left;
}

.cpb-float-right {
    float: right;
}

.cpb-quantity-val {
    width: 50%;
    justify-content: flex-end;
}

.cpb-box-total-val {
    width: 50%;
    justify-content: flex-end;
}

.cpb-box-charges-val {
    width: 50%;
    justify-content: flex-end;
}

.cpb-grand-total-val {
    width: 50%;
    justify-content: flex-end;
}

.cpb-quantity-label {
    width: 50%;
}

.cpb-box-total-label {
    width: 50%;
}

.cpb-box-charges-label {
    width: 50%;
}

.cpb-grand-total-label {
    width: 50%;
}

.cpb-signup-price-label {
    width: 50%;
}

.cpb-signup-price-val {
    width: 50%;
    justify-content: flex-end;
}

.cpb-box-quantity {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 10px;
    line-height: 1;
}

.cpb-box-total {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 10px;
    line-height: 1;
}

.cpb-signup-fee {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 10px;
    line-height: 1;
}

.cpb-box-charges {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 10px;
    line-height: 1;
}

.cpb-grand-total {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 10px;
    line-height: 1;
    border-top: 2px solid #ddd;
    margin-top: 20px;
    padding-top: 20px;
}

.cpb-product-box-wrap-container {
    width: 48%;
    float: right;
    position: relative;
}

.cpb-product-box-wrap {
    display: flex;
    flex-wrap: wrap;
    overflow: auto;
    position: relative;
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 520px;
    float: left;
    clear: left;
    box-sizing: border-box;
    padding: 30px 20px;
    background-color: #d1ddde;
    scrollbar-color: #d1ddde #d1ddde;
    scrollbar-width: none;
    align-content: flex-start;
}

.cpb-product-box-wrap::-webkit-scrollbar {
    display: none;
}

.cpb-product-box-wrap:hover .cpb-accessibility {
    display: flex;
}

.cpb-empty-box-inner {
    /* min-height: 230px;
    margin: 10px; */
    box-shadow: 0px 1px 2px rgba(0,0,0,0.16);
    display: inline-block;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.cpb-empty-box-inner .cpb-product-inner {
    margin-right: 0;
    margin-bottom: 0;
}

.cpb-empty-box-inner.filled {
    min-height: initial;
}

.cpb-image {
    width: 160px;
    background-color: #f9f9f9;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}

.cpb-title {
    background-color: #f9f9f9;
    border-top: none;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}

.cpb-products-wrap-container {
    width: 48%;
    float: left;
    margin-top: 30px;
    position: relative;
}

.cpb-products-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 520px;
    overflow: auto;
    float: right;
    box-sizing: border-box;
    padding: 30px 20px;
    background-color: #d1ddde;
    scrollbar-color: #d1ddde #d1ddde;
    scrollbar-width: none;
    align-content: flex-start;
}

.cpb-products-wrap::-webkit-scrollbar {
    display: none;
}

.cpb-empty-box .cpb-empty-box-inner .cpb-product-inner {
    margin: 0 !important;
}

.cpb-product-inner {
    margin: 15px;
    box-shadow: 0px 1px 2px rgba(0,0,0,0.16);
    display: inline-block;
    width: 160px;
    transition: all 0.3s ease-in-out;
}

.cpb-product-inner:hover .cpb-img-overlay {
    opacity: 1;
}

.cpb-empty-box-inner.filled {
    display: flex;
    box-shadow: none;
    background-color: #ffffff;
}

.cpb-product-image {
    position: relative;
    background-color: #ffffff;
}

.cpb-product-image img {
    width: 160px;
    display: block;
}

.cpb-product, .cpb-empty-box {
    display: flex;
    align-items: flex-start;
    transition: all 0.3s linear;
    opacity: 1;
}

.cpb-stock-status p {
    margin-bottom: 5px !important;
}

.cpb-product-info {
    box-sizing: border-box;
    padding: 10px;
    font-size: 14px;
    position: relative;
    background-color: #ffffff;
    line-height: 15px;
    transition: all 0.3s ease-in-out;
}

.cpb-product-info:hover {
    padding-top: 45px;
}

.cpb-product-info:hover .cpb-product-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: transparent;
    display: flex;
    justify-content: center;
    white-space: initial;
}

.cpb-product-info:hover .cpb-product-title span {
    padding: 10px;
    padding-bottom: 0;
    z-index: 9;
    background-color: #ffffff;
}

.cpb-product-title {
    width: 100%;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 30px;
}

.cpb-product-price {
    font-weight: 600;
}

.cpb-img-overlay {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLXBsdXMtY2lyY2xlIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCI+PC9jaXJjbGU+PGxpbmUgeDE9IjEyIiB5MT0iOCIgeDI9IjEyIiB5Mj0iMTYiPjwvbGluZT48bGluZSB4MT0iOCIgeTE9IjEyIiB4Mj0iMTYiIHkyPSIxMiI+PC9saW5lPjwvc3ZnPg==);
    background-size: 55%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s linear;
    opacity: 0;
}

.cpb-img-overlay span {
    font-size: 60px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cpb-no-stock .cpb-img-overlay, .out-of-stock .cpb-img-overlay {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLXNsYXNoIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCI+PC9jaXJjbGU+PGxpbmUgeDE9IjE5LjA3IiB5MT0iNC45MyIgeDI9IjQuOTMiIHkyPSIxOS4wNyI+PC9saW5lPjwvc3ZnPg==);
}

.filled .wdm-prefill-mandatory .cpb-img-overlay {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLXNsYXNoIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCI+PC9jaXJjbGU+PGxpbmUgeDE9IjE5LjA3IiB5MT0iNC45MyIgeDI9IjQuOTMiIHkyPSIxOS4wNyI+PC9saW5lPjwvc3ZnPg==);
}

.filled .cpb-img-overlay {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLW1pbnVzLWNpcmNsZSI+PGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iMTAiPjwvY2lyY2xlPjxsaW5lIHgxPSI4IiB5MT0iMTIiIHgyPSIxNiIgeTI9IjEyIj48L2xpbmU+PC9zdmc+Cg==);
}

.filled .cpb-image {
    display: none;
}

.filled .cpb-title {
    display: none;
}

.filled .cpb-count {
    display: none !important;
}

.cpb-content-wrap {
    display: inline-block;
    padding: 20px;
    padding-top: 50px;
    width: 100%;
}

.cpb-content {
    width: 100%;
}

.show-hide-btn {
    display: inline-block;
    float: right;
    cursor: pointer;
}

.cpb-filled-progress {
    display: inline-block;
    float: left;
    position: relative;
    width: 150px;
}

.cpb-box-count {
    position: absolute;
    top: -43px;
    left: calc(0% - 25px);
    padding: 0 5px;
    background-color: #ededed;
    transition: all 0.5s ease-in-out;
    min-width: 47px;
    white-space: nowrap;
}

.cpb-box-count:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #ededed;
    border-bottom: 0;
    margin-left: -8px;
    margin-bottom: -8px;
}

.cpb-progress-bar {
    width: 100%;
    height: 10px;
    border: 1px solid #ddd;
    background-color: #f0f0f0;
    position: relative;
    border-radius: 20px;
}

.cpb-filled-part {
    background-color: #D9CF75;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: all 0.5s ease-in-out;
    width: 0%;
    border-radius: 20px;
}

.cpb-hide {
    cursor: pointer;
    display: none;
}

.cpb-show {
    cursor: pointer;
}

.cpb-accessibility {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    position: absolute;
    right: 0;
    display: none;
    top: 500%;
    z-index: 9;
}

.cpb-accessibility .cpb-compress {
    display: none;
}

.cpb-accessibility img {
    width: 58%;
    margin: 0 auto;
}

.cpb-accessibility .cpb-refresh img {
    width: 60%;
}

.cpb-accessibility span {
    width: 40px;
    cursor: pointer;
    padding: 5px 0;
}

.cpb-accessibility span .fa {
    width: 100%;
    line-height: 30px;
}

.cpb-expanded .cpb-expand {
    display: none;
}

.cpb-expanded .cpb-compress {
    display: block;
}

.cpb-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: green;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}

.cpb-count:empty {
    display: none;
}

.progress-wrap {
    float: left;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.cpb-refresh {
    border-right: 1px solid #ddd;
}

.bundle-product--grand-total {
    border-top: 2px solid #B2B2B2;
}

.cpb-gift-message-wrap {
    clear: both;
    width: 48%;
    margin-top: 50px;
    float: left;
    text-align: left;
    padding: 20px;
    background-color: #f4f4f4;
}

.box-full-msg {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffffd6;
    z-index: 9;
    border: 1px solid #ddd;
    transition: all 0.5s ease-in-out;
    transform: scale(0);
}

.box-full-msg span {
    font-size: 40px;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background-image: linear-gradient(180deg, rgba(255,255,255,0.1), #fff 75%, #fff);
    display: none;
    justify-content: center;
    align-items: center;
}

.scroll-indicator img {
    animation: scrollAnimate 2s infinite;
}

.cpb-cart-wrap {
    width: 48%;
    float: right;
    margin-top: 50px;
    padding: 20px;
    background-color: #f4f4f4;
}

.cpb-notification {
    position: fixed;
    right: 0;
    top: 200px;
    padding: 8px 15px;
    width: 342px;
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.16);
    font-weight: 600;
    border-radius: 5px;
}

.cpb-dynamic-price {
    position: absolute;
    left: -89px;
    top: 43%;
    z-index: 999;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: green;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.16);
}

.cpb-calculated-price-wrap {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    margin-top: -24px;
    margin-left: 20px;
}

.cpb-calculated-price-wrap .cpb-calculated-label {
    color: #999999;
}

.cpb-calculated-price-wrap .cpb-calculated-price {
    font-weight: 700;
    color: #ee9823;
    font-size: 22px;
}

.scroll-indicator span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    margin-left: -12px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb07 2s infinite;
    animation: sdb07 2s infinite;
    opacity: 0;
    box-sizing: border-box;
}

.cpb_notice_display {
    padding: 1%;
    margin-bottom: 3%;
    background-color: #0f834d;
    display: block;
}

.cpb_notice_display a {
    font-weight: bold;
}

.cpb_notice_display p {
    padding: 5px 43px;
    margin: 0;
}

.cpb_notice_display b {
    vertical-align: -webkit-baseline-middle;
    vertical-align: initial;
    color: #333;
}

.cpb_notice_display a.cpb_added_to_cart {
    display: block;
    padding-right: 10px;
    margin-left: 50%;
    float: right;
}

.storefront-primary-navigation {
    overflow: hidden;
}

.scroll-indicator span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.scroll-indicator span:nth-of-type(2) {
    top: 16px;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
}

.scroll-indicator span:nth-of-type(3) {
    top: 32px;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

@-webkit-keyframes sdb07 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes sdb07 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* ========================================
   ENHANCED HOVER EFFECTS FOR ALL LAYOUTS
   ======================================== */

/* Smooth animations for box transitions */
.cpb-empty-box,
.wcpb-gift-box-item {
    transition: all 0.3s ease-in-out;
}

.cpb-empty-box.newly-added,
.wcpb-gift-box-item.newly-added {
    animation: slideInFromTop 0.3s ease-out;
}

.cpb-empty-box.removing,
.wcpb-gift-box-item.removing {
    animation: slideOutToBottom 0.3s ease-in;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutToBottom {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* ========================================
   UNIVERSAL HOVER EFFECTS FOR EMPTY BOXES
   ======================================== */

/* Empty box hover effects - works for all layouts */
.cpb-empty-box:hover,
.wcpb-gift-box-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========================================
   FOCUS STYLE OVERRIDES
   ======================================== */
/* 
   These styles override the theme's purple focus color (#7f54b3) 
   with better gray (#6b7280) and white colors for improved 
   accessibility and visual consistency within the CPB plugin.
   
   The !important declaration ensures these styles take precedence
   over the theme's global focus styles.
*/

.cpb-empty-box:hover .cpb-empty-box-inner,
.wcpb-gift-box-item:hover .cpb-empty-box-inner {
    border-color: #007cba;
    background-color: #f8f9ff;
}

.cpb-empty-box:hover .cpb-image,
.wcpb-gift-box-item:hover .cpb-image {
    background-color: #e3f2fd;
    border: 1px solid #bbdefb;
}

.cpb-empty-box:hover .cpb-title,
.wcpb-gift-box-item:hover .cpb-title {
    background-color: #e3f2fd;
    border: 1px solid #bbdefb;
}

/* ========================================
   ADDON PRODUCT BOX HOVER EFFECTS
   (ONLY FOR CARD LAYOUT)
   ======================================== */

/* Addon product hover effects - only for card layout */
.cpb-products-wrap .cpb-product-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cpb-products-wrap .cpb-product-inner:hover .cpb-product-image {
    border: 1px solid #007cba;
}

.cpb-products-wrap .cpb-product-inner:hover .cpb-product-info {
    background-color: #f8f9ff;
    border: 1px solid #bbdefb;
}

/* ========================================
   RESPONSIVE HOVER EFFECTS
   ======================================== */

@media screen and (max-width: 768px) {
    .cpb-content-wrap {
        width: 100%;
    }
    
    .cpb-product-box-wrap-container, .cpb-gift-message-wrap, .cpb-cart-wrap {
        width: 100%;
    }
    
    .cpb-products-wrap-container {
        width: 100%;
    }
    
    .cpb-product-box-wrap {
        flex-wrap: nowrap;
        overflow: auto;
        justify-content: flex-start;
        margin-bottom: 15px;
    }
    
    .cpb-products-wrap {
        flex-wrap: nowrap;
        overflow: auto;
        justify-content: flex-start;
    }
    
    .cpb-expand {
        display: none;
    }
    
    .progress-wrap {
        width: 100%;
    }
    
    .cpb-vertical-layout .cpb-product-box-wrap {
        height: auto !important;
    }
    
    .cpb-vertical-layout .cpb-products-wrap {
        height: auto !important;
    }
    
    .scroll-indicator {
        width: 41px;
        height: 100%;
        right: 0;
        left: auto;
    }
    
    .scroll-indicator img {
        transform: rotateZ(270deg);
        animation: scrollAnimateMobile 2s infinite;
        position: relative;
    }
    
    @keyframes scrollAnimateMobile {
        0%, 40% {
            left: 0px;
        }
        20% {
            left: 10px;
        }
    }
    
    .cpb-product-inner, .cpb-empty-box-inner {
        margin: 10px !important;
    }
    
    /* Mobile hover effects - reduce intensity on touch devices */
    .cpb-empty-box:hover,
    .wcpb-gift-box-item:hover,
    .cpb-products-wrap .cpb-product-inner:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Reduce transition duration on mobile */
    .cpb-empty-box,
    .wcpb-gift-box-item,
    .cpb-product-inner {
        transition: all 0.2s ease-in-out;
    }
}

/* ========================================
   FOCUS STYLE OVERRIDES
   ======================================== */

/* Override theme's purple focus color with better colors */
.cpb-product-box-wrap button:focus,
.cpb-product-box-wrap input:focus,
.cpb-product-box-wrap textarea:focus,
.cpb-product-box-wrap a:focus,
.wcpb-gift-box-items button:focus,
.wcpb-gift-box-items input:focus,
.wcpb-gift-box-items textarea:focus,
.wcpb-gift-box-items a:focus,
.cpb-products-wrap button:focus,
.cpb-products-wrap input:focus,
.cpb-products-wrap textarea:focus,
.cpb-products-wrap a:focus {
    outline: 2px solid #6b7280 !important; /* Gray color */
    outline-offset: 2px;
}

/* Alternative: White focus with gray border */
.cpb-product-box-wrap button:focus,
.cpb-product-box-wrap input:focus,
.cpb-product-box-wrap textarea:focus,
.cpb-product-box-wrap a:focus,
.wcpb-gift-box-items button:focus,
.wcpb-gift-box-items input:focus,
.wcpb-gift-box-items textarea:focus,
.wcpb-gift-box-items a:focus,
.cpb-products-wrap button:focus,
.cpb-products-wrap input:focus,
.cpb-products-wrap textarea:focus,
.cpb-products-wrap a:focus {
    outline: 2px solid #ffffff !important; /* White color */
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #6b7280; /* Gray border shadow */
}

/* Additional focus overrides for CPB specific elements */
.wcpb-box-quantity-controls button:focus,
.wcpb-box-minus:focus,
.wcpb-box-plus:focus,
.wcpb-box-count:focus {
    outline: 2px solid #6b7280 !important; /* Gray color */
    outline-offset: 2px;
}

/* Focus styles for dynamic box controls */
.wcpb-delete:focus,
.cpb-icon-delete:focus {
    outline: 2px solid #6b7280 !important; /* Gray color */
    outline-offset: 2px;
}

/* Focus styles for expand/close buttons */
.wcpb-expand:focus,
.wcpb-close-box:focus {
    outline: 2px solid #6b7280 !important; /* Gray color */
    outline-offset: 2px;
}

/* ========================================
   EMPTY BOX SPACING FIX
   ======================================== */

/* Override any customizer inline styles that might set margin to 1px */
.cpb-empty-box-inner[style*="margin: 1px"] {
    margin: 10px !important;
}

.cpb-empty-box-inner[style*="margin:1px"] {
    margin: 10px !important;
}

/* Ensure consistent spacing for all empty boxes
.cpb-product-box-wrap .cpb-empty-box .cpb-empty-box-inner {
    margin: 10px !important; /* Override any inline styles for consistent spacing */
/* } */ 
