.cart-container {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999;
}

/* .show-cart {
    position: sticky;
    top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
} */

.item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-display {
    min-width: 30px;
    text-align: center;
}

.show-cart {
    position: sticky;
    top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}


.quantity-decrease,
.quantity-increase {
    padding: 2px 8px;
    border: 0px;
    outline: 0 !important;
    border-radius: 50%;
    cursor: pointer;
}

.quantity-display {
    min-width: 30px;
    text-align: center;
}

.cart-totals {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
}

/*cart css start*/

/* Container and Title */
.cart-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.cart-title {
    text-align: center;
    margin-bottom: 20px;
}

/* Table */
/* ===== Drawer Container ===== */
/* ===== Drawer Container ===== */

/* ===== Header ===== */
.cart-header {
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    padding: 20px 15px;
    border-bottom: 1px solid #ecedef;
}

/* ===== Item List ===== */
.cart-items {
    padding: 0 20px;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0;
}

/* Image */
.cart-item-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
}

/* Text Content */
.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-name {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 4px;
}

.cart-ship-estimate {
    color: #f97316; /* Tailwind-style orange */
    font-weight: bold;
    font-size: 13px;
    line-height: 14px;
    margin-bottom: 2px;
}

.cart-item-subtext {
    color: #888;
    font-size: 12px;
    line-height: 14px;
}

/* Pricing & Quantity */
.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    min-width: 90px;
}

.cart-item-price {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-qty-btn {
    background: none;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
    width: 17.38px;
    height: 17.38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-value {
    font-size: 18px;
    min-width: 20px;
    text-align: center;
    line-height: 20px;
}

.cart-item-total {
    font-size: 13px;
    color: #666;
}

/* ===== Summary ===== */

.cart-item-details-row {
    display: flex;
    justify-content: end;
    margin: 0;
}

.cart-item-details-grand {
    font-size: 18px;
    margin-top: 3px;
}

/* ===== Coupon Link ===== */
.cart-coupon {
    font-size: 13px;
    margin-top: 6px;
}

.cart-coupon a {
    color: #007aff;
    text-decoration: underline;
    cursor: pointer;
}

.cart-coupon a:hover {
    color: #0051a8;
}

/* ===== Responsive ===== */
.cart-item-details-table {
    border-collapse: collapse;
    font-size: 13px;
}

.cart-item-details-table tr, .cart-table td {
    border-bottom: 1px solid #ecedef;
}
.cart-item-details-label {
    text-align: left;
    padding: 4px 0;
}
.cart-item-details-grand td {
    font-weight: bold;
}

.separator-icon {
    color: #cbd3da;
    margin: 0 6px;
}

.cart-body .close-cart {
    position: absolute;
    right: 0;
    cursor: pointer;
    padding: 5px 10px;
}
/*cart css end*/

