body .grow-cart-shown{
    overflow: hidden;
}

.gm-new-sidecart .widget_shopping_cart_content {
    display: none !important;
}
.gm-new-sidecart .elementor-menu-cart__close-button{
    display: none !important;
}


/* Main Cart Panel */
.gm-new-sidecart .elementor-menu-cart__main{
    width: 480px !important;
    padding: 0px 20px !important;
    overflow-y: auto;
}
.gm-new-sidecart .grow-cart-main-upper{
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
}

.grow-cart-main.grow-cart-open {
    right: 0;
}

.grow-cart-main-upper {
    display: none;
}

/* Header */
.grow-cart-main .grow-cart-header {
    background-color: #fff;
    border-bottom:0;
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: #000;
}
.grow-cart-header{
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
}
 .grow-cart-header h2 {
    margin: 0;
    font-weight: bold;
    color: #000;
    font-size: 28px;
}
.grow-cart-header-text span{
   font-size: 18px;
   font-weight: 600;
}
.grow-cart-titel{
    gap: 5px;
}
.grow-cart-header-icon{
    padding-top: 5px;
    display:flex;
    gap: 5px;
}
.grow-cart-header-icon svg{
    width: 20px;
    height: 20px;
    background-color: #4B5F24;
    fill: #fff;
    border-radius: 12px;
    margin-top: 3px;

}

.grow-close {
    font-size:30px;
    cursor: pointer;
    color: #000;
    transition: color 0.2s;
}
.grow-main-cart-close{
    text-align: right;
}
#elementor-menu-cart__close-button {
    display: none;
}

#elementor-menu-cart__close-button.grow-cart-open {
    display: block;
}

/* shipping line */

.grow-shipping-progress-wrap {
    padding: 12px 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e2e2e2;
}

.grow-shipping-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: center;
}

.grow-shipping-text.free {
    color: #4B5F24;
}

.grow-shipping-text.remaining {
    color: #CC4C05 !important;
}
.grow-shipping-text.remaining bdi {
    color: #CC4C05 !important;
}

.grow-shipping-progress-bar {
    position: relative;
    height: 8px;
    background: #e0e0e0;
    border-radius: 20px;
}

.grow-shipping-progress-fill {
    height: 100%;
    transition: width 3s ease-in-out;
    border-radius: 20px;
    position: relative;
}


.shipping-car {
    position: absolute;
    right: 0px;
    top: -10px;
    transform: translateX(50%);
    transition: transform 1s ease-in-out;
}



/* Footer */
.grow-cart-footer {
    background-color: #ffffff;
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;

}
.grow-cart-upper-bottom{
    box-shadow: 0 -4px 6px -4px #00000014;
}

.grow-main-footer{
    position: sticky;
    bottom: 0;
    background: #fff;
}


.grow-cart-footer .grow-cart-button {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s;
    background-color: #CC4C05;
    color: #fff;
}

.grow-cart-footer .grow-cart-button:hover {
    opacity: 0.9;
}

.grow-cart-button svg{
    width: 13px;
    fill: #fff;
    margin-left:5px;
}

.grow-cart-buttons-footer{
    display: flex;
    justify-content: space-between;
    text-decoration: underline;
    color: #4B5F24 !important;
    padding: 10px 5px;
}

