/* Custom CSS for Cart Page */
.variation-details {
    margin-top: 8px;
    font-size: 13px;
}

.variation-item {
    display: inline-block;
    background-color: #f5f5f5;
    border-radius: 3px;
    padding: 2px 8px;
    margin-right: 5px;
    margin-bottom: 5px;
    color: #555;
}

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

.discounted-price {
    color: #e3503b;
    font-weight: 700;
}

.original-price {
    color: #777;
    text-decoration: line-through;
    margin-left: 5px;
    font-size: 0.85em;
}

.discount-badge {
    display: block;
    background-color: #e3503b;
    color: white;
    font-size: 0.75em;
    padding: 2px 6px;
    border-radius: 3px;
    margin-top: 5px;
    width: fit-content;
}

.subtotal-area {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Fix for product title truncation in cart */
.product-title-area .product-title {
    font-size: 16px;
    font-weight: 500;
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
    display: block;
    width: 100%;
    line-height: 1.4;
}

/* Stock indicators */
.stock-info {
    margin-top: 5px;
    font-size: 12px;
}

.stock-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
}

.in-stock {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.low-stock {
    background-color: #fff3e0;
    color: #ef6c00;
}

.out-stock {
    background-color: #ffebee;
    color: #c62828;
}

/* Button states */
.button.plus.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Checkout page modifications for Bengali text */
.category-item-inner .category-title {
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
}
