.cart-box {
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.cart-row {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.cart-product {
    flex: 1;
    gap: 15px;
    display: flex;
    align-items: flex-start;
}

.product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.product-details {
    font-size: 14px;
}

.product-actions .remove-btn {
    color: #dc3545;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

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

.quantity-input {
    width: 40px;
    height: 32px;
    padding: 0 4px;
}

.subtotal {
    min-width: 100px;
    text-align: right;
}

.btn-pink {
    background-color: #ff69b4;
    color: white;
    border: none;
}

.btn-pink:hover {
    background-color: #ff4fa1;
    color: white;
}