.grow-cart-main{
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* Scrollbar Styling */
.grow-cart-items::-webkit-scrollbar {
    width: 6px;
}
.grow-cart-items::-webkit-scrollbar-thumb {
    background-color: #4a4a68;
    border-radius: 4px;
}


/* Container for each cart product */
.grow-cart-product {
    display: flex;
    align-items: start;
    padding: 12px;
    border-bottom: 1px solid #e2e2e2;
    gap: 20px;
}
.grow-cart-product:last-child {
    border-bottom: none;
}

/* Product image */
.grow-cart-thumb img {
    width: 80px;
    object-fit: cover;
    border-radius: 6px !important;
    border: 1px solid #ccc !important;
}


/* Product info area */
.grow-cart-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Product name/title */
.grow-cart-title {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}
.grow-cart-price{
    color: #000;
}
.grow-cart-product span.subscription-price{
    display: flex;
    flex-direction: column;
}

/* Quantity and price below the name */
.grow-cart-qty {
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.qty-input {
    width: 70px !important;
    text-align: center;
    background: #fff !important;
    border: 1px solid #ccc !important;
    padding: 7px !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
}
.grow-cart-qty .qty-minus,
.grow-cart-qty .qty-minus:hover,
.grow-cart-qty .qty-minus:focus {
    border-radius: 3px 0px 0px 3px;
}

.grow-cart-qty .qty-plus,
.grow-cart-qty .qty-plus:hover,
.grow-cart-qty .qty-plus:focus {
    border-radius: 0px 3px 3px 0px;
}

.qty-minus, .qty-plus {
    padding: 4px 10px !important;
    font-size: 20px !important;
    border: 1px solid #ccc !important;
    background: #ffffff !important;
    cursor: pointer !important;
    color: #000 !important;
}
.qty-minus:hover, .qty-minus:focus{
    background-color: #4B5F24 !important;
    color: #fff !important;
    text-decoration: none;
}
.qty-plus:hover, .qty-plus:focus{
    background-color: #4B5F24 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.grow-cart-qty, input[type="number"]::-webkit-outer-spin-button,
.grow-cart-qty, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}


.grow-cart-qty, input[type="number"] {
    -moz-appearance: textfield;
}


.grow-cart-price-hide{
    text-align: right;
}

/* Subtotal on the right side */
.grow-cart-subtotal {
    color: #111;
    white-space: nowrap;
}
.grow-cart-product_subtotal bdi{
    font-size: 16px !important;
}

/* Remove cart product */
.grow_total_label,.grow_total_amountt{
    color: #000;
}

.grow-cart-product-remove button svg{
    width: 12px;
}
.grow-cart-product-remove button{
    padding: 7px 12px !important;
    margin-left: 6px;
    border: 0 !important;
    background: none !important;
}
.grow-cart-product-remove button:hover{
    color: #fff;
    background-color: #fff;
}
.grow-cart-product-remove button:focus{
    background-color: #fff; 
}


/* Subtotal row styling */
.grow-cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5px 0px;
    margin: 10px 0px 0px;
    font-weight: bold;
}

/* Subtotal label */
.grow-cart-subtotal-label span {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

/* Subtotal amount */
.grow-cart-subtotal-amount span {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}
.grow-cart-payment-sezzle p{
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 14px;
}
.grow-cart-payment-sezzle p img{
    width: 80px;
}


/* Optional hover effect */
.cart-open .open-button {
    display: none;
}
.grow-cart-subtotal .grow-cart-regular-price bdi{
    text-decoration: line-through;
    color: #8b9098 !important;
    font-size: 13px !important;
}

.grow-cart-upper-top{
    flex-grow: 1;
}



/* Responsive css */

@media only screen and (max-width: 425px) {

.grow-cart-thumb img {
    width: 60px !important;
    border-radius: 6px !important;

}

.elementor-menu-cart__main{
    padding: 0px 10px !important;
}
.grow-cart-product-remove button{
    padding: 7px 7px;
}
.qty-input{
    width: 48px !important;
    font-size: 11px;
}
.grow-cart-subtotal{
    font-size: 13px;
}
.qty-minus, .qty-plus{
    font-size: 15px !important;
}
.grow-cart-main .grow-cart-header{
    align-items: start;
}
.grow-cart-title{
    font-size: 13px;
}
.grow-cart-items::-webkit-scrollbar {
    width: 3px;
}
.grow-cart-header-icon svg{
    width: 14px;
    height: 14px;
}
.grow-cart-header-text span{
    font-size: 14px;
}
.grow-cart-titel h2{
    font-size: 28px;
}

}


@keyframes spin {
    to { transform: rotate(360deg); }
}

.qty-loader {
    display: none;
    text-align: center;
}
.loader-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.grow-cart-empty{
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.grow-cart-empty a{
    padding: 15px;
    background: #4B5F24;
    color: #ffffff !important;
}
.grow-cart-empty a:hover{
    color: #ffffff;
}
.grow-cart-empty p{
font-weight: bold;
}


