/* Side Cart Styles */
.woo-side-cart-container {
    position: relative;
    display: inline-block;
}

.woo-side-cart-icon {
 color: #fff;
    width: auto;
    height: auto;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-direction: row;
    background: #1b5e20;
    column-gap: 5px;
    padding: 10px 20px;
}
span.cart-title {
    font-size: 14px;    line-height: 0;
}
.woo-cart-count {
     
      top: 8px;
    right: 10px;
    background: #ee6c4d;
    color: #0b0b0b;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 20px;
}

.woo-side-cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
   transition: all .5s ease;
     transform: translateX(120%);
}

.woo-side-cart-panel.open {
      transform: translateX(0);
}

.woo-side-cart-header {
    padding: 14px 10px;
    background: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
}
.woo-side-cart-header p {
    font-size: 15px;
    font-weight: bold;
    /* border-bottom: 1px solid #e0e0e0; */
    padding-bottom: 0;
    color: #30393b;
    font-weight: 500;
}
.cart-head {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
p.cart-items-box {
    position: relative;
    font-size: 13px;
    color: #fff;
    background: #ee6c4d;
    border-radius: 5px;
    color: #fff;
    width: fit-content;
    padding: 1px 5px;    font-weight: 400;
}

p.cart-items-box  span.woo-cart-count {
    position: static;
    display: inline-block;
    text-align: center;
    font-size: 12px;
       background: transparent;
    width: auto;
    margin-right: 4px;color:#fff;
}

.woo-close-cart {
    background: none;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 10px #0000001a;
    border-radius: 100px;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 21px;    transition: 0.2s linear;
}.woo-close-cart:hover {
    transform: rotate(90deg);
}
.woo-side-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 11px;    height: 70%;
    overflow-y: auto;
}

.woo-cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
}

.woo-cart-item {
     display: flex;
    margin-bottom: 9px;
    padding-bottom: 9px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.woo-cart-item-image {
width: 50px;
    height: 50px;
    margin-right: 9px;
}

.woo-cart-item-image img {
      max-width: 100%;
    height: auto;
    
}

.woo-cart-item-details {
    flex: 1;
}

.woo-cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 13px;
    margin-top: 5px;
    color: #30393b;
    text-transform: none;
}

.woo-cart-item-title a {
    color: #000;
    text-decoration: none;
}

.woo-cart-item-price {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 0;
}
.woo-cart-item span.woocommerce-Price-amount.amount, .woo-mini-cart-item span.woocommerce-Price-currencySymbol { font-size: 14px;
   
    font-weight: 600;}
.woo-cart-item-quantity {
    display: flex;
    align-items: center;
}

.woo-quantity-minus,
.woo-quantity-plus {
    width: 25px;
    height: 25px;
    background: #f0f0f0;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.woo-quantity-input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 3px;
}

.woo-cart-item-remove {
    align-self: flex-start;
}

.woo-remove-item {
 
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    background: #e6e6e6;
    padding: 0;
    height: po;
    position: absolute;
    right: 0;
    color: #0b0b0b;
    line-height: normal;
    width: 20px;
    height: 20px;
    line-height: normal;    bottom: 10px;
}

.woo-side-cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.woo-cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: bold;
    align-items: center;
}

.woo-view-cart-btn,
.woo-checkout-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 400;
}

 
.woo-view-cart-btn {
    background: #d0d5d9;border:solid 2px #d0d5d9;
  color: #000;
}
.woo-view-cart-btn:hover { background:transparent; color:#0b0b0b;border-color:#0b0b0b;}
.woo-checkout-btn {
  background: #0b0b0b;border:solid 2px #0b0b0b;
  color: #fff;
}
.woo-checkout-btn:hover { background:transparent; color:#0b0b0b;border-color:#0b0b0b;}
.woo-side-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
        transition: all .3s linear;
}

.woo-side-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive styles */
@media (max-width: 768px) {
    .woo-side-cart-panel {
        width: 320px;
    }
    
    .woo-side-cart-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .woo-side-cart-panel {
        width: 100%;
    }
}